chore(deps-dev): bump langgraph from 0.2.76 to 0.6.4 #1294
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.4.
Release notes
Sourced from langgraph's releases.
... (truncated)
Commits
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)0bd7dd2chore(langgraph): deprecateMessageGraph(#5843)82978a8chore(prebuilt): revert tool arg injection refactor (#5842)925150adocs: Update redirects for deployment option renaming (#5823)2920a9dfix(langgraph): Tidy upAgentState(#5801)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 allow newer versions up to 0.6.4.langgraphversion inpyproject.tomlfrom^0.2.62to>=0.2.62,<0.7.0to allow newer versions up to 0.6.4.This description was created by
for 2c80192. You can customize this summary. It will automatically update as commits are pushed.
Disclaimer: Experimental PR review
Greptile Summary
This PR updates the langgraph development dependency from version 0.2.76 to 0.6.4, representing a significant jump across multiple minor versions. The change modifies the version constraint in
pyproject.tomlfrom^0.2.62(caret constraint) to>=0.2.62,<0.7.0(range constraint).The langgraph library is used as a development dependency for testing graph-based language processing functionality within the Langfuse Python client. Based on the release notes, the 0.6.x series includes important improvements such as fixes for mypy type checking issues, enhanced subgraph message handling, performance optimizations for checkpoint operations, and deprecation of the
MessageGraphclass.The constraint format change from caret to range is significant - the caret constraint (
^0.2.62) would have only allowed patch updates within the 0.2.x series, while the new range constraint (>=0.2.62,<0.7.0) permits all minor version updates within the 0.x series up to 0.7.0. This change aligns with Poetry's recommended practices for development dependencies where more permissive versioning is acceptable, and it allows the project to automatically receive future 0.6.x updates while preventing potentially breaking changes from 0.7.x.Confidence score: 4/5