[PR #176] [MERGED] build(deps): bump the patch-deps-updates-main group with 5 updates #180

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

📋 Pull Request Information

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

Base: mainHead: dependabot/npm_and_yarn/patch-deps-updates-main-5a5bfe6233


📝 Commits (1)

  • 38631e8 build(deps): bump the patch-deps-updates-main group with 5 updates

📊 Changes

1 file changed (+54 additions, -160 deletions)

View changed files

📝 pnpm-lock.yaml (+54 -160)

📄 Description

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

Package From To
@langchain/anthropic 1.3.11 1.3.13
@langchain/core 1.1.16 1.1.18
@langchain/langgraph 1.1.2 1.1.3
langchain 1.2.12 1.2.16
@langchain/openai 1.2.3 1.2.4

Updates @langchain/anthropic from 1.3.11 to 1.3.13

Release notes

Sourced from @​langchain/anthropic's releases.

@​langchain/anthropic@​1.3.13

Patch Changes

  • #9881 0c64698 Thanks @​marvikomo! - handle standard file content blocks

  • #9900 a9b5059 Thanks @​hntrl! - Improved abort signal handling for chat models:

    • Added ModelAbortError class in @langchain/core/errors that contains partial output when a model invocation is aborted mid-stream
    • invoke() now throws ModelAbortError with accumulated partialOutput when aborted during streaming (when using streaming callback handlers)
    • stream() throws a regular AbortError when aborted (since chunks are already yielded to the caller)
    • All provider implementations now properly check and propagate abort signals in both _generate() and _streamResponseChunks() methods
    • Added standard tests for abort signal behavior
  • #9900 a9b5059 Thanks @​hntrl! - fix(providers): add proper abort signal handling for invoke and stream operations

    • Added early abort check (signal.throwIfAborted()) at the start of _generate methods to immediately throw when signal is already aborted
    • Added abort signal checks inside streaming loops in _streamResponseChunks to return early when signal is aborted
    • Propagated abort signals to underlying SDK calls where applicable (Google GenAI, Google Common/VertexAI, Cohere)
    • Added standard tests for abort signal behavior in @langchain/standard-tests

    This enables proper cancellation behavior for both invoke and streaming operations, and allows fallback chains to correctly proceed to the next runnable when the previous one is aborted.

  • Updated dependencies [a9b5059, a9b5059]:

    • @​langchain/core@​1.1.18
Commits
  • a13f0fd chore: version packages (#9899)
  • 9179794 chore: fix changeset (#9903)
  • a9b5059 fix(core,providers): add proper abort signal handling for invoke and stream o...
  • 1fa865b fix(openai): allow file_url and file_id without filename metadata in Response...
  • a995a3f Bugfix: Jira failing to fetch issues after merge of (#9832) (#9874)
  • 70f329a Fix issue #9782: PGVectoreStore does not return a score, but the distance (#...
  • 913893f fix: filter pregel keys from cache key to avoid OOM (#9885)
  • 0c64698 fix(anthropic): handle standard file content blocks (#9881)
  • 4e42452 fix(openai): pass runManager to responses._generate function in ChatOpenAI (#...
  • ea00005 feat(community): add reasoning_effort to IBM implementation, change url for g...
  • Additional commits viewable in compare view

Updates @langchain/core from 1.1.16 to 1.1.18

Release notes

Sourced from @​langchain/core's releases.

@​langchain/core@​1.1.18

Patch Changes

  • #9900 a9b5059 Thanks @​hntrl! - fix(core): update method signatures to use Partial<CallOptions> for options parameters

    Updated invoke, stream, generate, and generatePrompt method signatures across Runnable, BaseChatModel, and BaseLLM to correctly accept Partial<CallOptions> instead of full CallOptions. This aligns the implementation with the RunnableInterface specification and allows users to pass partial options (e.g., { signal: abortedSignal }) without TypeScript errors.

  • #9900 a9b5059 Thanks @​hntrl! - Improved abort signal handling for chat models:

    • Added ModelAbortError class in @langchain/core/errors that contains partial output when a model invocation is aborted mid-stream
    • invoke() now throws ModelAbortError with accumulated partialOutput when aborted during streaming (when using streaming callback handlers)
    • stream() throws a regular AbortError when aborted (since chunks are already yielded to the caller)
    • All provider implementations now properly check and propagate abort signals in both _generate() and _streamResponseChunks() methods
    • Added standard tests for abort signal behavior
Commits
  • a13f0fd chore: version packages (#9899)
  • 9179794 chore: fix changeset (#9903)
  • a9b5059 fix(core,providers): add proper abort signal handling for invoke and stream o...
  • 1fa865b fix(openai): allow file_url and file_id without filename metadata in Response...
  • a995a3f Bugfix: Jira failing to fetch issues after merge of (#9832) (#9874)
  • 70f329a Fix issue #9782: PGVectoreStore does not return a score, but the distance (#...
  • 913893f fix: filter pregel keys from cache key to avoid OOM (#9885)
  • 0c64698 fix(anthropic): handle standard file content blocks (#9881)
  • 4e42452 fix(openai): pass runManager to responses._generate function in ChatOpenAI (#...
  • ea00005 feat(community): add reasoning_effort to IBM implementation, change url for g...
  • Additional commits viewable in compare view

Updates @langchain/langgraph from 1.1.2 to 1.1.3

Release notes

Sourced from @​langchain/langgraph's releases.

@​langchain/langgraph@​1.1.3

Patch Changes

  • #1932 0cda1f3 Thanks @​samecrowder! - fix: preserve langgraph_type metadata for LangSmith Studio tab detection

    • Zod v4 .register() fix: The metadata registry now properly stores and retrieves langgraph_type metadata when using Zod v4's .register() method with MessagesZodMeta
    • StateSchema fix: StateSchema.getJsonSchema() now correctly includes jsonSchemaExtra (like langgraph_type: "messages") even when the underlying schema (e.g., z.custom()) doesn't produce a JSON schema
Changelog

Sourced from @​langchain/langgraph's changelog.

1.1.3

Patch Changes

  • #1932 0cda1f3 Thanks @​samecrowder! - fix: preserve langgraph_type metadata for LangSmith Studio tab detection

    • Zod v4 .register() fix: The metadata registry now properly stores and retrieves langgraph_type metadata when using Zod v4's .register() method with MessagesZodMeta
    • StateSchema fix: StateSchema.getJsonSchema() now correctly includes jsonSchemaExtra (like langgraph_type: "messages") even when the underlying schema (e.g., z.custom()) doesn't produce a JSON schema
Commits

Updates langchain from 1.2.12 to 1.2.16

Release notes

Sourced from langchain's releases.

langchain@1.2.16

Patch Changes

langchain@1.2.15

Patch Changes

langchain@1.2.14

Patch Changes

  • #9870 070b4d1 Thanks @​maahir30! - fix(langchain): StateSchema handling in AgentNode middleware
    • Added toPartialZodObject helper that correctly handles both Zod objects and LangGraph's StateSchema when parsing middleware state in AgentNode .
Commits
  • a13f0fd chore: version packages (#9899)
  • 9179794 chore: fix changeset (#9903)
  • a9b5059 fix(core,providers): add proper abort signal handling for invoke and stream o...
  • 1fa865b fix(openai): allow file_url and file_id without filename metadata in Response...
  • a995a3f Bugfix: Jira failing to fetch issues after merge of (#9832) (#9874)
  • 70f329a Fix issue #9782: PGVectoreStore does not return a score, but the distance (#...
  • 913893f fix: filter pregel keys from cache key to avoid OOM (#9885)
  • 0c64698 fix(anthropic): handle standard file content blocks (#9881)
  • 4e42452 fix(openai): pass runManager to responses._generate function in ChatOpenAI (#...
  • ea00005 feat(community): add reasoning_effort to IBM implementation, change url for g...
  • Additional commits viewable in compare view

Updates @langchain/openai from 1.2.3 to 1.2.4

Release notes

Sourced from @​langchain/openai's releases.

@​langchain/openai@​1.2.4

Patch Changes

  • #9887 1fa865b Thanks @​Muhammad-Kamran-Khan! - Fix validation to allow file_url and file_id without filename metadata in Responses API, and prevent sending filename when not allowed.

  • #9873 28efb57 Thanks @​hntrl! - Add reasoningEffort call option as a convenience shorthand for reasoning.effort

    • Adds reasoningEffort to BaseChatOpenAICallOptions for easier configuration of reasoning models
    • Automatically coalesces reasoningEffort into reasoning.effort when calling reasoning models (o1, o3, etc.)
    • If both reasoningEffort and reasoning.effort are provided, reasoning.effort takes precedence
    • Marked as @deprecated to encourage use of the full reasoning.effort option
  • #9876 4e42452 Thanks @​sflanker! - fix(openai): pass runManager to responses._generate function in ChatOpenAI

  • #9900 a9b5059 Thanks @​hntrl! - Improved abort signal handling for chat models:

    • Added ModelAbortError class in @langchain/core/errors that contains partial output when a model invocation is aborted mid-stream
    • invoke() now throws ModelAbortError with accumulated partialOutput when aborted during streaming (when using streaming callback handlers)
    • stream() throws a regular AbortError when aborted (since chunks are already yielded to the caller)
    • All provider implementations now properly check and propagate abort signals in both _generate() and _streamResponseChunks() methods
    • Added standard tests for abort signal behavior
  • #9900 a9b5059 Thanks @​hntrl! - fix(providers): add proper abort signal handling for invoke and stream operations

    • Added early abort check (signal.throwIfAborted()) at the start of _generate methods to immediately throw when signal is already aborted
    • Added abort signal checks inside streaming loops in _streamResponseChunks to return early when signal is aborted
    • Propagated abort signals to underlying SDK calls where applicable (Google GenAI, Google Common/VertexAI, Cohere)
    • Added standard tests for abort signal behavior in @langchain/standard-tests

    This enables proper cancellation behavior for both invoke and streaming operations, and allows fallback chains to correctly proceed to the next runnable when the previous one is aborted.

Commits
  • a13f0fd chore: version packages (#9899)
  • 9179794 chore: fix changeset (#9903)
  • a9b5059 fix(core,providers): add proper abort signal handling for invoke and stream o...
  • 1fa865b fix(openai): allow file_url and file_id without filename metadata in Response...
  • a995a3f Bugfix: Jira failing to fetch issues after merge of (#9832) (#9874)
  • 70f329a Fix issue #9782: PGVectoreStore does not return a score, but the distance (#...
  • 913893f fix: filter pregel keys from cache key to avoid OOM (#9885)
  • 0c64698 fix(anthropic): handle standard file content blocks (#9881)
  • 4e42452 fix(openai): pass runManager to responses._generate function in ChatOpenAI (#...
  • ea00005 feat(community): add reasoning_effort to IBM implementation, change url for g...
  • Additional commits viewable in compare view

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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/176 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 2/3/2026 **Status:** ✅ Merged **Merged:** 2/3/2026 **Merged by:** [@christian-bromann](https://github.com/christian-bromann) **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/patch-deps-updates-main-5a5bfe6233` --- ### 📝 Commits (1) - [`38631e8`](https://github.com/langchain-ai/deepagentsjs/commit/38631e86478a617b7252315f5a27efb368be3842) build(deps): bump the patch-deps-updates-main group with 5 updates ### 📊 Changes **1 file changed** (+54 additions, -160 deletions) <details> <summary>View changed files</summary> 📝 `pnpm-lock.yaml` (+54 -160) </details> ### 📄 Description Bumps the patch-deps-updates-main group with 5 updates: | Package | From | To | | --- | --- | --- | | [@langchain/anthropic](https://github.com/langchain-ai/langchainjs) | `1.3.11` | `1.3.13` | | [@langchain/core](https://github.com/langchain-ai/langchainjs) | `1.1.16` | `1.1.18` | | [@langchain/langgraph](https://github.com/langchain-ai/langgraphjs/tree/HEAD/libs/langgraph-core) | `1.1.2` | `1.1.3` | | [langchain](https://github.com/langchain-ai/langchainjs) | `1.2.12` | `1.2.16` | | [@langchain/openai](https://github.com/langchain-ai/langchainjs) | `1.2.3` | `1.2.4` | Updates `@langchain/anthropic` from 1.3.11 to 1.3.13 <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.13</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/9881">#9881</a> <a href="https://github.com/langchain-ai/langchainjs/commit/0c646989761d11eaa66a3290392ddb94ad54d5bd"><code>0c64698</code></a> Thanks <a href="https://github.com/marvikomo"><code>@​marvikomo</code></a>! - handle standard file content blocks</p> </li> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/9900">#9900</a> <a href="https://github.com/langchain-ai/langchainjs/commit/a9b50597186002221aaa4585246e569fa44c27c8"><code>a9b5059</code></a> Thanks <a href="https://github.com/hntrl"><code>@​hntrl</code></a>! - Improved abort signal handling for chat models:</p> <ul> <li>Added <code>ModelAbortError</code> class in <code>@langchain/core/errors</code> that contains partial output when a model invocation is aborted mid-stream</li> <li><code>invoke()</code> now throws <code>ModelAbortError</code> with accumulated <code>partialOutput</code> when aborted during streaming (when using streaming callback handlers)</li> <li><code>stream()</code> throws a regular <code>AbortError</code> when aborted (since chunks are already yielded to the caller)</li> <li>All provider implementations now properly check and propagate abort signals in both <code>_generate()</code> and <code>_streamResponseChunks()</code> methods</li> <li>Added standard tests for abort signal behavior</li> </ul> </li> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/9900">#9900</a> <a href="https://github.com/langchain-ai/langchainjs/commit/a9b50597186002221aaa4585246e569fa44c27c8"><code>a9b5059</code></a> Thanks <a href="https://github.com/hntrl"><code>@​hntrl</code></a>! - fix(providers): add proper abort signal handling for invoke and stream operations</p> <ul> <li>Added early abort check (<code>signal.throwIfAborted()</code>) at the start of <code>_generate</code> methods to immediately throw when signal is already aborted</li> <li>Added abort signal checks inside streaming loops in <code>_streamResponseChunks</code> to return early when signal is aborted</li> <li>Propagated abort signals to underlying SDK calls where applicable (Google GenAI, Google Common/VertexAI, Cohere)</li> <li>Added standard tests for abort signal behavior in <code>@langchain/standard-tests</code></li> </ul> <p>This enables proper cancellation behavior for both invoke and streaming operations, and allows fallback chains to correctly proceed to the next runnable when the previous one is aborted.</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/langchain-ai/langchainjs/commit/a9b50597186002221aaa4585246e569fa44c27c8"><code>a9b5059</code></a>, <a href="https://github.com/langchain-ai/langchainjs/commit/a9b50597186002221aaa4585246e569fa44c27c8"><code>a9b5059</code></a>]:</p> <ul> <li><code>@​langchain/core</code><a href="https://github.com/1"><code>@​1</code></a>.1.18</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/langchain-ai/langchainjs/commit/a13f0fd6524a8a0763de054a5084362a82a9d4ea"><code>a13f0fd</code></a> chore: version packages (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9899">#9899</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/917979443ca83e91122a437f501835a44d6322d6"><code>9179794</code></a> chore: fix changeset (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9903">#9903</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/a9b50597186002221aaa4585246e569fa44c27c8"><code>a9b5059</code></a> fix(core,providers): add proper abort signal handling for invoke and stream o...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/1fa865b1cb8a30c2269b83cdb5fc84d374c3fca9"><code>1fa865b</code></a> fix(openai): allow file_url and file_id without filename metadata in Response...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/a995a3ff1940eebf7204574e6f058f8ff84f557e"><code>a995a3f</code></a> Bugfix: Jira failing to fetch issues after merge of (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9832">#9832</a>) (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9874">#9874</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/70f329aa5c16bef9e7a942d4187c31f3d3b86b80"><code>70f329a</code></a> Fix issue <a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9782">#9782</a>: PGVectoreStore does not return a score, but the distance (#...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/913893f678f1fae2a1b9bf964c9d93ffd0176680"><code>913893f</code></a> fix: filter pregel keys from cache key to avoid OOM (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9885">#9885</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/0c646989761d11eaa66a3290392ddb94ad54d5bd"><code>0c64698</code></a> fix(anthropic): handle standard file content blocks (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9881">#9881</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/4e42452e4c020408bd6687667e931497b05aaff5"><code>4e42452</code></a> fix(openai): pass runManager to responses._generate function in ChatOpenAI (#...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/ea000051bd29670bec60099a5f50a13c0fedfc31"><code>ea00005</code></a> feat(community): add reasoning_effort to IBM implementation, change url for g...</li> <li>Additional commits viewable in <a href="https://github.com/langchain-ai/langchainjs/compare/@langchain/anthropic@1.3.11...@langchain/anthropic@1.3.13">compare view</a></li> </ul> </details> <br /> Updates `@langchain/core` from 1.1.16 to 1.1.18 <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.18</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/9900">#9900</a> <a href="https://github.com/langchain-ai/langchainjs/commit/a9b50597186002221aaa4585246e569fa44c27c8"><code>a9b5059</code></a> Thanks <a href="https://github.com/hntrl"><code>@​hntrl</code></a>! - fix(core): update method signatures to use <code>Partial&lt;CallOptions&gt;</code> for options parameters</p> <p>Updated <code>invoke</code>, <code>stream</code>, <code>generate</code>, and <code>generatePrompt</code> method signatures across <code>Runnable</code>, <code>BaseChatModel</code>, and <code>BaseLLM</code> to correctly accept <code>Partial&lt;CallOptions&gt;</code> instead of full <code>CallOptions</code>. This aligns the implementation with the <code>RunnableInterface</code> specification and allows users to pass partial options (e.g., <code>{ signal: abortedSignal }</code>) without TypeScript errors.</p> </li> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/9900">#9900</a> <a href="https://github.com/langchain-ai/langchainjs/commit/a9b50597186002221aaa4585246e569fa44c27c8"><code>a9b5059</code></a> Thanks <a href="https://github.com/hntrl"><code>@​hntrl</code></a>! - Improved abort signal handling for chat models:</p> <ul> <li>Added <code>ModelAbortError</code> class in <code>@langchain/core/errors</code> that contains partial output when a model invocation is aborted mid-stream</li> <li><code>invoke()</code> now throws <code>ModelAbortError</code> with accumulated <code>partialOutput</code> when aborted during streaming (when using streaming callback handlers)</li> <li><code>stream()</code> throws a regular <code>AbortError</code> when aborted (since chunks are already yielded to the caller)</li> <li>All provider implementations now properly check and propagate abort signals in both <code>_generate()</code> and <code>_streamResponseChunks()</code> methods</li> <li>Added standard tests for abort signal behavior</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/langchain-ai/langchainjs/commit/a13f0fd6524a8a0763de054a5084362a82a9d4ea"><code>a13f0fd</code></a> chore: version packages (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9899">#9899</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/917979443ca83e91122a437f501835a44d6322d6"><code>9179794</code></a> chore: fix changeset (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9903">#9903</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/a9b50597186002221aaa4585246e569fa44c27c8"><code>a9b5059</code></a> fix(core,providers): add proper abort signal handling for invoke and stream o...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/1fa865b1cb8a30c2269b83cdb5fc84d374c3fca9"><code>1fa865b</code></a> fix(openai): allow file_url and file_id without filename metadata in Response...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/a995a3ff1940eebf7204574e6f058f8ff84f557e"><code>a995a3f</code></a> Bugfix: Jira failing to fetch issues after merge of (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9832">#9832</a>) (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9874">#9874</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/70f329aa5c16bef9e7a942d4187c31f3d3b86b80"><code>70f329a</code></a> Fix issue <a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9782">#9782</a>: PGVectoreStore does not return a score, but the distance (#...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/913893f678f1fae2a1b9bf964c9d93ffd0176680"><code>913893f</code></a> fix: filter pregel keys from cache key to avoid OOM (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9885">#9885</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/0c646989761d11eaa66a3290392ddb94ad54d5bd"><code>0c64698</code></a> fix(anthropic): handle standard file content blocks (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9881">#9881</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/4e42452e4c020408bd6687667e931497b05aaff5"><code>4e42452</code></a> fix(openai): pass runManager to responses._generate function in ChatOpenAI (#...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/ea000051bd29670bec60099a5f50a13c0fedfc31"><code>ea00005</code></a> feat(community): add reasoning_effort to IBM implementation, change url for g...</li> <li>Additional commits viewable in <a href="https://github.com/langchain-ai/langchainjs/compare/@langchain/core@1.1.16...@langchain/core@1.1.18">compare view</a></li> </ul> </details> <br /> Updates `@langchain/langgraph` from 1.1.2 to 1.1.3 <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>.1.3</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/langchain-ai/langgraphjs/pull/1932">#1932</a> <a href="https://github.com/langchain-ai/langgraphjs/commit/0cda1f3b78a86e7809b7db15a7ff0ea00ee1ecd8"><code>0cda1f3</code></a> Thanks <a href="https://github.com/samecrowder"><code>@​samecrowder</code></a>! - fix: preserve <code>langgraph_type</code> metadata for LangSmith Studio tab detection</p> <ul> <li><strong>Zod v4 <code>.register()</code> fix</strong>: The metadata registry now properly stores and retrieves <code>langgraph_type</code> metadata when using Zod v4's <code>.register()</code> method with <code>MessagesZodMeta</code></li> <li><strong>StateSchema fix</strong>: <code>StateSchema.getJsonSchema()</code> now correctly includes <code>jsonSchemaExtra</code> (like <code>langgraph_type: &quot;messages&quot;</code>) even when the underlying schema (e.g., <code>z.custom()</code>) doesn't produce a JSON schema</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.1.3</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/langchain-ai/langgraphjs/pull/1932">#1932</a> <a href="https://github.com/langchain-ai/langgraphjs/commit/0cda1f3b78a86e7809b7db15a7ff0ea00ee1ecd8"><code>0cda1f3</code></a> Thanks <a href="https://github.com/samecrowder"><code>@​samecrowder</code></a>! - fix: preserve <code>langgraph_type</code> metadata for LangSmith Studio tab detection</p> <ul> <li><strong>Zod v4 <code>.register()</code> fix</strong>: The metadata registry now properly stores and retrieves <code>langgraph_type</code> metadata when using Zod v4's <code>.register()</code> method with <code>MessagesZodMeta</code></li> <li><strong>StateSchema fix</strong>: <code>StateSchema.getJsonSchema()</code> now correctly includes <code>jsonSchemaExtra</code> (like <code>langgraph_type: &quot;messages&quot;</code>) even when the underlying schema (e.g., <code>z.custom()</code>) doesn't produce a JSON schema</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/langchain-ai/langgraphjs/commit/a0964fbd16979cbb4401640504e464b368bce168"><code>a0964fb</code></a> chore: version packages (<a href="https://github.com/langchain-ai/langgraphjs/tree/HEAD/libs/langgraph-core/issues/1936">#1936</a>)</li> <li><a href="https://github.com/langchain-ai/langgraphjs/commit/0cda1f3b78a86e7809b7db15a7ff0ea00ee1ecd8"><code>0cda1f3</code></a> fix: studio zod issue (<a href="https://github.com/langchain-ai/langgraphjs/tree/HEAD/libs/langgraph-core/issues/1932">#1932</a>)</li> <li>See full diff in <a href="https://github.com/langchain-ai/langgraphjs/commits/@langchain/langgraph@1.1.3/libs/langgraph-core">compare view</a></li> </ul> </details> <br /> Updates `langchain` from 1.2.12 to 1.2.16 <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.16</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/9885">#9885</a> <a href="https://github.com/langchain-ai/langchainjs/commit/913893f678f1fae2a1b9bf964c9d93ffd0176680"><code>913893f</code></a> Thanks <a href="https://github.com/Ambas-T"><code>@​Ambas-T</code></a>! - fix: filter pregel keys from cache key to avoid OOM</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/langchain-ai/langchainjs/commit/a9b50597186002221aaa4585246e569fa44c27c8"><code>a9b5059</code></a>, <a href="https://github.com/langchain-ai/langchainjs/commit/a9b50597186002221aaa4585246e569fa44c27c8"><code>a9b5059</code></a>]:</p> <ul> <li><code>@​langchain/core</code><a href="https://github.com/1"><code>@​1</code></a>.1.18</li> </ul> </li> </ul> <h2>langchain@1.2.15</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/9891">#9891</a> <a href="https://github.com/langchain-ai/langchainjs/commit/983b2123eeaa32011b7021643ba8c37698dfe2be"><code>983b212</code></a> Thanks <a href="https://github.com/christian-bromann"><code>@​christian-bromann</code></a>! - fix(langchain): support StateSchema in middleware pipeline</li> </ul> <h2>langchain@1.2.14</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/9870">#9870</a> <a href="https://github.com/langchain-ai/langchainjs/commit/070b4d14121ee5d1f24c8ad980cd4548f39f19eb"><code>070b4d1</code></a> Thanks <a href="https://github.com/maahir30"><code>@​maahir30</code></a>! - fix(langchain): StateSchema handling in AgentNode middleware <ul> <li>Added <code>toPartialZodObject</code> helper that correctly handles both Zod objects and LangGraph's StateSchema when parsing middleware state in AgentNode .</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/langchain-ai/langchainjs/commit/a13f0fd6524a8a0763de054a5084362a82a9d4ea"><code>a13f0fd</code></a> chore: version packages (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9899">#9899</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/917979443ca83e91122a437f501835a44d6322d6"><code>9179794</code></a> chore: fix changeset (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9903">#9903</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/a9b50597186002221aaa4585246e569fa44c27c8"><code>a9b5059</code></a> fix(core,providers): add proper abort signal handling for invoke and stream o...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/1fa865b1cb8a30c2269b83cdb5fc84d374c3fca9"><code>1fa865b</code></a> fix(openai): allow file_url and file_id without filename metadata in Response...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/a995a3ff1940eebf7204574e6f058f8ff84f557e"><code>a995a3f</code></a> Bugfix: Jira failing to fetch issues after merge of (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9832">#9832</a>) (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9874">#9874</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/70f329aa5c16bef9e7a942d4187c31f3d3b86b80"><code>70f329a</code></a> Fix issue <a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9782">#9782</a>: PGVectoreStore does not return a score, but the distance (#...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/913893f678f1fae2a1b9bf964c9d93ffd0176680"><code>913893f</code></a> fix: filter pregel keys from cache key to avoid OOM (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9885">#9885</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/0c646989761d11eaa66a3290392ddb94ad54d5bd"><code>0c64698</code></a> fix(anthropic): handle standard file content blocks (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9881">#9881</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/4e42452e4c020408bd6687667e931497b05aaff5"><code>4e42452</code></a> fix(openai): pass runManager to responses._generate function in ChatOpenAI (#...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/ea000051bd29670bec60099a5f50a13c0fedfc31"><code>ea00005</code></a> feat(community): add reasoning_effort to IBM implementation, change url for g...</li> <li>Additional commits viewable in <a href="https://github.com/langchain-ai/langchainjs/compare/langchain@1.2.12...langchain@1.2.16">compare view</a></li> </ul> </details> <br /> Updates `@langchain/openai` from 1.2.3 to 1.2.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/langchain-ai/langchainjs/releases"><code>@​langchain/openai</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​langchain/openai</code><a href="https://github.com/1"><code>@​1</code></a>.2.4</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/9887">#9887</a> <a href="https://github.com/langchain-ai/langchainjs/commit/1fa865b1cb8a30c2269b83cdb5fc84d374c3fca9"><code>1fa865b</code></a> Thanks <a href="https://github.com/Muhammad-Kamran-Khan"><code>@​Muhammad-Kamran-Khan</code></a>! - Fix validation to allow file_url and file_id without filename metadata in Responses API, and prevent sending filename when not allowed.</p> </li> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/9873">#9873</a> <a href="https://github.com/langchain-ai/langchainjs/commit/28efb57448933368094ca41c63d9262ac0f348a6"><code>28efb57</code></a> Thanks <a href="https://github.com/hntrl"><code>@​hntrl</code></a>! - Add <code>reasoningEffort</code> call option as a convenience shorthand for <code>reasoning.effort</code></p> <ul> <li>Adds <code>reasoningEffort</code> to <code>BaseChatOpenAICallOptions</code> for easier configuration of reasoning models</li> <li>Automatically coalesces <code>reasoningEffort</code> into <code>reasoning.effort</code> when calling reasoning models (o1, o3, etc.)</li> <li>If both <code>reasoningEffort</code> and <code>reasoning.effort</code> are provided, <code>reasoning.effort</code> takes precedence</li> <li>Marked as <code>@deprecated</code> to encourage use of the full <code>reasoning.effort</code> option</li> </ul> </li> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/9876">#9876</a> <a href="https://github.com/langchain-ai/langchainjs/commit/4e42452e4c020408bd6687667e931497b05aaff5"><code>4e42452</code></a> Thanks <a href="https://github.com/sflanker"><code>@​sflanker</code></a>! - fix(openai): pass runManager to responses._generate function in ChatOpenAI</p> </li> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/9900">#9900</a> <a href="https://github.com/langchain-ai/langchainjs/commit/a9b50597186002221aaa4585246e569fa44c27c8"><code>a9b5059</code></a> Thanks <a href="https://github.com/hntrl"><code>@​hntrl</code></a>! - Improved abort signal handling for chat models:</p> <ul> <li>Added <code>ModelAbortError</code> class in <code>@langchain/core/errors</code> that contains partial output when a model invocation is aborted mid-stream</li> <li><code>invoke()</code> now throws <code>ModelAbortError</code> with accumulated <code>partialOutput</code> when aborted during streaming (when using streaming callback handlers)</li> <li><code>stream()</code> throws a regular <code>AbortError</code> when aborted (since chunks are already yielded to the caller)</li> <li>All provider implementations now properly check and propagate abort signals in both <code>_generate()</code> and <code>_streamResponseChunks()</code> methods</li> <li>Added standard tests for abort signal behavior</li> </ul> </li> <li> <p><a href="https://redirect.github.com/langchain-ai/langchainjs/pull/9900">#9900</a> <a href="https://github.com/langchain-ai/langchainjs/commit/a9b50597186002221aaa4585246e569fa44c27c8"><code>a9b5059</code></a> Thanks <a href="https://github.com/hntrl"><code>@​hntrl</code></a>! - fix(providers): add proper abort signal handling for invoke and stream operations</p> <ul> <li>Added early abort check (<code>signal.throwIfAborted()</code>) at the start of <code>_generate</code> methods to immediately throw when signal is already aborted</li> <li>Added abort signal checks inside streaming loops in <code>_streamResponseChunks</code> to return early when signal is aborted</li> <li>Propagated abort signals to underlying SDK calls where applicable (Google GenAI, Google Common/VertexAI, Cohere)</li> <li>Added standard tests for abort signal behavior in <code>@langchain/standard-tests</code></li> </ul> <p>This enables proper cancellation behavior for both invoke and streaming operations, and allows fallback chains to correctly proceed to the next runnable when the previous one is aborted.</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/langchain-ai/langchainjs/commit/a13f0fd6524a8a0763de054a5084362a82a9d4ea"><code>a13f0fd</code></a> chore: version packages (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9899">#9899</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/917979443ca83e91122a437f501835a44d6322d6"><code>9179794</code></a> chore: fix changeset (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9903">#9903</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/a9b50597186002221aaa4585246e569fa44c27c8"><code>a9b5059</code></a> fix(core,providers): add proper abort signal handling for invoke and stream o...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/1fa865b1cb8a30c2269b83cdb5fc84d374c3fca9"><code>1fa865b</code></a> fix(openai): allow file_url and file_id without filename metadata in Response...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/a995a3ff1940eebf7204574e6f058f8ff84f557e"><code>a995a3f</code></a> Bugfix: Jira failing to fetch issues after merge of (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9832">#9832</a>) (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9874">#9874</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/70f329aa5c16bef9e7a942d4187c31f3d3b86b80"><code>70f329a</code></a> Fix issue <a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9782">#9782</a>: PGVectoreStore does not return a score, but the distance (#...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/913893f678f1fae2a1b9bf964c9d93ffd0176680"><code>913893f</code></a> fix: filter pregel keys from cache key to avoid OOM (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9885">#9885</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/0c646989761d11eaa66a3290392ddb94ad54d5bd"><code>0c64698</code></a> fix(anthropic): handle standard file content blocks (<a href="https://redirect.github.com/langchain-ai/langchainjs/issues/9881">#9881</a>)</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/4e42452e4c020408bd6687667e931497b05aaff5"><code>4e42452</code></a> fix(openai): pass runManager to responses._generate function in ChatOpenAI (#...</li> <li><a href="https://github.com/langchain-ai/langchainjs/commit/ea000051bd29670bec60099a5f50a13c0fedfc31"><code>ea00005</code></a> feat(community): add reasoning_effort to IBM implementation, change url for g...</li> <li>Additional commits viewable in <a href="https://github.com/langchain-ai/langchainjs/compare/@langchain/openai@1.2.3...@langchain/openai@1.2.4">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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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-02-16 06:17:22 -05:00
yindo closed this issue 2026-02-16 06:17:22 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/deepagentsjs#180