Skip to content

Bump langgraph from 1.0.8 to 1.1.2#5795

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/pip/langgraph-1.1.2
Open

Bump langgraph from 1.0.8 to 1.1.2#5795
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/pip/langgraph-1.1.2

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 13, 2026

Bumps langgraph from 1.0.8 to 1.1.2.

Release notes

Sourced from langgraph's releases.

langgraph==1.1.2

Changes since 1.1.1

  • release(langgraph): 1.1.2 (#7135)
  • fix: stream part generic order (#7134)
  • feat: add context for remote graph api (#7132)
  • chore: fix typo (#7131)
  • chore(deps): bump tornado from 6.5.4 to 6.5.5 in /libs/langgraph (#7122)

langgraph==1.1.1

Changes since 1.1.0

  • release(langgraph): 1.1.1 (#7120)
  • fix: replay bug, direct to subgraphs (#7115)
  • chore: remove md notes (#7103)

langgraph==1.1.0

Changes since 1.0.10

  • release(langgraph): 1.1 (#7102)
  • fix: replay behavior for parent + subgraphs! (#7038)
  • feat: type safe stream/invoke w/ proper output type coercion (#6961)

Type-Safe Streaming & Invoke

LangGraph 1.1 introduces version="v2" — a new opt-in streaming format that brings full type safety to stream(), astream(), invoke(), and ainvoke().

What's changing

v1 (default, unchanged): stream() yields bare tuples like (stream_mode, data) or just data. invoke() returns a plain dict. Interrupts are mixed into the output dict under "__interrupt__".

v2 (opt-in): stream() yields strongly-typed StreamPart dicts with type, ns, data, and (for values) interrupts fields. invoke() returns a GraphOutput object with .value and .interrupts attributes. When your state schema is a Pydantic model or dataclass, outputs are automatically coerced to the correct type.

invoke() / ainvoke() with version="v2"

from langgraph.types import GraphOutput
result = graph.invoke({"input": "hello"}, version="v2")
result is a GraphOutput, not a dict
assert isinstance(result, GraphOutput)
result.value       # your output — dict, Pydantic model, or dataclass
result.interrupts  # tuple[Interrupt, ...], empty if none occurred

With a non-"values" stream mode, invoke(..., stream_mode="updates", version="v2") returns list[StreamPart] instead of list[tuple].

stream() / astream() with version="v2"

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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 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)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Mar 13, 2026
Bumps [langgraph](https://github.com/langchain-ai/langgraph) from 1.0.8 to 1.1.2.
- [Release notes](https://github.com/langchain-ai/langgraph/releases)
- [Commits](langchain-ai/langgraph@1.0.8...1.1.2)

---
updated-dependencies:
- dependency-name: langgraph
  dependency-version: 1.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/langgraph-1.1.2 branch from bf19be7 to 7ef1c0f Compare March 14, 2026 00:15
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.

0 participants