chore(deps-dev): bump langgraph from 0.2.76 to 0.6.5 #1296
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps langgraph from 0.2.76 to 0.6.5.
Release notes
Sourced from langgraph's releases.
... (truncated)
Commits
23b7104release(langgraph): 0.6.5 (#5901)a15f542fix: Persist resume_map values (#5898)d43eaf1chore(docs): add remaining js translations (#5825)16b363ffeat(langgraph): implement redis node level cache (#5834)68a7513release: langgraph + prebuilt 0.6.4 (#5854)5c0c0fbfix: mypy issue with conditional edges (#5851)4571b70fix(langgraph): support emitting messages from subgraphs when messages mode e...e365b2bfix(prebuilt): raise on additional deprecated kwargs (#5848)b550450fix: add resiliency for task cancellation (#5846)c6ae8d2perf: Save updated_channels to checkpoint (#5828)You can trigger a rebase of this PR by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Important
Update
langgraphdependency version inpyproject.tomlto>=0.2.62,<0.7.0.langgraphversion inpyproject.tomlfrom^0.2.62to>=0.2.62,<0.7.0to include newer versions with potential bug fixes and features.This description was created by
for 4d2ccd1. You can customize this summary. It will automatically update as commits are pushed.
Disclaimer: Experimental PR review
Greptile Summary
This PR updates the
langgraphdevelopment dependency from version^0.2.62to>=0.2.62,<0.7.0in thepyproject.tomlfile, effectively upgrading from version 0.2.76 to 0.6.5. This is a significant version jump that represents a major update to the langgraph library.The change modifies the version constraint format from a caret operator (
^) to an explicit range specification. The caret operator^0.2.62would only allow updates within the 0.2.x series (up to but not including 0.3.0), but langgraph has moved to the 0.6.x series. The new constraint>=0.2.62,<0.7.0accommodates this version jump while preventing automatic updates to potentially breaking 0.7.x versions.Since
langgraphis listed under[tool.poetry.group.dev.dependencies], this change only affects the development and testing environment, not production code. The library is used for graph-based language processing and is part of the LangChain ecosystem. According to the release notes, version 0.6.5 includes new features like Redis node-level caching, durability modes forinvokeandainvoke, various bug fixes, and deprecation ofMessageGraph. The update also includes performance improvements and enhanced error handling.Confidence score: 4/5