[PR #358] [MERGED] chore: align alpha with main #390

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/deepagentsjs/pull/358
Author: @colifran
Created: 3/24/2026
Status: Merged
Merged: 3/24/2026
Merged by: @colifran

Base: 1.9.0-alpha.1Head: colifran/merge-main


📝 Commits (9)

  • 3254f71 fix(deepagents): remove orphaned ToolMessages for Gemini compatibility (#335)
  • 140e9ef fix(deepagents): throw on built-in tool collision (#330)
  • 2b76272 fix(deepagents): use crypto.randomUUID() instead of uuid (#336)
  • cb352a0 feat(deepagent): add LangSmithSandbox (#324)
  • 63260d4 chore: version packages (#321)
  • 790fa1c Merge branch 'main' into 1.9.0-alpha.1
  • 9788198 regen lockfile
  • 0f541d6 fix langsmith tests so that they use backend protocol v2 methods
  • 8eec884 format

📊 Changes

27 files changed (+1415 additions, -690 deletions)

View changed files

.changeset/fix-vfs-absolute-paths.md (+0 -5)
.changeset/middleware-reorder.md (+0 -7)
.changeset/pretty-kangaroos-tap.md (+0 -5)
examples/sandbox/langsmith-sandbox.ts (+114 -0)
📝 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 (+19 -0)
📝 libs/deepagents/package.json (+4 -2)
📝 libs/deepagents/src/agent.test.ts (+50 -0)
📝 libs/deepagents/src/agent.ts (+22 -0)
📝 libs/deepagents/src/backends/index.ts (+7 -0)
libs/deepagents/src/backends/langsmith.int.test.ts (+48 -0)
libs/deepagents/src/backends/langsmith.test.ts (+434 -0)
libs/deepagents/src/backends/langsmith.ts (+219 -0)
libs/deepagents/src/errors.ts (+54 -0)
📝 libs/deepagents/src/index.ts (+4 -0)
📝 libs/deepagents/src/middleware/fs.int.test.ts (+24 -25)
📝 libs/deepagents/src/middleware/fs.ts (+30 -10)

...and 7 more files

📄 Description

This PR aligns the alpha branch with the current state of main.


🔄 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/358 **Author:** [@colifran](https://github.com/colifran) **Created:** 3/24/2026 **Status:** ✅ Merged **Merged:** 3/24/2026 **Merged by:** [@colifran](https://github.com/colifran) **Base:** `1.9.0-alpha.1` ← **Head:** `colifran/merge-main` --- ### 📝 Commits (9) - [`3254f71`](https://github.com/langchain-ai/deepagentsjs/commit/3254f71708de076fb1e17f5065b45318394d0c9e) fix(deepagents): remove orphaned ToolMessages for Gemini compatibility (#335) - [`140e9ef`](https://github.com/langchain-ai/deepagentsjs/commit/140e9ef5176776261ddc0775d1858eb1374a20cb) fix(deepagents): throw on built-in tool collision (#330) - [`2b76272`](https://github.com/langchain-ai/deepagentsjs/commit/2b76272e9c435b5e23bede7cd79ab4ba8efae2c8) fix(deepagents): use `crypto.randomUUID()` instead of uuid (#336) - [`cb352a0`](https://github.com/langchain-ai/deepagentsjs/commit/cb352a0412f2cf66109f7fbe63c65b7d14b0df88) feat(deepagent): add LangSmithSandbox (#324) - [`63260d4`](https://github.com/langchain-ai/deepagentsjs/commit/63260d45be6d6cec68af1417ed56cf30194b8c47) chore: version packages (#321) - [`790fa1c`](https://github.com/langchain-ai/deepagentsjs/commit/790fa1c885bc4d28d83c329415e59760d80c90be) Merge branch 'main' into 1.9.0-alpha.1 - [`9788198`](https://github.com/langchain-ai/deepagentsjs/commit/9788198c39f54d323319b9c817ec47a833bb848d) regen lockfile - [`0f541d6`](https://github.com/langchain-ai/deepagentsjs/commit/0f541d6cf3fec71262e11119fd90f6898f40ed94) fix langsmith tests so that they use backend protocol v2 methods - [`8eec884`](https://github.com/langchain-ai/deepagentsjs/commit/8eec884bbe9238dd02f0bd6a06cd1b4564c5fb19) format ### 📊 Changes **27 files changed** (+1415 additions, -690 deletions) <details> <summary>View changed files</summary> ➖ `.changeset/fix-vfs-absolute-paths.md` (+0 -5) ➖ `.changeset/middleware-reorder.md` (+0 -7) ➖ `.changeset/pretty-kangaroos-tap.md` (+0 -5) ➕ `examples/sandbox/langsmith-sandbox.ts` (+114 -0) 📝 `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` (+19 -0) 📝 `libs/deepagents/package.json` (+4 -2) 📝 `libs/deepagents/src/agent.test.ts` (+50 -0) 📝 `libs/deepagents/src/agent.ts` (+22 -0) 📝 `libs/deepagents/src/backends/index.ts` (+7 -0) ➕ `libs/deepagents/src/backends/langsmith.int.test.ts` (+48 -0) ➕ `libs/deepagents/src/backends/langsmith.test.ts` (+434 -0) ➕ `libs/deepagents/src/backends/langsmith.ts` (+219 -0) ➕ `libs/deepagents/src/errors.ts` (+54 -0) 📝 `libs/deepagents/src/index.ts` (+4 -0) 📝 `libs/deepagents/src/middleware/fs.int.test.ts` (+24 -25) 📝 `libs/deepagents/src/middleware/fs.ts` (+30 -10) _...and 7 more files_ </details> ### 📄 Description This PR aligns the alpha branch with the current state of main. --- <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:54 -04:00
yindo closed this issue 2026-06-05 17:22:54 -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#390