[PR #568] chore: version packages #568

Open
opened 2026-06-05 17:23:46 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/deepagentsjs/pull/568
Author: @github-actions[bot]
Created: 6/1/2026
Status: 🔄 Open

Base: mainHead: changeset-release/main


📝 Commits (1)

📊 Changes

17 files changed (+68 additions, -65 deletions)

View changed files

.changeset/cache-control-fallback-leak.md (+0 -13)
.changeset/calm-carrots-allow.md (+0 -9)
.changeset/fix-mime-type-binary-default.md (+0 -5)
.changeset/hunter-composite-route-search-scope.md (+0 -9)
.changeset/hunter-deepagents-node-browser-entrypoints-292.md (+0 -10)
.changeset/scope-repl-prompt-sandbox.md (+0 -5)
.changeset/subagent-agent-name-metadata.md (+0 -9)
📝 internal/eval-harness/CHANGELOG.md (+7 -0)
📝 internal/eval-harness/package.json (+1 -1)
📝 libs/acp/CHANGELOG.md (+7 -0)
📝 libs/acp/package.json (+1 -1)
📝 libs/deepagents/CHANGELOG.md (+33 -0)
📝 libs/deepagents/package.json (+1 -1)
📝 libs/providers/node-vfs/CHANGELOG.md (+10 -0)
📝 libs/providers/node-vfs/package.json (+1 -1)
📝 libs/providers/quickjs/CHANGELOG.md (+6 -0)
📝 libs/providers/quickjs/package.json (+1 -1)

📄 Description

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@langchain/node-vfs@0.2.0

Minor Changes

  • #575 5d266a2 Thanks @hntrl! - BREAKING: remove shell execution from the VFS provider

    VfsBackend now operates as a filesystem-only BackendProtocolV2 implementation and no longer exposes command execution.

    The provider now implements read, ls, grep, and glob directly against the in-memory VFS, path resolution is confined to the virtual workspace root, and legacy VfsSandbox / createVfsSandboxFactory* aliases are removed.

deepagents-acp@0.1.14

Patch Changes

deepagents@1.10.4

Patch Changes

  • #551 18557db Thanks @antonnak! - fix(deepagents): gate cache_control writes on per-call request.model

    createCacheBreakpointMiddleware and createMemoryMiddleware were gating
    the Anthropic-specific cache_control write at agent-creation time only.
    When modelFallbackMiddleware swapped request.model to a non-Anthropic
    provider mid-flight (e.g. on Anthropic 5xx), the marker leaked through
    and the fallback provider rejected the request with
    400 Unknown parameter: 'cache_control'. Both middlewares now also
    check isAnthropicModel(request.model) inside wrapModelCall. Fixes #550.

  • #541 1ca6dc9 Thanks @ixchio! - fix getMimeType to return application/octet-stream for unknown file extensions instead of text/plain

  • #572 03df237 Thanks @hntrl! - fix: scope CompositeBackend grep/glob route fanout by search path

    CompositeBackend now limits fallback route fanout to routes mounted under the requested search path, instead of querying all routed backends unconditionally.

    This avoids unrelated routed backend calls (and side-effect errors) for scoped searches like path="/workspace", while preserving full fanout behavior at root (path="/").

  • #574 84f3c0c Thanks @hntrl! - fix(deepagents): add explicit browser and node entrypoints

    • add deepagents/browser and deepagents/node subpath exports
    • route browser bundlers to the browser-safe bundle via the root browser export condition
    • avoid named Node builtin imports in backend utils that can break browser builds
    • document browser guidance to import from deepagents/browser
  • #566 04cc3fc Thanks @hntrl! - fix(deepagents): propagate subagent lc_agent_name during task delegation

    • Ensure task tool subagent invocations override metadata.lc_agent_name with the selected subagent_type.
    • Add regression coverage for both compiled subagents (runnable) and standard subagent specs to verify tool-time metadata reflects the active subagent.
    • Update the langsmith peer dependency range in deepagents to ^0.7.1.

@langchain/quickjs@0.4.2

Patch Changes

  • #546 b7a5f26 Thanks @open-swe! - fix(quickjs): scope CodeInterpreterMiddleware REPL prompt sandbox bullet to the runtime

@deepagents/evals@0.0.13

Patch Changes


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/deepagentsjs/pull/568 **Author:** [@github-actions[bot]](https://github.com/apps/github-actions) **Created:** 6/1/2026 **Status:** 🔄 Open **Base:** `main` ← **Head:** `changeset-release/main` --- ### 📝 Commits (1) - [`34ae671`](https://github.com/langchain-ai/deepagentsjs/commit/34ae6716a6b446d9bfb0cbf96c3c5105875e7b55) chore: version packages ### 📊 Changes **17 files changed** (+68 additions, -65 deletions) <details> <summary>View changed files</summary> ➖ `.changeset/cache-control-fallback-leak.md` (+0 -13) ➖ `.changeset/calm-carrots-allow.md` (+0 -9) ➖ `.changeset/fix-mime-type-binary-default.md` (+0 -5) ➖ `.changeset/hunter-composite-route-search-scope.md` (+0 -9) ➖ `.changeset/hunter-deepagents-node-browser-entrypoints-292.md` (+0 -10) ➖ `.changeset/scope-repl-prompt-sandbox.md` (+0 -5) ➖ `.changeset/subagent-agent-name-metadata.md` (+0 -9) 📝 `internal/eval-harness/CHANGELOG.md` (+7 -0) 📝 `internal/eval-harness/package.json` (+1 -1) 📝 `libs/acp/CHANGELOG.md` (+7 -0) 📝 `libs/acp/package.json` (+1 -1) 📝 `libs/deepagents/CHANGELOG.md` (+33 -0) 📝 `libs/deepagents/package.json` (+1 -1) 📝 `libs/providers/node-vfs/CHANGELOG.md` (+10 -0) 📝 `libs/providers/node-vfs/package.json` (+1 -1) 📝 `libs/providers/quickjs/CHANGELOG.md` (+6 -0) 📝 `libs/providers/quickjs/package.json` (+1 -1) </details> ### 📄 Description This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @langchain/node-vfs@0.2.0 ### Minor Changes - [#575](https://github.com/langchain-ai/deepagentsjs/pull/575) [`5d266a2`](https://github.com/langchain-ai/deepagentsjs/commit/5d266a213d8d3d15c2281e2e00ab71ee30ca3ffe) Thanks [@hntrl](https://github.com/hntrl)! - BREAKING: remove shell execution from the VFS provider `VfsBackend` now operates as a filesystem-only `BackendProtocolV2` implementation and no longer exposes command execution. The provider now implements `read`, `ls`, `grep`, and `glob` directly against the in-memory VFS, path resolution is confined to the virtual workspace root, and legacy `VfsSandbox` / `createVfsSandboxFactory*` aliases are removed. ## deepagents-acp@0.1.14 ### Patch Changes - Updated dependencies [[`18557db`](https://github.com/langchain-ai/deepagentsjs/commit/18557db7bbdf92052ed5f994512fb70e11989e69), [`1ca6dc9`](https://github.com/langchain-ai/deepagentsjs/commit/1ca6dc92fd40a6d845d24b95ba14b8f2643db394), [`03df237`](https://github.com/langchain-ai/deepagentsjs/commit/03df237385fbdfefd862076c5588eb39cb6e43c3), [`84f3c0c`](https://github.com/langchain-ai/deepagentsjs/commit/84f3c0c2f1cad271191bcc138b84ba5b9c9205c9), [`04cc3fc`](https://github.com/langchain-ai/deepagentsjs/commit/04cc3fc26001ee566ed94de44c2dda2cf6adecc4)]: - deepagents@1.10.4 ## deepagents@1.10.4 ### Patch Changes - [#551](https://github.com/langchain-ai/deepagentsjs/pull/551) [`18557db`](https://github.com/langchain-ai/deepagentsjs/commit/18557db7bbdf92052ed5f994512fb70e11989e69) Thanks [@antonnak](https://github.com/antonnak)! - fix(deepagents): gate cache_control writes on per-call request.model `createCacheBreakpointMiddleware` and `createMemoryMiddleware` were gating the Anthropic-specific `cache_control` write at agent-creation time only. When `modelFallbackMiddleware` swapped `request.model` to a non-Anthropic provider mid-flight (e.g. on Anthropic 5xx), the marker leaked through and the fallback provider rejected the request with `400 Unknown parameter: 'cache_control'`. Both middlewares now also check `isAnthropicModel(request.model)` inside `wrapModelCall`. Fixes [#550](https://github.com/langchain-ai/deepagentsjs/issues/550). - [#541](https://github.com/langchain-ai/deepagentsjs/pull/541) [`1ca6dc9`](https://github.com/langchain-ai/deepagentsjs/commit/1ca6dc92fd40a6d845d24b95ba14b8f2643db394) Thanks [@ixchio](https://github.com/ixchio)! - fix getMimeType to return application/octet-stream for unknown file extensions instead of text/plain - [#572](https://github.com/langchain-ai/deepagentsjs/pull/572) [`03df237`](https://github.com/langchain-ai/deepagentsjs/commit/03df237385fbdfefd862076c5588eb39cb6e43c3) Thanks [@hntrl](https://github.com/hntrl)! - fix: scope CompositeBackend grep/glob route fanout by search path CompositeBackend now limits fallback route fanout to routes mounted under the requested search path, instead of querying all routed backends unconditionally. This avoids unrelated routed backend calls (and side-effect errors) for scoped searches like `path="/workspace"`, while preserving full fanout behavior at root (`path="/"`). - [#574](https://github.com/langchain-ai/deepagentsjs/pull/574) [`84f3c0c`](https://github.com/langchain-ai/deepagentsjs/commit/84f3c0c2f1cad271191bcc138b84ba5b9c9205c9) Thanks [@hntrl](https://github.com/hntrl)! - fix(deepagents): add explicit browser and node entrypoints - add `deepagents/browser` and `deepagents/node` subpath exports - route browser bundlers to the browser-safe bundle via the root `browser` export condition - avoid named Node builtin imports in backend utils that can break browser builds - document browser guidance to import from `deepagents/browser` - [#566](https://github.com/langchain-ai/deepagentsjs/pull/566) [`04cc3fc`](https://github.com/langchain-ai/deepagentsjs/commit/04cc3fc26001ee566ed94de44c2dda2cf6adecc4) Thanks [@hntrl](https://github.com/hntrl)! - fix(deepagents): propagate subagent `lc_agent_name` during task delegation - Ensure `task` tool subagent invocations override `metadata.lc_agent_name` with the selected `subagent_type`. - Add regression coverage for both compiled subagents (`runnable`) and standard subagent specs to verify tool-time metadata reflects the active subagent. - Update the `langsmith` peer dependency range in `deepagents` to `^0.7.1`. ## @langchain/quickjs@0.4.2 ### Patch Changes - [#546](https://github.com/langchain-ai/deepagentsjs/pull/546) [`b7a5f26`](https://github.com/langchain-ai/deepagentsjs/commit/b7a5f26fd9cba992b11e1a4cf18607d64533503b) Thanks [@open-swe](https://github.com/apps/open-swe)! - fix(quickjs): scope `CodeInterpreterMiddleware` REPL prompt sandbox bullet to the runtime ## @deepagents/evals@0.0.13 ### Patch Changes - Updated dependencies [[`18557db`](https://github.com/langchain-ai/deepagentsjs/commit/18557db7bbdf92052ed5f994512fb70e11989e69), [`1ca6dc9`](https://github.com/langchain-ai/deepagentsjs/commit/1ca6dc92fd40a6d845d24b95ba14b8f2643db394), [`03df237`](https://github.com/langchain-ai/deepagentsjs/commit/03df237385fbdfefd862076c5588eb39cb6e43c3), [`84f3c0c`](https://github.com/langchain-ai/deepagentsjs/commit/84f3c0c2f1cad271191bcc138b84ba5b9c9205c9), [`04cc3fc`](https://github.com/langchain-ai/deepagentsjs/commit/04cc3fc26001ee566ed94de44c2dda2cf6adecc4)]: - deepagents@1.10.4 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-06-05 17:23:46 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/deepagentsjs#568