Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .changeset/eight-pillows-leave.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fiery-parrots-wonder.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/lemon-roses-tell.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/proud-otters-rescue.md

This file was deleted.

7 changes: 7 additions & 0 deletions internal/eval-harness/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion internal/eval-harness/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
7 changes: 7 additions & 0 deletions libs/acp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion libs/acp/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
26 changes: 26 additions & 0 deletions libs/deepagents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion libs/deepagents/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 6 additions & 0 deletions libs/providers/quickjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion libs/providers/quickjs/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down