[PR #367] [MERGED] build(deps): bump the patch-deps-updates-main group with 10 updates #399

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/deepagentsjs/pull/367
Author: @dependabot[bot]
Created: 3/25/2026
Status: Merged
Merged: 3/25/2026
Merged by: @christian-bromann

Base: mainHead: dependabot/npm_and_yarn/patch-deps-updates-main-e1c8534c10


📝 Commits (1)

  • b5800f6 build(deps): bump the patch-deps-updates-main group with 10 updates

📊 Changes

3 files changed (+317 additions, -365 deletions)

View changed files

📝 libs/deepagents/package.json (+1 -1)
📝 libs/providers/quickjs/package.json (+1 -1)
📝 pnpm-lock.yaml (+315 -363)

📄 Description

Bumps the patch-deps-updates-main group with 10 updates:

Package From To
@eslint/eslintrc 3.3.3 3.3.5
@langchain/core 1.1.33 1.1.36
@langchain/langgraph 1.2.3 1.2.5
@langchain/langgraph-checkpoint 1.0.0 1.0.1
tsdown 0.21.4 0.21.5
langchain 1.2.34 1.2.37
yaml 2.8.2 2.8.3
@langchain/anthropic 1.3.18 1.3.25
modal 0.7.1 0.7.3
langsmith 0.5.7 0.5.13

Updates @eslint/eslintrc from 3.3.3 to 3.3.5

Release notes

Sourced from @​eslint/eslintrc's releases.

eslintrc: v3.3.5

3.3.5 (2026-03-04)

Bug Fixes

  • update dependency minimatch to ^3.1.5 (#227) (3dc2381)

eslintrc: v3.3.4

3.3.4 (2026-02-22)

Bug Fixes

  • update ajv to 6.14.0 to address security vulnerabilities (#221) (9139140)
  • update minimatch to 3.1.3 to address security vulnerabilities (#224) (30339d0)
Changelog

Sourced from @​eslint/eslintrc's changelog.

3.3.5 (2026-03-04)

Bug Fixes

  • update dependency minimatch to ^3.1.5 (#227) (3dc2381)

3.3.4 (2026-02-22)

Bug Fixes

  • update ajv to 6.14.0 to address security vulnerabilities (#221) (9139140)
  • update minimatch to 3.1.3 to address security vulnerabilities (#224) (30339d0)
Commits
  • 5135df1 chore: release 3.3.5 🚀 (#228)
  • c109d69 docs: Update README sponsors
  • 3dc2381 fix: update dependency minimatch to ^3.1.5 (#227)
  • 81385b6 ci: pin Node.js 25.6.1 (#226)
  • 4c45e24 chore: release 3.3.4 🚀 (#223)
  • 30339d0 fix: update minimatch to 3.1.3 to address security vulnerabilities (#224)
  • 9139140 fix: update ajv to 6.14.0 to address security vulnerabilities (#221)
  • 245ada5 docs: Update README sponsors
  • 78b1a0e docs: Update README sponsors
  • df32fff docs: Update README sponsors
  • Additional commits viewable in compare view

Updates @langchain/core from 1.1.33 to 1.1.36

Release notes

Sourced from @​langchain/core's releases.

@​langchain/core@​1.1.36

Patch Changes

  • #10512 bbbfea1 Thanks @​hntrl! - fix(core): fix streaming chunk merge for providers without index on tool call deltas

    _mergeLists now falls back to id-based matching when items don't have an index field. Previously, providers routing through the OpenAI-compatible API without index on streaming tool call deltas (e.g. Anthropic models via ChatOpenAI) would accumulate hundreds of individual raw deltas in tool_call_chunks and additional_kwargs.tool_calls instead of merging them into a single entry per tool call. In a real trace with 3 concurrent subagents, this caused a single AI message to balloon from ~4KB to 146KB -- with 826 uncollapsed streaming fragments carrying a few bytes each.

    Also fixes SystemMessage.concat() which used ...this to spread all instance properties (including lc_kwargs) into the new constructor, causing each chained concat() call to nest one level deeper. After 7 middleware concat() calls (typical in deepagents), a 7KB system prompt would serialize to 81KB due to content being duplicated at every nesting level.

@​langchain/core@​1.1.35

Patch Changes

  • #10327 5dc11b5 Thanks @​hntrl! - fix(core): replace exported zod type references with structural duck-type interfaces to fix TypeScript OOM

    Replaces all exported Zod type references (z3.ZodType, z4.$ZodType, etc.) in @langchain/core's public API with minimal structural ("duck-type") interfaces. This prevents TypeScript from performing expensive deep structural comparisons (~3,400+ lines of mutually recursive generics) when downstream packages resolve a different Zod version than @langchain/core, which was causing OOM crashes and unresponsive language servers in monorepo setups.

  • #10433 7af0b65 Thanks @​tanushree-sharma! - feat: Add LangSmith integration metadata to createAgent and initChatModel

@​langchain/core@​1.1.34

Patch Changes

Commits
  • d2a0c2d chore: version packages (#10508)
  • bbbfea1 fix(core): fix _mergeLists id-only fallback and SystemMessage.concat lc_kwarg...
  • 478652c fix(openai): detect DeepSeek context overflow errors as ContextOverfl… (#10481)
  • 3d35eb1 fix(langchain): add "aws" alias to MODEL_PROVIDER_CONFIG for Bedrock hub prom...
  • 52e501b fix(openai): guard JSON.parse in streaming json_schema when text is empty (#1...
  • ae4122f Align Zod Importation For 'libs/langchain/src/agents/nodes/utils.ts' (#10258)
  • 443253b chore: version packages (#10469)
  • 005d4a1 chore(deps-dev): bump fast-xml-parser from 5.5.6 to 5.5.7 (#10473)
  • 63b7268 fix(@​langchain/google) Duplicate function call (#10493)
  • 75e9d56 fix: support structured output (providerStrategy) for Google Gemini models in...
  • Additional commits viewable in compare view

Updates @langchain/langgraph from 1.2.3 to 1.2.5

Release notes

Sourced from @​langchain/langgraph's releases.

@​langchain/langgraph@​1.2.5

Patch Changes

  • #2213 a09932a Thanks @​hntrl! - fix(core): prevent AbortSignal listener leak in stream() and streamEvents()

    Pregel.stream() and streamEvents() called combineAbortSignals() but discarded the dispose function, leaking one abort listener on the caller's signal per invocation. Over many invocations this caused unbounded memory growth as each leaked listener retained references to its associated graph execution state.

    • Use AbortSignal.any() on Node 20+ which handles listener lifecycle automatically via GC
    • Fall back to manual listener management on Node 18, with proper dispose() called when the stream completes or is cancelled
  • #2210 4d2e948 Thanks @​jackjin1997! - Fix AnyValue.update() returning false instead of true when values are received, aligning with all other channel implementations.

  • Updated dependencies [414a7ad]:

    • @​langchain/langgraph-sdk@​1.8.0

@​langchain/langgraph@​1.2.4

Patch Changes

Changelog

Sourced from @​langchain/langgraph's changelog.

1.2.5

Patch Changes

  • #2213 a09932a Thanks @​hntrl! - fix(core): prevent AbortSignal listener leak in stream() and streamEvents()

    Pregel.stream() and streamEvents() called combineAbortSignals() but discarded the dispose function, leaking one abort listener on the caller's signal per invocation. Over many invocations this caused unbounded memory growth as each leaked listener retained references to its associated graph execution state.

    • Use AbortSignal.any() on Node 20+ which handles listener lifecycle automatically via GC
    • Fall back to manual listener management on Node 18, with proper dispose() called when the stream completes or is cancelled
  • #2210 4d2e948 Thanks @​jackjin1997! - Fix AnyValue.update() returning false instead of true when values are received, aligning with all other channel implementations.

  • Updated dependencies [414a7ad]:

    • @​langchain/langgraph-sdk@​1.8.0

1.2.4

Patch Changes

Commits

Updates @langchain/langgraph-checkpoint from 1.0.0 to 1.0.1

Release notes

Sourced from @​langchain/langgraph-checkpoint's releases.

@​langchain/langgraph-checkpoint-sqlite@​1.0.1

Patch Changes

@​langchain/langgraph-checkpoint-postgres@​1.0.1

Patch Changes

@​langchain/langgraph-checkpoint@​1.0.1

Patch Changes

Changelog

Sourced from @​langchain/langgraph-checkpoint's changelog.

1.0.1

Patch Changes

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​langchain/langgraph-checkpoint since your current version.

Install script changes

This version modifies prepublish script that runs during installation. Review the package contents before updating.


Updates tsdown from 0.21.4 to 0.21.5

Release notes

Sourced from tsdown's releases.

v0.21.5

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • f1457f4 chore: release v0.21.5
  • 0b2767a fix(deps): correctly resolve root @types packages for dts deep imports (#852)
  • a6b2e4b chore: upgrade deps
  • 8f8a0aa docs: delete rolldown-plugin-solid (#862)
  • c51502b fix(deps): resolve subpath extensions for packages without exports field (#863)
  • bb6decb fix(css): use aliased exports for CSS module keys (#840)
  • af40e43 fix(css): don't override internal importer (#860)
  • fd967d2 chore: upgrade deps
  • 2f1448c chore(deps): update all non-major dependencies (#855)
  • bffc416 feat: support typescript v6 (#858)
  • Additional commits viewable in compare view

Updates langchain from 1.2.34 to 1.2.37

Release notes

Sourced from langchain's releases.

langchain@1.2.37

Patch Changes

  • #10475 3d35eb1 Thanks @​hntrl! - fix(langchain): add "aws" alias to MODEL_PROVIDER_CONFIG so hub/node auto-detects ChatBedrockConverse from Python-serialized prompts

  • #10258 ae4122f Thanks @​irfiacre! - Align Zod Importation For 'libs/langchain/src/agents/nodes/utils.ts'

  • Updated dependencies [bbbfea1]:

    • @​langchain/core@​1.1.36

langchain@1.2.36

Patch Changes

langchain@1.2.35

Patch Changes

Commits
  • d2a0c2d chore: version packages (#10508)
  • bbbfea1 fix(core): fix _mergeLists id-only fallback and SystemMessage.concat lc_kwarg...
  • 478652c fix(openai): detect DeepSeek context overflow errors as ContextOverfl… (#10481)
  • 3d35eb1 fix(langchain): add "aws" alias to MODEL_PROVIDER_CONFIG for Bedrock hub prom...
  • 52e501b fix(openai): guard JSON.parse in streaming json_schema when text is empty (#1...
  • ae4122f Align Zod Importation For 'libs/langchain/src/agents/nodes/utils.ts' (#10258)
  • 443253b chore: version packages (#10469)
  • 005d4a1 chore(deps-dev): bump fast-xml-parser from 5.5.6 to 5.5.7 (#10473)
  • 63b7268 fix(@​langchain/google) Duplicate function call (#10493)
  • 75e9d56 fix: support structured output (providerStrategy) for Google Gemini models in...
  • Additional commits viewable in compare view

Updates yaml from 2.8.2 to 2.8.3

Release notes

Sourced from yaml's releases.

v2.8.3

  • Add trailingComma ToString option for multiline flow formatting (#670)
  • Catch stack overflow during node composition (1e84ebb)
Commits
  • ce14587 2.8.3
  • 1e84ebb fix: Catch stack overflow during node composition
  • 6b24090 ci: Include Prettier check in lint action
  • 9424dee chore: Refresh lockfile
  • d1aca82 Add trailingComma ToString option for multiline flow formatting (#670)
  • 4321509 ci: Drop the branch filter from GitHub PR actions
  • 47207d0 chore: Update docs-slate
  • 5212fae chore: Update docs-slate
  • See full diff in compare view

Updates @langchain/anthropic from 1.3.18 to 1.3.25

Release notes

Sourced from @​langchain/anthropic's releases.

@​langchain/anthropic@​1.3.25

Patch Changes

@​langchain/anthropic@​1.3.24

Patch Changes

  • #10420 08657f2 Thanks @​pawel-twardziak! - Fix temperature/topK/topP handling: guard all three so undefined values are not set on the request object, and fix broken topK/topP validation when thinking is enabled.
  • Updated dependencies [6db417b, d69dfcc]:
    • @​langchain/core@​1.1.33

@​langchain/anthropic@​1.3.23

Patch Changes

@​langchain/anthropic@​1.3.22

Patch Changes

Commits
  • bfb3aad chore: version packages (#10465)
  • da85f31 fix(anthropic): add default max tokens for sonnet (#10467)
  • f4356d3 chore(deps-dev): bump fast-xml-parser from 5.4.2 to 5.5.6 (#10449)
  • 4b1a874 fix(langchain): plurals r hard (#10466)
  • bfb7944 feat(core): Add all chat model/llm invocation params to metadata (#10312)
  • 0982261 chore(deps-dev): bump fast-xml-parser from 5.4.2 to 5.5.6
  • 49d121c chore: version packages (#10445)
  • 888224c fix(agents): propagate store and configurable to ToolNode middleware runtime ...
  • 82d56cb fix(langchain): after model send dispatch (#10444)
  • ff6822e fix(langchain): respect version:"v1" in afterModel router's pending tool call...
  • Additional commits viewable in compare view

Updates modal from 0.7.1 to 0.7.3

Changelog

Sourced from modal's changelog.

js/v0.7.3, go/v0.7.3

  • Migrated SDKs from github.com/modal-labs/libmodal to github.com/modal-labs/modal-client.

modal-js/v0.7.2, modal-go/v0.7.2

  • Updated Sandbox methods to wait for newly created sandboxes to be ready and not error immediately when it's not avaliable yet.
  • Fixed a bug in modal-js so that canceling sandbox.stdout or sandbox.stderr cleans up background resources.
  • Updated Sandbox (JS) to raise a better error when the sandbox was terminated.
Commits
Attestation changes

This version has no provenance attestation, while the previous version (0.7.1) was attested. Review the package versions before updating.


Updates langsmith from 0.5.7 to 0.5.13

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

🔄 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/367 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 3/25/2026 **Status:** ✅ Merged **Merged:** 3/25/2026 **Merged by:** [@christian-bromann](https://github.com/christian-bromann) **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/patch-deps-updates-main-e1c8534c10` --- ### 📝 Commits (1) - [`b5800f6`](https://github.com/langchain-ai/deepagentsjs/commit/b5800f68b9bdcb7a73af9e78009751581faab3c4) build(deps): bump the patch-deps-updates-main group with 10 updates ### 📊 Changes **3 files changed** (+317 additions, -365 deletions) <details> <summary>View changed files</summary> 📝 `libs/deepagents/package.json` (+1 -1) 📝 `libs/providers/quickjs/package.json` (+1 -1) 📝 `pnpm-lock.yaml` (+315 -363) </details> ### 📄 Description Bumps the patch-deps-updates-main group with 10 updates: | Package | From | To | | --- | --- | --- | | [@eslint/eslintrc](https://github.com/eslint/eslintrc) | `3.3.3` | `3.3.5` | | [@langchain/core](https://github.com/langchain-ai/langchainjs) | `1.1.33` | `1.1.36` | | [@langchain/langgraph](https://github.com/langchain-ai/langgraphjs/tree/HEAD/libs/langgraph-core) | `1.2.3` | `1.2.5` | | [@langchain/langgraph-checkpoint](https://github.com/langchain-ai/langgraphjs/tree/HEAD/libs/checkpoint) | `1.0.0` | `1.0.1` | | [tsdown](https://github.com/rolldown/tsdown) | `0.21.4` | `0.21.5` | | [langchain](https://github.com/langchain-ai/langchainjs) | `1.2.34` | `1.2.37` | | [yaml](https://github.com/eemeli/yaml) | `2.8.2` | `2.8.3` | | [@langchain/anthropic](https://github.com/langchain-ai/langchainjs) | `1.3.18` | `1.3.25` | | [modal](https://github.com/modal-labs/modal-client) | `0.7.1` | `0.7.3` | | [langsmith](https://github.com/langchain-ai/langsmith-sdk) | `0.5.7` | `0.5.13` | Updates `@eslint/eslintrc` from 3.3.3 to 3.3.5 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/eslint/eslintrc/releases"><code>@​eslint/eslintrc</code>'s releases</a>.</em></p> <blockquote> <h2>eslintrc: v3.3.5</h2> <h2><a href="https://github.com/eslint/eslintrc/compare/eslintrc-v3.3.4...eslintrc-v3.3.5">3.3.5</a> (2026-03-04)</h2> <h3>Bug Fixes</h3> <ul> <li>update dependency minimatch to ^3.1.5 (<a href="https://redirect.github.com/eslint/eslintrc/issues/227">#227</a>) (<a href="https://github.com/eslint/eslintrc/commit/3dc2381e3e063f41e6b135650d05cdfe4045804e">3dc2381</a>)</li> </ul> <h2>eslintrc: v3.3.4</h2> <h2><a href="https://github.com/eslint/eslintrc/compare/eslintrc-v3.3.3...eslintrc-v3.3.4">3.3.4</a> (2026-02-22)</h2> <h3>Bug Fixes</h3> <ul> <li>update <code>ajv</code> to <code>6.14.0</code> to address security vulnerabilities (<a href="https://redirect.github.com/eslint/eslintrc/issues/221">#221</a>) (<a href="https://github.com/eslint/eslintrc/commit/9139140aece172fa4c11a466c493609be31cfa54">9139140</a>)</li> <li>update <code>minimatch</code> to <code>3.1.3</code> to address security vulnerabilities (<a href="https://redirect.github.com/eslint/eslintrc/issues/224">#224</a>) (<a href="https://github.com/eslint/eslintrc/commit/30339d036361c13362d5a38191bb2388ad56bb6f">30339d0</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/eslint/eslintrc/blob/main/CHANGELOG.md"><code>@​eslint/eslintrc</code>'s changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/eslint/eslintrc/compare/eslintrc-v3.3.4...eslintrc-v3.3.5">3.3.5</a> (2026-03-04)</h2> <h3>Bug Fixes</h3> <ul> <li>update dependency minimatch to ^3.1.5 (<a href="https://redirect.github.com/eslint/eslintrc/issues/227">#227</a>) (<a href="https://github.com/eslint/eslintrc/commit/3dc2381e3e063f41e6b135650d05cdfe4045804e">3dc2381</a>)</li> </ul> <h2><a href="https://github.com/eslint/eslintrc/compare/eslintrc-v3.3.3...eslintrc-v3.3.4">3.3.4</a> (2026-02-22)</h2> <h3>Bug Fixes</h3> <ul> <li>update <code>ajv</code> to <code>6.14.0</code> to address security vulnerabilities (<a href="https://redirect.github.com/eslint/eslintrc/issues/221">#221</a>) (<a href="https://github.com/eslint/eslintrc/commit/9139140aece172fa4c11a466c493609be31cfa54">9139140</a>)</li> <li>update <code>minimatch</code> to <code>3.1.3</code> to address security vulnerabilities (<a href="https://redirect.github.com/eslint/eslintrc/issues/224">#224</a>) (<a href="https://github.com/eslint/eslintrc/commit/30339d036361c13362d5a38191bb2388ad56bb6f">30339d0</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslintrc/commit/5135df1a5388ebb2e340a631c69f0d3ce9f2432f"><code>5135df1</code></a> chore: release 3.3.5 🚀 (<a href="https://redirect.github.com/eslint/eslintrc/issues/228">#228</a>)</li> <li><a href="https://github.com/eslint/eslintrc/commit/c109d69371e8544823637b708a16735e9136536c"><code>c109d69</code></a> docs: Update README sponsors</li> <li><a href="https://github.com/eslint/eslintrc/commit/3dc2381e3e063f41e6b135650d05cdfe4045804e"><code>3dc2381</code></a> fix: update dependency minimatch to ^3.1.5 (<a href="https://redirect.github.com/eslint/eslintrc/issues/227">#227</a>)</li> <li><a href="https://github.com/eslint/eslintrc/commit/81385b67f04cac42ab068dc78e3ee1ce6668ef5c"><code>81385b6</code></a> ci: pin Node.js 25.6.1 (<a href="https://redirect.github.com/eslint/eslintrc/issues/226">#226</a>)</li> <li><a href="https://github.com/eslint/eslintrc/commit/4c45e24751db5eb5da5507e2d9daee7d14d53b55"><code>4c45e24</code></a> chore: release 3.3.4 🚀 (<a href="https://redirect.github.com/eslint/eslintrc/issues/223">#223</a>)</li> <li><a href="https://github.com/eslint/eslintrc/commit/30339d036361c13362d5a38191bb2388ad56bb6f"><code>30339d0</code></a> fix: update <code>minimatch</code> to <code>3.1.3</code> to address security vulnerabilities (<a href="https://redirect.github.com/eslint/eslintrc/issues/224">#224</a>)</li> <li><a href="https://github.com/eslint/eslintrc/commit/9139140aece172fa4c11a466c493609be31cfa54"><code>9139140</code></a> fix: update <code>ajv</code> to <code>6.14.0</code> to address security vulnerabilities (<a href="https://redirect.github.com/eslint/eslintrc/issues/221">#221</a>)</li> <li><a href="https://github.com/eslint/eslintrc/commit/245ada592eef13bb457f30ecd8b5cb9cfb4da0a9"><code>245ada5</code></a> docs: Update README sponsors</li> <li><a href="https://github.com/eslint/eslintrc/commit/78b1a0ecec3f88d780b31418da61f57232cf83dc"><code>78b1a0e</code></a> docs: Update README sponsors</li> <li><a href="https://github.com/eslint/eslintrc/commit/df32fff115e0666077787def434a200f2aa5f8f7"><code>df32fff</code></a> docs: Update README sponsors</li> <li>Additional commits viewable in <a href="https://github.com/eslint/eslintrc/compare/eslintrc-v3.3.3...eslintrc-v3.3.5">compare view</a></li> </ul> </details> <br /> Updates `@langchain/core` from 1.1.33 to 1.1.36 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/langchain-ai/langchainjs/releases"><code>@​langchain/core</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​langchain/core</code><a href="https://github.com/1"><code>@​1</code></a>.1.36</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/10512">#10512</a> <a href="https://github.com/langchain-ai/langchainjs/commit/bbbfea185c0777ae06df2b24a1a84f941d499c2a"><code>bbbfea1</code></a> Thanks <a href="https://github.com/hntrl"><code>@​hntrl</code></a>! - fix(core): fix streaming chunk merge for providers without <code>index</code> on tool call deltas</p> <p><code>_mergeLists</code> now falls back to <code>id</code>-based matching when items don't have an <code>index</code> field. Previously, providers routing through the OpenAI-compatible API without <code>index</code> on streaming tool call deltas (e.g. Anthropic models via <code>ChatOpenAI</code>) would accumulate hundreds of individual raw deltas in <code>tool_call_chunks</code> and <code>additional_kwargs.tool_calls</code> instead of merging them into a single entry per tool call. In a real trace with 3 concurrent subagents, this caused a single AI message to balloon from ~4KB to 146KB -- with 826 uncollapsed streaming fragments carrying a few bytes each.</p> <p>Also fixes <code>SystemMessage.concat()</code> which used <code>...this</code> to spread all instance properties (including <code>lc_kwargs</code>) into the new constructor, causing each chained <code>concat()</code> call to nest one level deeper. After 7 middleware <code>concat()</code> calls (typical in deepagents), a 7KB system prompt would serialize to 81KB due to content being duplicated at every nesting level.</p> </li> </ul> <h2><code>@​langchain/core</code><a href="https://github.com/1"><code>@​1</code></a>.1.35</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/10327">#10327</a> <a href="https://github.com/langchain-ai/langchainjs/commit/5dc11b55cccfe35e4dad910a33e904cf49b3088a"><code>5dc11b5</code></a> Thanks <a href="https://github.com/hntrl"><code>@​hntrl</code></a>! - fix(core): replace exported zod type references with structural duck-type interfaces to fix TypeScript OOM</p> <p>Replaces all exported Zod type references (<code>z3.ZodType</code>, <code>z4.$ZodType</code>, etc.) in <code>@langchain/core</code>'s public API with minimal structural (&quot;duck-type&quot;) interfaces. This prevents TypeScript from performing expensive deep structural comparisons (~3,400+ lines of mutually recursive generics) when downstream packages resolve a different Zod version than <code>@langchain/core</code>, which was causing OOM crashes and unresponsive language servers in monorepo setups.</p> </li> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/10433">#10433</a> <a href="https://github.com/langchain-ai/langchainjs/commit/7af0b65d5ab9a173b528d6a821d269a79fbabdc6"><code>7af0b65</code></a> Thanks <a href="https://github.com/tanushree-sharma"><code>@​tanushree-sharma</code></a>! - feat: Add LangSmith integration metadata to createAgent and initChatModel</p> </li> </ul> <h2><code>@​langchain/core</code><a href="https://github.com/1"><code>@​1</code></a>.1.34</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/10312">#10312</a> <a href="https://github.com/langchain-ai/langchainjs/commit/bfb7944a105470eee98fe4a0eef91e586600e1de"><code>bfb7944</code></a> Thanks <a href="https://github.com/jacoblee93"><code>@​jacoblee93</code></a>! - feat(core): Add all invocation params as part of metadata</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/langchain-ai/langchainjs/commit/d2a0c2d5b5a23a60791d01c98874c53f555ed5d8"><code>d2a0c2d</code></a> chore: version packages (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10508">#10508</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/bbbfea185c0777ae06df2b24a1a84f941d499c2a"><code>bbbfea1</code></a> fix(core): fix _mergeLists id-only fallback and SystemMessage.concat lc_kwarg...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/478652c01cdae0703415febd250b6c2656b36410"><code>478652c</code></a> fix(openai): detect DeepSeek context overflow errors as ContextOverfl… (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10481">#10481</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/3d35eb112b46b36aea80cebe0147e315d03a1d8e"><code>3d35eb1</code></a> fix(langchain): add &quot;aws&quot; alias to MODEL_PROVIDER_CONFIG for Bedrock hub prom...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/52e501b44ee54ace1889ec9149a3617c4409db51"><code>52e501b</code></a> fix(openai): guard JSON.parse in streaming json_schema when text is empty (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/1">#1</a>...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/ae4122f9523904423504e5a92c134c625977261d"><code>ae4122f</code></a> Align Zod Importation For 'libs/langchain/src/agents/nodes/utils.ts' (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10258">#10258</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/443253bd5336597d3619f2e21a8d5a814202997e"><code>443253b</code></a> chore: version packages (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10469">#10469</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/005d4a15222b636702fe8d04fc4ea2d8b84d9b06"><code>005d4a1</code></a> chore(deps-dev): bump fast-xml-parser from 5.5.6 to 5.5.7 (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10473">#10473</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/63b72689a1f245037aaa7d910ea4b881ead84856"><code>63b7268</code></a> fix(<code>@​langchain/google</code>) Duplicate function call (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10493">#10493</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/75e9d56926988dc355c9e5cf63af05a4b378cdf2"><code>75e9d56</code></a> fix: support structured output (providerStrategy) for Google Gemini models in...</li> <li>Additional commits viewable in <a href="https://github.com/langchain-ai/langchainjs/compare/@langchain/core@1.1.33...@langchain/core@1.1.36">compare view</a></li> </ul> </details> <br /> Updates `@langchain/langgraph` from 1.2.3 to 1.2.5 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/langchain-ai/langgraphjs/releases"><code>@​langchain/langgraph</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​langchain/langgraph</code><a href="https://github.com/1"><code>@​1</code></a>.2.5</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/langchain-ai/langgraphjs/pull/2213">#2213</a> <a href="https://github.com/langchain-ai/langgraphjs/commit/a09932a203062d52e98e6dc5fd80ab572b123700"><code>a09932a</code></a> Thanks <a href="https://github.com/hntrl"><code>@​hntrl</code></a>! - fix(core): prevent AbortSignal listener leak in stream() and streamEvents()</p> <p><code>Pregel.stream()</code> and <code>streamEvents()</code> called <code>combineAbortSignals()</code> but discarded the <code>dispose</code> function, leaking one abort listener on the caller's signal per invocation. Over many invocations this caused unbounded memory growth as each leaked listener retained references to its associated graph execution state.</p> <ul> <li>Use <code>AbortSignal.any()</code> on Node 20+ which handles listener lifecycle automatically via GC</li> <li>Fall back to manual listener management on Node 18, with proper <code>dispose()</code> called when the stream completes or is cancelled</li> </ul> </li> <li> <p><a href="https://redirect.github.com/langchain-ai/langgraphjs/pull/2210">#2210</a> <a href="https://github.com/langchain-ai/langgraphjs/commit/4d2e9483208e105b7c45ab1cbc8ac8d540fbb23d"><code>4d2e948</code></a> Thanks <a href="https://github.com/jackjin1997"><code>@​jackjin1997</code></a>! - Fix <code>AnyValue.update()</code> returning <code>false</code> instead of <code>true</code> when values are received, aligning with all other channel implementations.</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/langchain-ai/langgraphjs/commit/414a7adf908ba4f7ffef4985df3a95f14202591b"><code>414a7ad</code></a>]:</p> <ul> <li><code>@​langchain/langgraph-sdk</code><a href="https://github.com/1"><code>@​1</code></a>.8.0</li> </ul> </li> </ul> <h2><code>@​langchain/langgraph</code><a href="https://github.com/1"><code>@​1</code></a>.2.4</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://github.com/langchain-ai/langgraphjs/commit/fe4dd5b85d285f78b6d499b1f1013927931ea634"><code>fe4dd5b</code></a> Thanks <a href="https://github.com/christian-bromann"><code>@​christian-bromann</code></a>! - fix(sdk): fetch subagent history</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/langchain-ai/langgraphjs/commit/fe4dd5b85d285f78b6d499b1f1013927931ea634"><code>fe4dd5b</code></a>, <a href="https://github.com/langchain-ai/langgraphjs/commit/fe4dd5b85d285f78b6d499b1f1013927931ea634"><code>fe4dd5b</code></a>, <a href="https://github.com/langchain-ai/langgraphjs/commit/fe4dd5b85d285f78b6d499b1f1013927931ea634"><code>fe4dd5b</code></a>]:</p> <ul> <li><code>@​langchain/langgraph-sdk</code><a href="https://github.com/1"><code>@​1</code></a>.7.5</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/langchain-ai/langgraphjs/blob/main/libs/langgraph-core/CHANGELOG.md"><code>@​langchain/langgraph</code>'s changelog</a>.</em></p> <blockquote> <h2>1.2.5</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/langchain-ai/langgraphjs/pull/2213">#2213</a> <a href="https://github.com/langchain-ai/langgraphjs/commit/a09932a203062d52e98e6dc5fd80ab572b123700"><code>a09932a</code></a> Thanks <a href="https://github.com/hntrl"><code>@​hntrl</code></a>! - fix(core): prevent AbortSignal listener leak in stream() and streamEvents()</p> <p><code>Pregel.stream()</code> and <code>streamEvents()</code> called <code>combineAbortSignals()</code> but discarded the <code>dispose</code> function, leaking one abort listener on the caller's signal per invocation. Over many invocations this caused unbounded memory growth as each leaked listener retained references to its associated graph execution state.</p> <ul> <li>Use <code>AbortSignal.any()</code> on Node 20+ which handles listener lifecycle automatically via GC</li> <li>Fall back to manual listener management on Node 18, with proper <code>dispose()</code> called when the stream completes or is cancelled</li> </ul> </li> <li> <p><a href="https://redirect.github.com/langchain-ai/langgraphjs/pull/2210">#2210</a> <a href="https://github.com/langchain-ai/langgraphjs/commit/4d2e9483208e105b7c45ab1cbc8ac8d540fbb23d"><code>4d2e948</code></a> Thanks <a href="https://github.com/jackjin1997"><code>@​jackjin1997</code></a>! - Fix <code>AnyValue.update()</code> returning <code>false</code> instead of <code>true</code> when values are received, aligning with all other channel implementations.</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/langchain-ai/langgraphjs/commit/414a7adf908ba4f7ffef4985df3a95f14202591b"><code>414a7ad</code></a>]:</p> <ul> <li><code>@​langchain/langgraph-sdk</code><a href="https://github.com/1"><code>@​1</code></a>.8.0</li> </ul> </li> </ul> <h2>1.2.4</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://github.com/langchain-ai/langgraphjs/commit/fe4dd5b85d285f78b6d499b1f1013927931ea634"><code>fe4dd5b</code></a> Thanks <a href="https://github.com/christian-bromann"><code>@​christian-bromann</code></a>! - fix(sdk): fetch subagent history</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/langchain-ai/langgraphjs/commit/fe4dd5b85d285f78b6d499b1f1013927931ea634"><code>fe4dd5b</code></a>, <a href="https://github.com/langchain-ai/langgraphjs/commit/fe4dd5b85d285f78b6d499b1f1013927931ea634"><code>fe4dd5b</code></a>, <a href="https://github.com/langchain-ai/langgraphjs/commit/fe4dd5b85d285f78b6d499b1f1013927931ea634"><code>fe4dd5b</code></a>]:</p> <ul> <li><code>@​langchain/langgraph-sdk</code><a href="https://github.com/1"><code>@​1</code></a>.7.5</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/langchain-ai/langgraphjs/commit/d4456c06f42572ca6885f91fa5b1f0dbc8052385"><code>d4456c0</code></a> chore: version packages (<a href="https://github.com/langchain-ai/langgraphjs/tree/HEAD/libs/langgraph-core/issues/2232">#2232</a>)</li> <li><a href="https://github.com/langchain-ai/langgraphjs/commit/a09932a203062d52e98e6dc5fd80ab572b123700"><code>a09932a</code></a> fix(core): prevent AbortSignal listener leak in stream() and streamEvents() (...</li> <li><a href="https://github.com/langchain-ai/langgraphjs/commit/4d2e9483208e105b7c45ab1cbc8ac8d540fbb23d"><code>4d2e948</code></a> fix(langgraph-core): correct AnyValue channel update() return value (<a href="https://github.com/langchain-ai/langgraphjs/tree/HEAD/libs/langgraph-core/issues/2210">#2210</a>)</li> <li><a href="https://github.com/langchain-ai/langgraphjs/commit/c8185ddb4b466accbeaf118b7a41aff8866d3ad6"><code>c8185dd</code></a> chore: version packages (<a href="https://github.com/langchain-ai/langgraphjs/tree/HEAD/libs/langgraph-core/issues/2216">#2216</a>)</li> <li><a href="https://github.com/langchain-ai/langgraphjs/commit/fe4dd5b85d285f78b6d499b1f1013927931ea634"><code>fe4dd5b</code></a> Revert &quot;chore: version packages (<a href="https://github.com/langchain-ai/langgraphjs/tree/HEAD/libs/langgraph-core/issues/2203">#2203</a>)&quot;</li> <li><a href="https://github.com/langchain-ai/langgraphjs/commit/c75409d4618ed5d22fcbf117108ff3ff76f4a2ad"><code>c75409d</code></a> chore: version packages (<a href="https://github.com/langchain-ai/langgraphjs/tree/HEAD/libs/langgraph-core/issues/2203">#2203</a>)</li> <li><a href="https://github.com/langchain-ai/langgraphjs/commit/963db6fbc775649bd63f6abb74c9c90e3f455bd5"><code>963db6f</code></a> fix(sdk): fetch subagent history (<a href="https://github.com/langchain-ai/langgraphjs/tree/HEAD/libs/langgraph-core/issues/2191">#2191</a>)</li> <li>See full diff in <a href="https://github.com/langchain-ai/langgraphjs/commits/@langchain/langgraph@1.2.5/libs/langgraph-core">compare view</a></li> </ul> </details> <br /> Updates `@langchain/langgraph-checkpoint` from 1.0.0 to 1.0.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/langchain-ai/langgraphjs/releases"><code>@​langchain/langgraph-checkpoint</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​langchain/langgraph-checkpoint-sqlite</code><a href="https://github.com/1"><code>@​1</code></a>.0.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/langchain-ai/langgraphjs/pull/1902">#1902</a> <a href="https://github.com/langchain-ai/langgraphjs/commit/2378b9e951ff245a3e8a502acf42be55cce35a46"><code>2378b9e</code></a> Thanks <a href="https://github.com/warjiang"><code>@​warjiang</code></a>! - chore: upgrade better-sqlite</li> </ul> <h2><code>@​langchain/langgraph-checkpoint-postgres</code><a href="https://github.com/1"><code>@​1</code></a>.0.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/langchain-ai/langgraphjs/pull/1979">#1979</a> <a href="https://github.com/langchain-ai/langgraphjs/commit/d65f5a75e58e282fea831d8f126391823f241a78"><code>d65f5a7</code></a> Thanks <a href="https://github.com/Siretu"><code>@​Siretu</code></a>! - fix: quote PostgreSQL schema identifiers to support schemas with dashes</li> </ul> <h2><code>@​langchain/langgraph-checkpoint</code><a href="https://github.com/1"><code>@​1</code></a>.0.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/langchain-ai/langgraphjs/pull/2190">#2190</a> <a href="https://github.com/langchain-ai/langgraphjs/commit/b6cfe555bfb498fe24fa85847f0fe5d1194dfa39"><code>b6cfe55</code></a> Thanks <a href="https://github.com/colifran"><code>@​colifran</code></a>! - feat(langgraph): implement uint8array support for json plus serializer</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/langchain-ai/langgraphjs/blob/main/libs/checkpoint/CHANGELOG.md"><code>@​langchain/langgraph-checkpoint</code>'s changelog</a>.</em></p> <blockquote> <h2>1.0.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/langchain-ai/langgraphjs/pull/2190">#2190</a> <a href="https://github.com/langchain-ai/langgraphjs/commit/b6cfe555bfb498fe24fa85847f0fe5d1194dfa39"><code>b6cfe55</code></a> Thanks <a href="https://github.com/colifran"><code>@​colifran</code></a>! - feat(langgraph): implement uint8array support for json plus serializer</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/langchain-ai/langgraphjs/commits/@langchain/langgraph-checkpoint@1.0.1/libs/checkpoint">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for <code>@​langchain/langgraph-checkpoint</code> since your current version.</p> </details> <details> <summary>Install script changes</summary> <p>This version modifies <code>prepublish</code> script that runs during installation. Review the package contents before updating.</p> </details> <br /> Updates `tsdown` from 0.21.4 to 0.21.5 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rolldown/tsdown/releases">tsdown's releases</a>.</em></p> <blockquote> <h2>v0.21.5</h2> <h3>   🚀 Features</h3> <ul> <li>Update rolldown to 1.0.0-rc.10  -  by <a href="https://github.com/wChenonly"><code>@​wChenonly</code></a> in <a href="https://redirect.github.com/rolldown/tsdown/issues/845">rolldown/tsdown#845</a> <a href="https://github.com/rolldown/tsdown/commit/414113d"><!-- raw HTML omitted -->(41411)<!-- raw HTML omitted --></a></li> <li>Support typescript v6  -  by <a href="https://github.com/ocavue"><code>@​ocavue</code></a> in <a href="https://redirect.github.com/rolldown/tsdown/issues/858">rolldown/tsdown#858</a> <a href="https://github.com/rolldown/tsdown/commit/bffc416"><!-- raw HTML omitted -->(bffc4)<!-- raw HTML omitted --></a></li> </ul> <h3>   🐞 Bug Fixes</h3> <ul> <li><strong>css</strong>: <ul> <li>Run final minification on merged CSS output  -  by <a href="https://github.com/sxzz"><code>@​sxzz</code></a> in <a href="https://redirect.github.com/rolldown/tsdown/issues/853">rolldown/tsdown#853</a> <a href="https://github.com/rolldown/tsdown/commit/475df0c"><!-- raw HTML omitted -->(475df)<!-- raw HTML omitted --></a></li> <li>Don't override internal importer  -  by <a href="https://github.com/Laupetin"><code>@​Laupetin</code></a> in <a href="https://redirect.github.com/rolldown/tsdown/issues/860">rolldown/tsdown#860</a> <a href="https://github.com/rolldown/tsdown/commit/af40e43"><!-- raw HTML omitted -->(af40e)<!-- raw HTML omitted --></a></li> <li>Use aliased exports for CSS module keys  -  by <a href="https://github.com/wChenonly"><code>@​wChenonly</code></a> and <a href="https://github.com/sxzz"><code>@​sxzz</code></a> in <a href="https://redirect.github.com/rolldown/tsdown/issues/840">rolldown/tsdown#840</a> <a href="https://github.com/rolldown/tsdown/commit/bb6decb"><!-- raw HTML omitted -->(bb6de)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>deps</strong>: <ul> <li>External <code>optionalDependencies</code> by default  -  by <a href="https://github.com/sxzz"><code>@​sxzz</code></a> <a href="https://github.com/rolldown/tsdown/commit/cd24d3e"><!-- raw HTML omitted -->(cd24d)<!-- raw HTML omitted --></a></li> <li>Resolve subpath extensions for packages without exports field  -  by <a href="https://github.com/sxzz"><code>@​sxzz</code></a> in <a href="https://redirect.github.com/rolldown/tsdown/issues/863">rolldown/tsdown#863</a> <a href="https://github.com/rolldown/tsdown/commit/c51502b"><!-- raw HTML omitted -->(c5150)<!-- raw HTML omitted --></a></li> <li>Correctly resolve root <code>@types</code> packages for dts deep imports  -  by <a href="https://github.com/brc-dd"><code>@​brc-dd</code></a> and <a href="https://github.com/sxzz"><code>@​sxzz</code></a> in <a href="https://redirect.github.com/rolldown/tsdown/issues/852">rolldown/tsdown#852</a> <a href="https://github.com/rolldown/tsdown/commit/0b2767a"><!-- raw HTML omitted -->(0b276)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h5>    <a href="https://github.com/rolldown/tsdown/compare/v0.21.4...v0.21.5">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rolldown/tsdown/commit/f1457f415739eddc492c969cd4ca40ff44e08de0"><code>f1457f4</code></a> chore: release v0.21.5</li> <li><a href="https://github.com/rolldown/tsdown/commit/0b2767ac2e12a1222a701281406445ebdaab16e3"><code>0b2767a</code></a> fix(deps): correctly resolve root <code>@types</code> packages for dts deep imports (<a href="https://redirect.github.com/rolldown/tsdown/issues/852">#852</a>)</li> <li><a href="https://github.com/rolldown/tsdown/commit/a6b2e4ba1bf00e22582300e42c4fd9fdcc03d85d"><code>a6b2e4b</code></a> chore: upgrade deps</li> <li><a href="https://github.com/rolldown/tsdown/commit/8f8a0aa9f1a3bec7b44fed62927a5223d4937dbb"><code>8f8a0aa</code></a> docs: delete <code>rolldown-plugin-solid</code> (<a href="https://redirect.github.com/rolldown/tsdown/issues/862">#862</a>)</li> <li><a href="https://github.com/rolldown/tsdown/commit/c51502beb4d2bf482eb01c7e4611efad0ef6ac8c"><code>c51502b</code></a> fix(deps): resolve subpath extensions for packages without exports field (<a href="https://redirect.github.com/rolldown/tsdown/issues/863">#863</a>)</li> <li><a href="https://github.com/rolldown/tsdown/commit/bb6decb5f470dab33a0c1139f0c55ebadc818621"><code>bb6decb</code></a> fix(css): use aliased exports for CSS module keys (<a href="https://redirect.github.com/rolldown/tsdown/issues/840">#840</a>)</li> <li><a href="https://github.com/rolldown/tsdown/commit/af40e4368040003058aa937e90e05e684c9638c5"><code>af40e43</code></a> fix(css): don't override internal importer (<a href="https://redirect.github.com/rolldown/tsdown/issues/860">#860</a>)</li> <li><a href="https://github.com/rolldown/tsdown/commit/fd967d250f371cc8a06bddcd602555e77093ff20"><code>fd967d2</code></a> chore: upgrade deps</li> <li><a href="https://github.com/rolldown/tsdown/commit/2f1448c6db7ee52e0dda05c9df7f3a33e9ff02da"><code>2f1448c</code></a> chore(deps): update all non-major dependencies (<a href="https://redirect.github.com/rolldown/tsdown/issues/855">#855</a>)</li> <li><a href="https://github.com/rolldown/tsdown/commit/bffc416af3d0d4aac216d5b00671e7b1d59181ae"><code>bffc416</code></a> feat: support typescript v6 (<a href="https://redirect.github.com/rolldown/tsdown/issues/858">#858</a>)</li> <li>Additional commits viewable in <a href="https://github.com/rolldown/tsdown/compare/v0.21.4...v0.21.5">compare view</a></li> </ul> </details> <br /> Updates `langchain` from 1.2.34 to 1.2.37 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/langchain-ai/langchainjs/releases">langchain's releases</a>.</em></p> <blockquote> <h2>langchain@1.2.37</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/10475">#10475</a> <a href="https://github.com/langchain-ai/langchainjs/commit/3d35eb112b46b36aea80cebe0147e315d03a1d8e"><code>3d35eb1</code></a> Thanks <a href="https://github.com/hntrl"><code>@​hntrl</code></a>! - fix(langchain): add &quot;aws&quot; alias to MODEL_PROVIDER_CONFIG so hub/node auto-detects ChatBedrockConverse from Python-serialized prompts</p> </li> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/10258">#10258</a> <a href="https://github.com/langchain-ai/langchainjs/commit/ae4122f9523904423504e5a92c134c625977261d"><code>ae4122f</code></a> Thanks <a href="https://github.com/irfiacre"><code>@​irfiacre</code></a>! - Align Zod Importation For 'libs/langchain/src/agents/nodes/utils.ts'</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/langchain-ai/langchainjs/commit/bbbfea185c0777ae06df2b24a1a84f941d499c2a"><code>bbbfea1</code></a>]:</p> <ul> <li><code>@​langchain/core</code><a href="https://github.com/1"><code>@​1</code></a>.1.36</li> </ul> </li> </ul> <h2>langchain@1.2.36</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/10489">#10489</a> <a href="https://github.com/langchain-ai/langchainjs/commit/21094f31d99e30a9c8433072523cb08b8539c1ab"><code>21094f3</code></a> Thanks <a href="https://github.com/maahir30"><code>@​maahir30</code></a>! - support structured output (providerStrategy) for Google Gemini models in createAgent</p> </li> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/10433">#10433</a> <a href="https://github.com/langchain-ai/langchainjs/commit/7af0b65d5ab9a173b528d6a821d269a79fbabdc6"><code>7af0b65</code></a> Thanks <a href="https://github.com/tanushree-sharma"><code>@​tanushree-sharma</code></a>! - feat: Add LangSmith integration metadata to createAgent and initChatModel</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/langchain-ai/langchainjs/commit/5dc11b55cccfe35e4dad910a33e904cf49b3088a"><code>5dc11b5</code></a>, <a href="https://github.com/langchain-ai/langchainjs/commit/7af0b65d5ab9a173b528d6a821d269a79fbabdc6"><code>7af0b65</code></a>]:</p> <ul> <li><code>@​langchain/core</code><a href="https://github.com/1"><code>@​1</code></a>.1.35</li> </ul> </li> </ul> <h2>langchain@1.2.35</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/10466">#10466</a> <a href="https://github.com/langchain-ai/langchainjs/commit/4b1a874a93d8475a98421e157fe7a1e65ec94076"><code>4b1a874</code></a> Thanks <a href="https://github.com/hntrl"><code>@​hntrl</code></a>! - fix: renamed getSubgraphAsync -&gt; getSubgraphsAsync</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/langchain-ai/langchainjs/commit/bfb7944a105470eee98fe4a0eef91e586600e1de"><code>bfb7944</code></a>]:</p> <ul> <li><code>@​langchain/core</code><a href="https://github.com/1"><code>@​1</code></a>.1.34</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/langchain-ai/langchainjs/commit/d2a0c2d5b5a23a60791d01c98874c53f555ed5d8"><code>d2a0c2d</code></a> chore: version packages (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10508">#10508</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/bbbfea185c0777ae06df2b24a1a84f941d499c2a"><code>bbbfea1</code></a> fix(core): fix _mergeLists id-only fallback and SystemMessage.concat lc_kwarg...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/478652c01cdae0703415febd250b6c2656b36410"><code>478652c</code></a> fix(openai): detect DeepSeek context overflow errors as ContextOverfl… (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10481">#10481</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/3d35eb112b46b36aea80cebe0147e315d03a1d8e"><code>3d35eb1</code></a> fix(langchain): add &quot;aws&quot; alias to MODEL_PROVIDER_CONFIG for Bedrock hub prom...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/52e501b44ee54ace1889ec9149a3617c4409db51"><code>52e501b</code></a> fix(openai): guard JSON.parse in streaming json_schema when text is empty (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/1">#1</a>...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/ae4122f9523904423504e5a92c134c625977261d"><code>ae4122f</code></a> Align Zod Importation For 'libs/langchain/src/agents/nodes/utils.ts' (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10258">#10258</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/443253bd5336597d3619f2e21a8d5a814202997e"><code>443253b</code></a> chore: version packages (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10469">#10469</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/005d4a15222b636702fe8d04fc4ea2d8b84d9b06"><code>005d4a1</code></a> chore(deps-dev): bump fast-xml-parser from 5.5.6 to 5.5.7 (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10473">#10473</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/63b72689a1f245037aaa7d910ea4b881ead84856"><code>63b7268</code></a> fix(<code>@​langchain/google</code>) Duplicate function call (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10493">#10493</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/75e9d56926988dc355c9e5cf63af05a4b378cdf2"><code>75e9d56</code></a> fix: support structured output (providerStrategy) for Google Gemini models in...</li> <li>Additional commits viewable in <a href="https://github.com/langchain-ai/langchainjs/compare/langchain@1.2.34...langchain@1.2.37">compare view</a></li> </ul> </details> <br /> Updates `yaml` from 2.8.2 to 2.8.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/eemeli/yaml/releases">yaml's releases</a>.</em></p> <blockquote> <h2>v2.8.3</h2> <ul> <li>Add <code>trailingComma</code> ToString option for multiline flow formatting (<a href="https://redirect.github.com/eemeli/yaml/issues/670">#670</a>)</li> <li>Catch stack overflow during node composition (1e84ebb)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eemeli/yaml/commit/ce14587484822bffb0f7d31aefedcaf2dc0d0387"><code>ce14587</code></a> 2.8.3</li> <li><a href="https://github.com/eemeli/yaml/commit/1e84ebbea7ec35011a4c61bbb820a529ee4f359b"><code>1e84ebb</code></a> fix: Catch stack overflow during node composition</li> <li><a href="https://github.com/eemeli/yaml/commit/6b24090280eaaab5040112bba41ccef57f39c2d5"><code>6b24090</code></a> ci: Include Prettier check in lint action</li> <li><a href="https://github.com/eemeli/yaml/commit/9424dee38c85163fad53ac27533c7c4bdaf7495d"><code>9424dee</code></a> chore: Refresh lockfile</li> <li><a href="https://github.com/eemeli/yaml/commit/d1aca82bc15a4c261bdc58561d32189a5d3a45ef"><code>d1aca82</code></a> Add trailingComma ToString option for multiline flow formatting (<a href="https://redirect.github.com/eemeli/yaml/issues/670">#670</a>)</li> <li><a href="https://github.com/eemeli/yaml/commit/43215099f7fcdac422d778c15e70d83c691b0e41"><code>4321509</code></a> ci: Drop the branch filter from GitHub PR actions</li> <li><a href="https://github.com/eemeli/yaml/commit/47207d0fc7d4f863cd5fbdcff1378637bd93e847"><code>47207d0</code></a> chore: Update docs-slate</li> <li><a href="https://github.com/eemeli/yaml/commit/5212faeed5936d1fa291d2f28672e4a96e2c2c5d"><code>5212fae</code></a> chore: Update docs-slate</li> <li>See full diff in <a href="https://github.com/eemeli/yaml/compare/v2.8.2...v2.8.3">compare view</a></li> </ul> </details> <br /> Updates `@langchain/anthropic` from 1.3.18 to 1.3.25 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/langchain-ai/langchainjs/releases"><code>@​langchain/anthropic</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​langchain/anthropic</code><a href="https://github.com/1"><code>@​1</code></a>.3.25</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/10467">#10467</a> <a href="https://github.com/langchain-ai/langchainjs/commit/da85f31688e708340a711fd43cf293b5cb69c133"><code>da85f31</code></a> Thanks <a href="https://github.com/hntrl"><code>@​hntrl</code></a>! - fix: add default max tokens for sonnet</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/langchain-ai/langchainjs/commit/bfb7944a105470eee98fe4a0eef91e586600e1de"><code>bfb7944</code></a>]:</p> <ul> <li><code>@​langchain/core</code><a href="https://github.com/1"><code>@​1</code></a>.1.34</li> </ul> </li> </ul> <h2><code>@​langchain/anthropic</code><a href="https://github.com/1"><code>@​1</code></a>.3.24</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/10420">#10420</a> <a href="https://github.com/langchain-ai/langchainjs/commit/08657f21b330ee05b86a8abd557aef3939f5581b"><code>08657f2</code></a> Thanks <a href="https://github.com/pawel-twardziak"><code>@​pawel-twardziak</code></a>! - Fix temperature/topK/topP handling: guard all three so undefined values are not set on the request object, and fix broken topK/topP validation when thinking is enabled.</li> <li>Updated dependencies [<a href="https://github.com/langchain-ai/langchainjs/commit/6db417b03ecb5e2ace413389d982294e0ac88433"><code>6db417b</code></a>, <a href="https://github.com/langchain-ai/langchainjs/commit/d69dfcca97503cf1c0b7e70ccf5fb7d507c60982"><code>d69dfcc</code></a>]: <ul> <li><code>@​langchain/core</code><a href="https://github.com/1"><code>@​1</code></a>.1.33</li> </ul> </li> </ul> <h2><code>@​langchain/anthropic</code><a href="https://github.com/1"><code>@​1</code></a>.3.23</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/10250">#10250</a> <a href="https://github.com/langchain-ai/langchainjs/commit/8252619b727bfcc37a3f01921edf3550d50949f6"><code>8252619</code></a> Thanks <a href="https://github.com/JadenKim-dev"><code>@​JadenKim-dev</code></a>! - fix(anthropic): prevent cache token double-counting in streaming</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/langchain-ai/langchainjs/commit/26488b596f01b7b7fe2f1d97d07164e52365ade5"><code>26488b5</code></a>, <a href="https://github.com/langchain-ai/langchainjs/commit/ca826f6fecae6087bf0dee7781ee80b587396ec1"><code>ca826f6</code></a>, <a href="https://github.com/langchain-ai/langchainjs/commit/a602c42db75d7e7e01cab38b12e0b65b9c0cce95"><code>a602c42</code></a>, <a href="https://github.com/langchain-ai/langchainjs/commit/db7d017f7ce13cb937147aabcbfa3847d80bde9d"><code>db7d017</code></a>]:</p> <ul> <li><code>@​langchain/core</code><a href="https://github.com/1"><code>@​1</code></a>.1.32</li> </ul> </li> </ul> <h2><code>@​langchain/anthropic</code><a href="https://github.com/1"><code>@​1</code></a>.3.22</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/10207">#10207</a> <a href="https://github.com/langchain-ai/langchainjs/commit/acab2f75d6661b17b5f5f5eceb113427f7d32036"><code>acab2f7</code></a> Thanks <a href="https://github.com/colifran"><code>@​colifran</code></a>! - feat(anthropic): implement standard schema support for structured output</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/langchain-ai/langchainjs/commit/96c630dfd009f2546d5bc36f5067ff868bb4067f"><code>96c630d</code></a>, <a href="https://github.com/langchain-ai/langchainjs/commit/a8b9ccca5a85984a5a30008acd09f9991e591638"><code>a8b9ccc</code></a>, <a href="https://github.com/langchain-ai/langchainjs/commit/a1f22bba907731a18dca23c31cec5333444a3f55"><code>a1f22bb</code></a>]:</p> <ul> <li><code>@​langchain/core</code><a href="https://github.com/1"><code>@​1</code></a>.1.30</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/langchain-ai/langchainjs/commit/bfb3aadf1757846a8b8282b9caa11781dbc0f10a"><code>bfb3aad</code></a> chore: version packages (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10465">#10465</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/da85f31688e708340a711fd43cf293b5cb69c133"><code>da85f31</code></a> fix(anthropic): add default max tokens for sonnet (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10467">#10467</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/f4356d309cc0018267ebed21bd4f46afe20158c9"><code>f4356d3</code></a> chore(deps-dev): bump fast-xml-parser from 5.4.2 to 5.5.6 (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10449">#10449</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/4b1a874a93d8475a98421e157fe7a1e65ec94076"><code>4b1a874</code></a> fix(langchain): plurals r hard (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10466">#10466</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/bfb7944a105470eee98fe4a0eef91e586600e1de"><code>bfb7944</code></a> feat(core): Add all chat model/llm invocation params to metadata (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10312">#10312</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/0982261e6ecda6021fb383f46367988451c80af8"><code>0982261</code></a> chore(deps-dev): bump fast-xml-parser from 5.4.2 to 5.5.6</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/49d121c44f296c96e786a635162c6b8b4784dd17"><code>49d121c</code></a> chore: version packages (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10445">#10445</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/888224c64e4c95935836a5089f8b28a8c90da5e6"><code>888224c</code></a> fix(agents): propagate store and configurable to ToolNode middleware runtime ...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/82d56cbdfb59b48b3f8d98a294e4d4720e12c733"><code>82d56cb</code></a> fix(langchain): after model send dispatch (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10444">#10444</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/ff6822e43c38c4328d3f2c0ef1cf67998741339a"><code>ff6822e</code></a> fix(langchain): respect version:&quot;v1&quot; in afterModel router's pending tool call...</li> <li>Additional commits viewable in <a href="https://github.com/langchain-ai/langchainjs/compare/@langchain/anthropic@1.3.18...@langchain/anthropic@1.3.25">compare view</a></li> </ul> </details> <br /> Updates `modal` from 0.7.1 to 0.7.3 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/modal-labs/modal-client/blob/main/CHANGELOG_GO_JS.md">modal's changelog</a>.</em></p> <blockquote> <h2>js/v0.7.3, go/v0.7.3</h2> <ul> <li>Migrated SDKs from <code>github.com/modal-labs/libmodal</code> to <code>github.com/modal-labs/modal-client</code>.</li> </ul> <h2>modal-js/v0.7.2, modal-go/v0.7.2</h2> <ul> <li>Updated <code>Sandbox</code> methods to wait for newly created sandboxes to be ready and not error immediately when it's not avaliable yet.</li> <li>Fixed a bug in <code>modal-js</code> so that canceling <code>sandbox.stdout</code> or <code>sandbox.stderr</code> cleans up background resources.</li> <li>Updated <code>Sandbox</code> (JS) to raise a better error when the sandbox was terminated.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/modal-labs/modal-client/commits/go/v0.7.3">compare view</a></li> </ul> </details> <details> <summary>Attestation changes</summary> <p>This version has no provenance attestation, while the previous version (0.7.1) was attested. Review the <a href="https://www.npmjs.com/package/modal?activeTab=versions">package versions</a> before updating.</p> </details> <br /> Updates `langsmith` from 0.5.7 to 0.5.13 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/langchain-ai/langsmith-sdk/commits">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> --- <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:56 -04:00
yindo closed this issue 2026-06-05 17:22:56 -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#399