From 469b5f55359a7bf08af27877d0fb1474b5b85f6a Mon Sep 17 00:00:00 2001 From: John Kennedy <65985482+jkennedyvz@users.noreply.github.com> Date: Tue, 17 Mar 2026 12:43:22 -0700 Subject: [PATCH] chore(deps): bump langgraph to 1.1.2 in cli example fixtures (#7211) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary - Bumps `langgraph` from stale pinned versions (`1.0.8` / `1.0.0a2`) to `1.1.2` in three CLI example fixture directories - Supersedes dependabot PR #7090 which only got as far as `1.0.10rc1` ## Affected files - `libs/cli/examples/graph_prerelease_reqs/pyproject.toml`: `1.0.8` → `1.1.2` - `libs/cli/examples/graph_prerelease_reqs/deps/additional_deps/pyproject.toml`: `1.0.8` → `1.1.2` - `libs/cli/examples/graph_prerelease_reqs_fail/pyproject.toml`: `1.0.0a2` → `1.1.2` Closes #7090 🤖 Generated with [Claude Code](https://claude.com/claude-code) --------- Co-authored-by: Claude --- .github/workflows/_integration_test.yml | 4 ++-- .../graph_prerelease_reqs/deps/additional_deps/pyproject.toml | 2 +- libs/cli/examples/graph_prerelease_reqs/pyproject.toml | 2 +- libs/cli/examples/graph_prerelease_reqs_fail/pyproject.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/_integration_test.yml b/.github/workflows/_integration_test.yml index 1b3b533c9..6cc921af8 100644 --- a/.github/workflows/_integration_test.yml +++ b/.github/workflows/_integration_test.yml @@ -117,8 +117,8 @@ jobs: timeout 60 python ../../../../.github/scripts/run_langgraph_cli_test.py -t langgraph-test-h echo "Finished starting up langgraph-test-h" LANGGRAPH_VERSION=$(docker run --rm --entrypoint "" langgraph-test-h python -c "import sys; from importlib.metadata import version; v = version('langgraph'); print(v);") - if [ "$LANGGRAPH_VERSION" != "1.0.8" ]; then - echo "LANGGRAPH_VERSION != 1.0.8; $LANGGRAPH_VERSION" + if [ "$LANGGRAPH_VERSION" != "1.1.2" ]; then + echo "LANGGRAPH_VERSION != 1.1.2; $LANGGRAPH_VERSION" exit 1 fi LANGCHAIN_OPENAI_VERSION=$(docker run --rm --entrypoint "" langgraph-test-h python -c "import sys; from importlib.metadata import version; v = version('langchain-openai'); print(v);") diff --git a/libs/cli/examples/graph_prerelease_reqs/deps/additional_deps/pyproject.toml b/libs/cli/examples/graph_prerelease_reqs/deps/additional_deps/pyproject.toml index 4df335816..4c4469712 100644 --- a/libs/cli/examples/graph_prerelease_reqs/deps/additional_deps/pyproject.toml +++ b/libs/cli/examples/graph_prerelease_reqs/deps/additional_deps/pyproject.toml @@ -5,5 +5,5 @@ description = "Test for prerelease stuff" readme = "README.md" requires-python = ">=3.10" dependencies = [ - "langgraph==1.0.8" + "langgraph==1.1.2" ] \ No newline at end of file diff --git a/libs/cli/examples/graph_prerelease_reqs/pyproject.toml b/libs/cli/examples/graph_prerelease_reqs/pyproject.toml index a548185d0..4091de8d2 100644 --- a/libs/cli/examples/graph_prerelease_reqs/pyproject.toml +++ b/libs/cli/examples/graph_prerelease_reqs/pyproject.toml @@ -7,7 +7,7 @@ requires-python = ">=3.10" dependencies = [ "langchain-openai==1.0.0a2", "langchain-anthropic==1.0.0a5", - "langgraph==1.0.8" + "langgraph==1.1.2" ] [tool.uv] diff --git a/libs/cli/examples/graph_prerelease_reqs_fail/pyproject.toml b/libs/cli/examples/graph_prerelease_reqs_fail/pyproject.toml index 27933649b..b4bf08b36 100644 --- a/libs/cli/examples/graph_prerelease_reqs_fail/pyproject.toml +++ b/libs/cli/examples/graph_prerelease_reqs_fail/pyproject.toml @@ -6,6 +6,6 @@ readme = "README.md" requires-python = ">=3.10" dependencies = [ "langchain-openai==1.0.0a2", - "langgraph==1.0.0a2", + "langgraph==1.1.2", "langchain_community>=0.3.0", ] \ No newline at end of file