Skip to content

chore: bump langgraph from 1.2.9 to 1.2.11 - #765

Merged
huang195 merged 1 commit into
mainfrom
dependabot/pip/langgraph-1.2.11
Aug 24, 2026
Merged

chore: bump langgraph from 1.2.9 to 1.2.11#765
huang195 merged 1 commit into
mainfrom
dependabot/pip/langgraph-1.2.11

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 17, 2026

Copy link
Copy Markdown
Contributor

Bumps langgraph from 1.2.9 to 1.2.11.

Release notes

Sourced from langgraph's releases.

langgraph==1.2.11

Changes since 1.2.10

  • release(langgraph): 1.2.11 (#8595)
  • feat(langgraph): expose trace_policy on add_node (#8523)
  • chore(deps): bump the minor-and-patch group across 1 directory with 7 updates (#8533)
  • chore(deps): bump the minor-and-patch group across 1 directory with 5 updates (#8532)
  • release(checkpoint-postgres): 3.1.2 (#8565)
  • release(checkpoint): 4.2.0 (#8563)
  • fix(checkpoint): collect writes at plain-value seed in delta channel history (#8526)
  • chore: enforce PLC0415 in tests for the remaining packages (#8547)
  • test(checkpoint-postgres,checkpoint-sqlite): run the conformance suite (#8537)
  • chore: enable RUF100 and clear unused noqa directives (#8546)
  • chore(deps-dev): bump types-requests from 2.33.0.20260518 to 2.33.0.20260712 in /libs/langgraph (#8502)
  • chore(deps): bump cryptography from 48.0.1 to 50.0.0 in /libs/langgraph (#8528)
  • release(checkpoint-sqlite): 3.1.1 (#8481)
  • release(checkpoint-postgres): 3.1.1 (#8480)

langgraph==1.2.10

Changes since 1.2.9

  • release(langgraph): 1.2.10 (#8462)
  • chore(deps): bump jupyterlab from 4.5.9 to 4.5.10 in /libs/langgraph (#8440)
  • chore(deps): bump setuptools from 80.9.0 to 83.0.0 in /libs/langgraph (#8435)
  • feat(langgraph): type v3 stream_events return and native projections (#8389)
  • revert(langgraph): delete TracePolicy (#8403)
  • feat(langgraph): drop tags from TracePolicy (#8402)
  • feat(langgraph): expose trace_policy on add_node (#8362)
  • chore(deps): bump mistune from 3.2.1 to 3.3.0 in /libs/langgraph (#8317)
  • chore(deps): bump soupsieve from 2.8.1 to 2.8.4 in /libs/langgraph (#8318)
  • chore(cli): allow langgraph-api versions up to 1.0.0 (#8319)
Commits
  • 644815f release(langgraph): 1.2.11 (#8595)
  • 7d6b579 feat(langgraph): expose trace_policy on add_node (#8523)
  • d56666f chore(deps): bump the minor-and-patch group across 1 directory with 7 updates...
  • 6a2822d chore(deps): bump the minor-and-patch group across 1 directory with 5 updates...
  • fde3068 release(checkpoint-postgres): 3.1.2 (#8565)
  • f55e772 release(checkpoint): 4.2.0 (#8563)
  • a90ab44 fix(checkpoint): collect writes at plain-value seed in delta channel history ...
  • ea5f9cc chore: enforce PLC0415 in tests for the remaining packages (#8547)
  • 36a505a test(checkpoint-postgres,checkpoint-sqlite): run the conformance suite (#8537)
  • d569e18 fix(checkpoint-postgres): find plain-value seeds when walking delta history (...
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Aug 17, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner August 17, 2026 23:14
@dependabot dependabot Bot added the python Pull requests that update python code label Aug 17, 2026

@huang195 huang195 left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

All three open Python bumps edit the same file, authbridge/requirements.txt, so they cannot merge independently — whichever lands first forces the other two to rebase.

Recommended order, because langchain-openai depends on langchain-core:

  1. #769 langchain-core 1.4.9 → 1.5.5
  2. #767 langchain-openai 1.3.5 → 1.5.1
  3. #765 langgraph 1.2.9 → 1.2.11

Merging core after openai risks a resolver conflict. Alternatively bundle all three into one PR and close the originals — one CI run instead of three rebase cycles.

CI green.

Assisted-By: Claude Code

@dependabot dependabot Bot changed the title build(deps): Bump langgraph from 1.2.9 to 1.2.11 chore: bump langgraph from 1.2.9 to 1.2.11 Aug 24, 2026
@dependabot
dependabot Bot force-pushed the dependabot/pip/langgraph-1.2.11 branch 2 times, most recently from 071f23e to 39ba984 Compare August 24, 2026 16:46
huang195 added a commit that referenced this pull request Aug 24, 2026
….txt

authbridge/requirements.txt is currently unsatisfiable on main:

  langchain-core==1.5.5
  langchain-openai==1.6.0   # requires langchain-core>=1.6.0,<2.0.0

  $ pip install --dry-run 'langchain-openai==1.6.0' 'langchain-core==1.5.5'
  ERROR: Cannot install langchain-core==1.5.5 and langchain-openai==1.6.0
         because these package versions have conflicting dependencies.
  ERROR: ResolutionImpossible

How it got here: #769 pinned langchain-core to 1.5.5, and #767 was opened
against langchain-openai 1.5.1 (which needs core >= 1.5.4, satisfied). A
rebase of #767 silently retargeted it to 1.6.0, which needs core >= 1.6.0,
and it merged with an approval that predated the retarget --
dismiss_stale_reviews is false, so the approval carried over.

Nothing caught it: Python Tests completes in 12s and never installs
requirements.txt, and main has no required status checks.

1.6.0 is the current langchain-core release. Verified this resolves, and
verified it is safe to land alone -- tested against langgraph 1.2.9 (main's
pin today) and 1.2.11 (the target of open PR #765); both resolve.

Signed-off-by: Hai Huang <huang195@gmail.com>

Assisted-By: Claude (Anthropic AI) <noreply@anthropic.com>
Bumps [langgraph](https://github.com/langchain-ai/langgraph) from 1.2.9 to 1.2.11.
- [Release notes](https://github.com/langchain-ai/langgraph/releases)
- [Commits](langchain-ai/langgraph@1.2.9...1.2.11)

---
updated-dependencies:
- dependency-name: langgraph
  dependency-version: 1.2.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/pip/langgraph-1.2.11 branch from 39ba984 to d1e2271 Compare August 24, 2026 17:06
@huang195
huang195 merged commit 60b684d into main Aug 24, 2026
19 checks passed
@github-project-automation github-project-automation Bot moved this from New/ToDo to Done in Rossoctl Issue Prioritization Aug 24, 2026
@huang195
huang195 deleted the dependabot/pip/langgraph-1.2.11 branch August 24, 2026 17: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

Status: Done

Development

Successfully merging this pull request may close these issues.

2 participants