Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 14, 2025

Bumps langgraph from 0.2.76 to 0.6.5.

Release notes

Sourced from langgraph's releases.

0.6.5

Changes since 0.6.4

  • release(langgraph): 0.6.5 (#5901)
  • fix: Persist resume_map values (#5898)
  • feat(langgraph): implement redis node level cache (#5834)

prebuilt==0.6.4

Changes since prebuilt==0.6.3

  • fix(langgraph): support emitting messages from subgraphs when messages mode explicitly requested (#5836)
  • fix(prebuilt): raise on additional deprecated kwargs (#5848)
  • chore(langgraph): deprecate MessageGraph (#5843)
  • chore(prebuilt): revert tool arg injection refactor (#5842)

0.6.4

Changes since 0.6.3

  • release: langgraph + prebuilt 0.6.4 (#5854)
  • fix: mypy issue with conditional edges (#5851)
  • fix(langgraph): support emitting messages from subgraphs when messages mode explicitly requested (#5836)
  • perf(langgraph): Save updated_channels to checkpoint (#5828)
  • chore(langgraph): deprecate MessageGraph (#5843)

prebuilt==0.6.3

Changes since prebuilt==0.6.2

  • fix(langgraph): Tidy up AgentState (#5801)
  • release: langgraph + prebuilt 0.6.3 (#5799)
  • chore(prebuilt): add supported input types for model in create_react_agent (#5748)
  • release(langgraph): 0.6.2 (#5750)

0.6.3

Changes since 0.6.2

  • fix(langgraph): Tidy up AgentState (#5801)
  • release: langgraph + prebuilt 0.6.3 (#5799)
  • fix(langgraph): Add warning for incorrect node signature with mistyped config param (#5798)
  • fix(langgraph): fix up deprecation warnings (#5796)
  • feat(langgraph): add durability mode for invoke and ainvoke (#5771)
  • fix(docs): Add missing imports to make examples runnable (#5477)
  • fix(langgraph): Remove duplicate call to ensure_config (#5768)

prebuilt==0.6.2

Changes since prebuilt==0.6.1

  • release(prebuilt): 0.6.2 (#5749)
  • fix(prebuilt): assign context_schema to config_schema with correct condition (#5746)

0.6.2

... (truncated)

Commits
  • 23b7104 release(langgraph): 0.6.5 (#5901)
  • a15f542 fix: Persist resume_map values (#5898)
  • d43eaf1 chore(docs): add remaining js translations (#5825)
  • 16b363f feat(langgraph): implement redis node level cache (#5834)
  • 68a7513 release: langgraph + prebuilt 0.6.4 (#5854)
  • 5c0c0fb fix: mypy issue with conditional edges (#5851)
  • 4571b70 fix(langgraph): support emitting messages from subgraphs when messages mode e...
  • e365b2b fix(prebuilt): raise on additional deprecated kwargs (#5848)
  • b550450 fix: add resiliency for task cancellation (#5846)
  • c6ae8d2 perf: Save updated_channels to checkpoint (#5828)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Important

Update langgraph dependency version in pyproject.toml to >=0.2.62,<0.7.0.

  • Dependencies:
    • Update langgraph version in pyproject.toml from ^0.2.62 to >=0.2.62,<0.7.0 to include newer versions with potential bug fixes and features.

This description was created by Ellipsis 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 langgraph development dependency from version ^0.2.62 to >=0.2.62,<0.7.0 in the pyproject.toml file, 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.62 would 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.0 accommodates this version jump while preventing automatic updates to potentially breaking 0.7.x versions.

Since langgraph is 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 for invoke and ainvoke, various bug fixes, and deprecation of MessageGraph. The update also includes performance improvements and enhanced error handling.

Confidence score: 4/5

  • This PR is safe to merge with low risk since it only affects development dependencies
  • Score reflects that this is a major version update with significant changes, but limited to dev environment
  • Pay close attention to test results to ensure compatibility with existing development workflows

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Aug 14, 2025
Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1 file reviewed, no comments

Edit Code Review Bot Settings | Greptile

@dependabot dependabot bot force-pushed the dependabot/pip/langgraph-0.6.5 branch from 4d2ccd1 to db9fb67 Compare August 18, 2025 06:09
Bumps [langgraph](https://github.com/langchain-ai/langgraph) from 0.2.76 to 0.6.5.
- [Release notes](https://github.com/langchain-ai/langgraph/releases)
- [Commits](langchain-ai/langgraph@0.2.76...0.6.5)

---
updated-dependencies:
- dependency-name: langgraph
  dependency-version: 0.6.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/langgraph-0.6.5 branch from db9fb67 to a8cbe0c Compare August 19, 2025 05:19
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 20, 2025

Superseded by #1303.

@dependabot dependabot bot closed this Aug 20, 2025
@dependabot dependabot bot deleted the dependabot/pip/langgraph-0.6.5 branch August 20, 2025 07:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant