Skip to content

Commit 2d757d4

Browse files
authored
fix(langgraph-python-threads): pin to stable @copilotkit/* 1.57.0 and intelligence 0.1.0 (CopilotKit#4663)
## Summary - Bump `@copilotkit/{a2ui-renderer,react-core,react-ui,runtime}` from `1.56.5-canary.1777671752` to `1.57.0` in `apps/app/package.json` and `apps/bff/package.json` - Bump `ghcr.io/copilotkit/intelligence/composite` from `0.1.0-rc.16` to `0.1.0` in `docker-compose.yml` - Align the Dockerfile python pin (`copilotkit==0.1.78`) with `apps/agent/pyproject.toml` (`copilotkit==0.1.86`) - Regenerate `package-lock.json` against the new stable npm pins ## Test plan - [ ] CI's `showcase_validate.yml` passes (or reports an expected ratchet drop in `validate-pins` baseline that a maintainer can reset) - [ ] `docker pull ghcr.io/copilotkit/intelligence/composite:0.1.0` succeeds (verify the literal tag string matches what is published) - [ ] From `examples/integrations/langgraph-python-threads/`: `npm install && docker compose up` boots cleanly with the new pins - [ ] BFF connects to the intelligence composite at `0.1.0` without API surface drift 🤖 Generated with [Claude Code](https://claude.com/claude-code)
2 parents c5b383e + 8537402 commit 2d757d4

5 files changed

Lines changed: 1140 additions & 1225 deletions

File tree

examples/integrations/langgraph-python-threads/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ WORKDIR /app
4040
COPY apps/agent/ ./apps/agent/
4141
# Install ag-ui-langgraph FIRST at pinned version (before copilotkit can override it)
4242
RUN uv pip install --system "ag-ui-langgraph[fastapi]==0.0.22" && \
43-
uv pip install --system --no-deps "copilotkit==0.1.78" && \
43+
uv pip install --system --no-deps "copilotkit==0.1.86" && \
4444
uv pip install --system "partialjson>=0.0.8,<0.0.9" "toml>=0.10.2,<0.11.0" && \
4545
uv pip install --system \
4646
"langchain==1.0.1" \

examples/integrations/langgraph-python-threads/apps/app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
},
1010
"dependencies": {
1111
"@ag-ui/client": "0.0.52",
12-
"@copilotkit/a2ui-renderer": "1.56.5-canary.1777671752",
13-
"@copilotkit/react-core": "1.56.5-canary.1777671752",
14-
"@copilotkit/react-ui": "1.56.5-canary.1777671752",
12+
"@copilotkit/a2ui-renderer": "1.57.0",
13+
"@copilotkit/react-core": "1.57.0",
14+
"@copilotkit/react-ui": "1.57.0",
1515
"@hono/node-server": "^1.19.14",
1616
"@radix-ui/react-checkbox": "^1.3.3",
1717
"@radix-ui/react-label": "^2.1.8",

examples/integrations/langgraph-python-threads/apps/bff/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"start": "node dist/server.js"
1010
},
1111
"dependencies": {
12-
"@copilotkit/runtime": "1.56.5-canary.1777671752",
12+
"@copilotkit/runtime": "1.57.0",
1313
"@hono/node-server": "^1.13.6",
1414
"express": "5.2.1",
1515
"hono": "^4.7.11",

examples/integrations/langgraph-python-threads/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ services:
5858
# ---------------------------------------------------------------------------
5959

6060
intelligence:
61-
image: ghcr.io/copilotkit/intelligence/composite:0.1.0-rc.16
61+
image: ghcr.io/copilotkit/intelligence/composite:0.1.0
6262
ports:
6363
- "${APP_API_HOST_PORT:-4201}:4201"
6464
- "${REALTIME_GATEWAY_HOST_PORT:-4401}:4401"

0 commit comments

Comments
 (0)