From 71733797406c2fc55bf0bb36422447909d3ef268 Mon Sep 17 00:00:00 2001 From: William FH <13333726+hinthornw@users.noreply.github.com> Date: Tue, 7 Apr 2026 14:20:56 -0700 Subject: [PATCH] chore: bump langgraph version to 1.1.5 in CI and examples (#7435) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary - Bump `langgraph` version from `1.1.2` to `1.1.5` in the CI integration test workflow version check - Bump `langgraph` version from `1.1.2` to `1.1.5` in the prerelease example `pyproject.toml` files ## Test plan - [ ] CI integration tests pass with the updated version expectation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Will Fu-Hinthorn Co-authored-by: Claude Opus 4.6 (1M context) --- .github/workflows/_integration_test.yml | 4 ++-- .../graph_prerelease_reqs/deps/additional_deps/pyproject.toml | 2 +- libs/cli/examples/graph_prerelease_reqs/pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/_integration_test.yml b/.github/workflows/_integration_test.yml index 131723b29..bb7577f8d 100644 --- a/.github/workflows/_integration_test.yml +++ b/.github/workflows/_integration_test.yml @@ -116,8 +116,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.1.2" ]; then - echo "LANGGRAPH_VERSION != 1.1.2; $LANGGRAPH_VERSION" + if [ "$LANGGRAPH_VERSION" != "1.1.5" ]; then + echo "LANGGRAPH_VERSION != 1.1.5; $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 4c4469712..dedd48bf2 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.1.2" + "langgraph==1.1.5" ] \ 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 4091de8d2..f6ef3a0db 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.1.2" + "langgraph==1.1.5" ] [tool.uv]