From 3915ec0abc21dddc068df5426c81794ac5c442be Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 00:25:29 +0000 Subject: [PATCH] chore: version packages --- .changeset/eight-pillows-leave.md | 7 ------- .changeset/fiery-parrots-wonder.md | 5 ----- .changeset/lemon-roses-tell.md | 7 ------- .changeset/proud-otters-rescue.md | 17 ----------------- internal/eval-harness/CHANGELOG.md | 7 +++++++ internal/eval-harness/package.json | 2 +- libs/acp/CHANGELOG.md | 7 +++++++ libs/acp/package.json | 2 +- libs/deepagents/CHANGELOG.md | 26 ++++++++++++++++++++++++++ libs/deepagents/package.json | 2 +- libs/providers/quickjs/CHANGELOG.md | 6 ++++++ libs/providers/quickjs/package.json | 2 +- 12 files changed, 50 insertions(+), 40 deletions(-) delete mode 100644 .changeset/eight-pillows-leave.md delete mode 100644 .changeset/fiery-parrots-wonder.md delete mode 100644 .changeset/lemon-roses-tell.md delete mode 100644 .changeset/proud-otters-rescue.md diff --git a/.changeset/eight-pillows-leave.md b/.changeset/eight-pillows-leave.md deleted file mode 100644 index 80799447b..000000000 --- a/.changeset/eight-pillows-leave.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"deepagents": patch ---- - -fix(deepagents): forward subagent results as text - -Fixed a 400 `invalid_request_error` that occurred when a subagent used an Anthropic server-side tool (web search, web fetch, or code execution): the subagent's `server_tool_use`/`*_tool_result` blocks were forwarded to the parent agent as `tool_result` content, which the API rejects. Subagent results are now passed back to the parent as their text content (matching the Python implementation), which resolves the error and also handles a trailing empty `end_turn` message. diff --git a/.changeset/fiery-parrots-wonder.md b/.changeset/fiery-parrots-wonder.md deleted file mode 100644 index a96455b18..000000000 --- a/.changeset/fiery-parrots-wonder.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@langchain/quickjs": minor ---- - -chore(quickjs): disallow task as a configurable ptc tool diff --git a/.changeset/lemon-roses-tell.md b/.changeset/lemon-roses-tell.md deleted file mode 100644 index 2ffeed28b..000000000 --- a/.changeset/lemon-roses-tell.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"deepagents": patch ---- - -feat(deepagents): add bedrockPromptCachingMiddleware to default stack - -Add bedrockPromptCachingMiddleware to default middleware stack. This automatically opts-in to Bedrock prompt caching for Nova and Anthropic models diff --git a/.changeset/proud-otters-rescue.md b/.changeset/proud-otters-rescue.md deleted file mode 100644 index c2ed94c33..000000000 --- a/.changeset/proud-otters-rescue.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -"deepagents": patch ---- - -fix(deepagents): declare LangChain runtime packages as peer dependencies - -Move `@langchain/core`, `@langchain/langgraph`, `@langchain/langgraph-sdk`, and -`langchain` from `dependencies` to `peerDependencies`, and also declare -`@langchain/langgraph-checkpoint` as a peer (its `BaseCheckpointSaver`/`BaseStore` -types are part of the public API), so they resolve to a single shared instance in -the consumer's tree. Previously they were bundled as regular -dependencies, which let a consumer end up with two copies of `@langchain/core` -(e.g. `1.2.0` vs `1.2.1`). Because these packages ship classes with private/ -protected fields, the duplicate copies are treated as nominally distinct types, -producing errors like passing a `ChatOpenAI` model to `createDeepAgent` or a -compiled graph to the local protocol helpers. As peers, the app controls the -version and bumping `@langchain/core` no longer requires a `deepagents` release. diff --git a/internal/eval-harness/CHANGELOG.md b/internal/eval-harness/CHANGELOG.md index 0ca083269..47a028f1c 100644 --- a/internal/eval-harness/CHANGELOG.md +++ b/internal/eval-harness/CHANGELOG.md @@ -1,5 +1,12 @@ # @deepagents/evals +## 0.0.15 + +### Patch Changes + +- Updated dependencies [[`d7ecab2`](https://github.com/langchain-ai/deepagentsjs/commit/d7ecab2d9f9d41321a043eed6edc3366a1381a67), [`42f34b6`](https://github.com/langchain-ai/deepagentsjs/commit/42f34b65ededf4a1fbf3cd4bbff486ddfeb320e9), [`0ae10d7`](https://github.com/langchain-ai/deepagentsjs/commit/0ae10d7e26c84203a5273939c9ad7a9c8c8661c6)]: + - deepagents@1.10.6 + ## 0.0.14 ### Patch Changes diff --git a/internal/eval-harness/package.json b/internal/eval-harness/package.json index 2fc1a1580..92e1ff471 100644 --- a/internal/eval-harness/package.json +++ b/internal/eval-harness/package.json @@ -1,6 +1,6 @@ { "name": "@deepagents/evals", - "version": "0.0.14", + "version": "0.0.15", "private": true, "description": "Eval harness — runner interface, profile registry, and trajectory matchers", "main": "./dist/index.cjs", diff --git a/libs/acp/CHANGELOG.md b/libs/acp/CHANGELOG.md index 5a93a9154..696e80090 100644 --- a/libs/acp/CHANGELOG.md +++ b/libs/acp/CHANGELOG.md @@ -1,5 +1,12 @@ # deepagents-acp +## 0.1.16 + +### Patch Changes + +- Updated dependencies [[`d7ecab2`](https://github.com/langchain-ai/deepagentsjs/commit/d7ecab2d9f9d41321a043eed6edc3366a1381a67), [`42f34b6`](https://github.com/langchain-ai/deepagentsjs/commit/42f34b65ededf4a1fbf3cd4bbff486ddfeb320e9), [`0ae10d7`](https://github.com/langchain-ai/deepagentsjs/commit/0ae10d7e26c84203a5273939c9ad7a9c8c8661c6)]: + - deepagents@1.10.6 + ## 0.1.15 ### Patch Changes diff --git a/libs/acp/package.json b/libs/acp/package.json index 912214a18..2f7ef767d 100644 --- a/libs/acp/package.json +++ b/libs/acp/package.json @@ -1,6 +1,6 @@ { "name": "deepagents-acp", - "version": "0.1.15", + "version": "0.1.16", "description": "ACP (Agent Client Protocol) server for DeepAgents - enables IDE integration with Zed, JetBrains, and other ACP clients", "main": "./dist/index.cjs", "module": "./dist/index.js", diff --git a/libs/deepagents/CHANGELOG.md b/libs/deepagents/CHANGELOG.md index b80e8e2b1..c7c525ec3 100644 --- a/libs/deepagents/CHANGELOG.md +++ b/libs/deepagents/CHANGELOG.md @@ -1,5 +1,31 @@ # deepagents +## 1.10.6 + +### Patch Changes + +- [#608](https://github.com/langchain-ai/deepagentsjs/pull/608) [`d7ecab2`](https://github.com/langchain-ai/deepagentsjs/commit/d7ecab2d9f9d41321a043eed6edc3366a1381a67) Thanks [@aolsenjazz](https://github.com/aolsenjazz)! - fix(deepagents): forward subagent results as text + + Fixed a 400 `invalid_request_error` that occurred when a subagent used an Anthropic server-side tool (web search, web fetch, or code execution): the subagent's `server_tool_use`/`*_tool_result` blocks were forwarded to the parent agent as `tool_result` content, which the API rejects. Subagent results are now passed back to the parent as their text content (matching the Python implementation), which resolves the error and also handles a trailing empty `end_turn` message. + +- [#611](https://github.com/langchain-ai/deepagentsjs/pull/611) [`42f34b6`](https://github.com/langchain-ai/deepagentsjs/commit/42f34b65ededf4a1fbf3cd4bbff486ddfeb320e9) Thanks [@aolsenjazz](https://github.com/aolsenjazz)! - feat(deepagents): add bedrockPromptCachingMiddleware to default stack + + Add bedrockPromptCachingMiddleware to default middleware stack. This automatically opts-in to Bedrock prompt caching for Nova and Anthropic models + +- [#613](https://github.com/langchain-ai/deepagentsjs/pull/613) [`0ae10d7`](https://github.com/langchain-ai/deepagentsjs/commit/0ae10d7e26c84203a5273939c9ad7a9c8c8661c6) Thanks [@christian-bromann](https://github.com/christian-bromann)! - fix(deepagents): declare LangChain runtime packages as peer dependencies + + Move `@langchain/core`, `@langchain/langgraph`, `@langchain/langgraph-sdk`, and + `langchain` from `dependencies` to `peerDependencies`, and also declare + `@langchain/langgraph-checkpoint` as a peer (its `BaseCheckpointSaver`/`BaseStore` + types are part of the public API), so they resolve to a single shared instance in + the consumer's tree. Previously they were bundled as regular + dependencies, which let a consumer end up with two copies of `@langchain/core` + (e.g. `1.2.0` vs `1.2.1`). Because these packages ship classes with private/ + protected fields, the duplicate copies are treated as nominally distinct types, + producing errors like passing a `ChatOpenAI` model to `createDeepAgent` or a + compiled graph to the local protocol helpers. As peers, the app controls the + version and bumping `@langchain/core` no longer requires a `deepagents` release. + ## 1.10.5 ### Patch Changes diff --git a/libs/deepagents/package.json b/libs/deepagents/package.json index 68b2f3a63..2924dc576 100644 --- a/libs/deepagents/package.json +++ b/libs/deepagents/package.json @@ -1,6 +1,6 @@ { "name": "deepagents", - "version": "1.10.5", + "version": "1.10.6", "description": "Deep Agents - a library for building controllable AI agents with LangGraph", "main": "./dist/index.cjs", "module": "./dist/index.js", diff --git a/libs/providers/quickjs/CHANGELOG.md b/libs/providers/quickjs/CHANGELOG.md index e8d6bffda..83ad1de0c 100644 --- a/libs/providers/quickjs/CHANGELOG.md +++ b/libs/providers/quickjs/CHANGELOG.md @@ -1,5 +1,11 @@ # @langchain/quickjs +## 0.6.0 + +### Minor Changes + +- [#606](https://github.com/langchain-ai/deepagentsjs/pull/606) [`3c8f8b2`](https://github.com/langchain-ai/deepagentsjs/commit/3c8f8b2ea6f0204353c63bf49c3fdc6655bf1069) Thanks [@colifran](https://github.com/colifran)! - chore(quickjs): disallow task as a configurable ptc tool + ## 0.5.1 ### Patch Changes diff --git a/libs/providers/quickjs/package.json b/libs/providers/quickjs/package.json index d7f158778..f021948d3 100644 --- a/libs/providers/quickjs/package.json +++ b/libs/providers/quickjs/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/quickjs", - "version": "0.5.1", + "version": "0.6.0", "description": "Sandboxed JavaScript REPL for deepagents using QuickJS (WASM)", "main": "./dist/index.cjs", "module": "./dist/index.js",