[PR #310] [MERGED] chore: version packages #346

Closed
opened 2026-06-05 17:22:45 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/deepagentsjs/pull/310
Author: @github-actions[bot]
Created: 3/13/2026
Status: Merged
Merged: 3/17/2026
Merged by: @hntrl

Base: mainHead: changeset-release/main


📝 Commits (2)

📊 Changes

11 files changed (+39 additions, -22 deletions)

View changed files

.changeset/curvy-planes-sparkle.md (+0 -5)
.changeset/long-tables-press.md (+0 -5)
.changeset/store-propagation-fix.md (+0 -8)
internal/eval-harness/CHANGELOG.md (+8 -0)
📝 internal/eval-harness/package.json (+1 -1)
📝 libs/acp/CHANGELOG.md (+7 -0)
📝 libs/acp/package.json (+1 -1)
📝 libs/deepagents/CHANGELOG.md (+12 -0)
📝 libs/deepagents/package.json (+1 -1)
📝 libs/providers/quickjs/CHANGELOG.md (+8 -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

deepagents-acp@0.1.3

Patch Changes

deepagents@1.8.4

Patch Changes

  • #290 ab4a515 Thanks @maahir30! - Add static structured output to subagent response

  • #289 5a4df6c Thanks @alvedder! - fix(deepagents): move uuid from devDependencies to dependencies

  • #317 01da088 Thanks @hntrl! - fix(deepagents, quickjs): read store from runtime/config.store instead of config.configurable

    The filesystem middleware was reading the store from request.config.store (with a @ts-expect-error) and the QuickJS middleware from config.configurable.__pregel_store. Both now use the properly typed paths: request.runtime.store and config.store respectively.

@langchain/quickjs@0.2.1

Patch Changes

  • #317 01da088 Thanks @hntrl! - fix(deepagents, quickjs): read store from runtime/config.store instead of config.configurable

    The filesystem middleware was reading the store from request.config.store (with a @ts-expect-error) and the QuickJS middleware from config.configurable.__pregel_store. Both now use the properly typed paths: request.runtime.store and config.store respectively.

@deepagents/evals@0.0.2

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/310 **Author:** [@github-actions[bot]](https://github.com/apps/github-actions) **Created:** 3/13/2026 **Status:** ✅ Merged **Merged:** 3/17/2026 **Merged by:** [@hntrl](https://github.com/hntrl) **Base:** `main` ← **Head:** `changeset-release/main` --- ### 📝 Commits (2) - [`1ce805f`](https://github.com/langchain-ai/deepagentsjs/commit/1ce805f6a1a6dd48dd44de381477cc469f1baa96) chore: version packages - [`01f0c0f`](https://github.com/langchain-ai/deepagentsjs/commit/01f0c0f1aef8bccd8b259bf187ae0fc31e8ba99b) cr ### 📊 Changes **11 files changed** (+39 additions, -22 deletions) <details> <summary>View changed files</summary> ➖ `.changeset/curvy-planes-sparkle.md` (+0 -5) ➖ `.changeset/long-tables-press.md` (+0 -5) ➖ `.changeset/store-propagation-fix.md` (+0 -8) ➕ `internal/eval-harness/CHANGELOG.md` (+8 -0) 📝 `internal/eval-harness/package.json` (+1 -1) 📝 `libs/acp/CHANGELOG.md` (+7 -0) 📝 `libs/acp/package.json` (+1 -1) 📝 `libs/deepagents/CHANGELOG.md` (+12 -0) 📝 `libs/deepagents/package.json` (+1 -1) 📝 `libs/providers/quickjs/CHANGELOG.md` (+8 -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 ## deepagents-acp@0.1.3 ### Patch Changes - Updated dependencies \[[`ab4a515`](https://github.com/langchain-ai/deepagentsjs/commit/ab4a515f37cc166cb5015afa3617f625b343bcbb), [`5a4df6c`](https://github.com/langchain-ai/deepagentsjs/commit/5a4df6c050284e6024229ece108d58bcff3fdc66), [`01da088`](https://github.com/langchain-ai/deepagentsjs/commit/01da08863acd74da303b78950050f3df850216fe)]: - deepagents@1.8.4 ## deepagents@1.8.4 ### Patch Changes - [#290](https://github.com/langchain-ai/deepagentsjs/pull/290) [`ab4a515`](https://github.com/langchain-ai/deepagentsjs/commit/ab4a515f37cc166cb5015afa3617f625b343bcbb) Thanks [@maahir30](https://github.com/maahir30)! - Add static structured output to subagent response - [#289](https://github.com/langchain-ai/deepagentsjs/pull/289) [`5a4df6c`](https://github.com/langchain-ai/deepagentsjs/commit/5a4df6c050284e6024229ece108d58bcff3fdc66) Thanks [@alvedder](https://github.com/alvedder)! - fix(deepagents): move uuid from devDependencies to dependencies - [#317](https://github.com/langchain-ai/deepagentsjs/pull/317) [`01da088`](https://github.com/langchain-ai/deepagentsjs/commit/01da08863acd74da303b78950050f3df850216fe) Thanks [@hntrl](https://github.com/hntrl)! - fix(deepagents, quickjs): read store from runtime/config.store instead of config.configurable The filesystem middleware was reading the store from `request.config.store` (with a `@ts-expect-error`) and the QuickJS middleware from `config.configurable.__pregel_store`. Both now use the properly typed paths: `request.runtime.store` and `config.store` respectively. ## @langchain/quickjs@0.2.1 ### Patch Changes - [#317](https://github.com/langchain-ai/deepagentsjs/pull/317) [`01da088`](https://github.com/langchain-ai/deepagentsjs/commit/01da08863acd74da303b78950050f3df850216fe) Thanks [@hntrl](https://github.com/hntrl)! - fix(deepagents, quickjs): read store from runtime/config.store instead of config.configurable The filesystem middleware was reading the store from `request.config.store` (with a `@ts-expect-error`) and the QuickJS middleware from `config.configurable.__pregel_store`. Both now use the properly typed paths: `request.runtime.store` and `config.store` respectively. ## @deepagents/evals@0.0.2 ### Patch Changes - Updated dependencies \[[`ab4a515`](https://github.com/langchain-ai/deepagentsjs/commit/ab4a515f37cc166cb5015afa3617f625b343bcbb), [`5a4df6c`](https://github.com/langchain-ai/deepagentsjs/commit/5a4df6c050284e6024229ece108d58bcff3fdc66), [`01da088`](https://github.com/langchain-ai/deepagentsjs/commit/01da08863acd74da303b78950050f3df850216fe)]: - deepagents@1.8.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:22:45 -04:00
yindo closed this issue 2026-06-05 17:22:45 -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#346