[PR #338] [MERGED] build(deps): bump the patch-deps-updates-main group with 9 updates #371

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

📋 Pull Request Information

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

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


📝 Commits (1)

  • 0df9141 build(deps): bump the patch-deps-updates-main group with 9 updates

📊 Changes

3 files changed (+219 additions, -217 deletions)

View changed files

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

📄 Description

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

Package From To
@eslint/eslintrc 3.3.3 3.3.5
@langchain/core 1.1.33 1.1.35
@langchain/langgraph 1.2.3 1.2.5
@langchain/langgraph-checkpoint 1.0.0 1.0.1
langchain 1.2.34 1.2.36
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.12

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.35

Release notes

Sourced from @​langchain/core's releases.

@​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
  • 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...
  • 21094f3 Create nasty-cars-fold.md
  • ab11688 format
  • b741848 add google response schema to invokation params
  • 0c14206 fix: patch 30+ Dependabot security alerts (critical/high/medium) (#10488)
  • ec2b0b5 structured output via model profiles
  • 5dc11b5 fix(core): replace exported zod type references with structural interfaces to...
  • 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 langchain from 1.2.34 to 1.2.36

Release notes

Sourced from langchain's releases.

langchain@1.2.36

Patch Changes

langchain@1.2.35

Patch Changes

Commits
  • 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...
  • 21094f3 Create nasty-cars-fold.md
  • ab11688 format
  • b741848 add google response schema to invokation params
  • 0c14206 fix: patch 30+ Dependabot security alerts (critical/high/medium) (#10488)
  • ec2b0b5 structured output via model profiles
  • 5dc11b5 fix(core): replace exported zod type references with structural interfaces to...
  • 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.12

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/338 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 3/23/2026 **Status:** ✅ Merged **Merged:** 3/23/2026 **Merged by:** [@christian-bromann](https://github.com/christian-bromann) **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/patch-deps-updates-main-b8cfaf84f6` --- ### 📝 Commits (1) - [`0df9141`](https://github.com/langchain-ai/deepagentsjs/commit/0df91419d25be8a6c630ebcd648baaaf3ae0ce6e) build(deps): bump the patch-deps-updates-main group with 9 updates ### 📊 Changes **3 files changed** (+219 additions, -217 deletions) <details> <summary>View changed files</summary> 📝 `libs/deepagents/package.json` (+1 -1) 📝 `libs/providers/quickjs/package.json` (+1 -1) 📝 `pnpm-lock.yaml` (+217 -215) </details> ### 📄 Description Bumps the patch-deps-updates-main group with 9 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.35` | | [@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` | | [langchain](https://github.com/langchain-ai/langchainjs) | `1.2.34` | `1.2.36` | | [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.12` | 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.35 <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.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/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><a href="https://github.com/langchain-ai/langchainjs/commit/21094f31d99e30a9c8433072523cb08b8539c1ab"><code>21094f3</code></a> Create nasty-cars-fold.md</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/ab11688f4e3cf53cc6bb9202a595f5f953277764"><code>ab11688</code></a> format</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/b741848a2ce02e82b6acaa15ce40b90f569b0660"><code>b741848</code></a> add google response schema to invokation params</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/0c1420631df8b9823435f6d7bd518f34fd51bafb"><code>0c14206</code></a> fix: patch 30+ Dependabot security alerts (critical/high/medium) (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10488">#10488</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/ec2b0b5cb0a14038019ec88ec457fd7aa77bf3ed"><code>ec2b0b5</code></a> structured output via model profiles</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/5dc11b55cccfe35e4dad910a33e904cf49b3088a"><code>5dc11b5</code></a> fix(core): replace exported zod type references with structural interfaces to...</li> <li>Additional commits viewable in <a href="https://github.com/langchain-ai/langchainjs/compare/@langchain/core@1.1.33...@langchain/core@1.1.35">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 `langchain` from 1.2.34 to 1.2.36 <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.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/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><a href="https://github.com/langchain-ai/langchainjs/commit/21094f31d99e30a9c8433072523cb08b8539c1ab"><code>21094f3</code></a> Create nasty-cars-fold.md</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/ab11688f4e3cf53cc6bb9202a595f5f953277764"><code>ab11688</code></a> format</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/b741848a2ce02e82b6acaa15ce40b90f569b0660"><code>b741848</code></a> add google response schema to invokation params</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/0c1420631df8b9823435f6d7bd518f34fd51bafb"><code>0c14206</code></a> fix: patch 30+ Dependabot security alerts (critical/high/medium) (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/10488">#10488</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/ec2b0b5cb0a14038019ec88ec457fd7aa77bf3ed"><code>ec2b0b5</code></a> structured output via model profiles</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/5dc11b55cccfe35e4dad910a33e904cf49b3088a"><code>5dc11b5</code></a> fix(core): replace exported zod type references with structural interfaces to...</li> <li>Additional commits viewable in <a href="https://github.com/langchain-ai/langchainjs/compare/langchain@1.2.34...langchain@1.2.36">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.12 <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:51 -04:00
yindo closed this issue 2026-06-05 17:22:51 -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#371