Skip to content

chore(deps): bump the langchain group with 4 updates#1

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/langchain-d088415636
Open

chore(deps): bump the langchain group with 4 updates#1
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/langchain-d088415636

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Feb 6, 2026

Bumps the langchain group with 4 updates: @langchain/community, @langchain/core, @langchain/groq and @langchain/pinecone.

Updates @langchain/community from 0.3.59 to 1.1.12

Release notes

Sourced from @​langchain/community's releases.

@​langchain/community@​1.1.12

Patch Changes

@​langchain/community@​1.1.11

Patch Changes

@​langchain/community@​1.1.10

Patch Changes

  • #9883 ea00005 Thanks @​FilipZmijewski! - support aborting for Model Gateway and WatsonxLLM for IBM

  • #9896 70f329a Thanks @​Axadali! - Add score normalization feature to PGVectorStore allowing users to choose between returning raw distances or normalized similarity scores. This makes PGVectorStore consistent with other vector stores in the LangChain ecosystem where higher scores indicate greater similarity. Maintains full backward compatibility by defaulting to distance mode.

  • #9874 a995a3f Thanks @​phong-phuong! - fix jira failing to fetch issues

  • Updated dependencies [1fa865b, 28efb57, 4e42452, a9b5059, a9b5059]:

    • @​langchain/openai@​1.2.4
    • @​langchain/classic@​1.0.13

@​langchain/community@​1.1.9

Patch Changes

  • Updated dependencies [1d58bf2]:
    • @​langchain/classic@​1.0.12

@​langchain/community@​1.1.8

Patch Changes

  • #9759 82c51e4 Thanks @​ejscribner! - Fix(couchbase): Add Couchbase peer dependency and add CouchbaseQueryVectorStore and CouchbaseSearchVectorStore to tsdown bundle

  • Updated dependencies [a496cc0]:

    • @​langchain/classic@​1.0.11

@​langchain/community@​1.1.6

Patch Changes

... (truncated)

Commits
  • 999497a chore: version packages (#9933)
  • cf46089 feat(openai): update openai SDK to ^6.18.0 (#9934)
  • 8f0757f fix(langchain): resolve className collision in MODEL_PROVIDER_CONFIG (#9763)
  • 4f7f9c7 feat(anthropic): update for Feb 5th api changes (#9932)
  • 0870ca0 fix(openai): include encrypted reasoning in ZDR responses input (#9743)
  • b5a1abf chore(deps): bump the npm_and_yarn group across 1 directory with 3 updates (#...
  • 9381b92 chore(deps): bump the npm_and_yarn group across 1 directory with 3 updates
  • 0f3f8d4 chore: version packages (#9910)
  • 3516592 feat(langchain): add withConfig() method to ReactAgent (#9916)
  • 41bfea5 fix(classic/community/core): avoid long lived abort signals (#9905)
  • Additional commits viewable in compare view

Updates @langchain/core from 0.3.80 to 1.1.19

Release notes

Sourced from @​langchain/core's releases.

@​langchain/core@​1.1.19

Patch Changes

@​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

@​langchain/core@​1.1.16

Patch Changes

@​langchain/core@​1.1.15

Patch Changes

@​langchain/core@​1.1.13

Patch Changes

Commits

Updates @langchain/groq from 0.1.3 to 1.0.4

Release notes

Sourced from @​langchain/groq's releases.

@​langchain/groq@​1.0.4

Patch Changes

  • #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.

@​langchain/groq@​1.0.3

Patch Changes

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
Maintainer changes

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


Updates @langchain/pinecone from 0.1.3 to 1.0.1

Commits
Maintainer changes

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


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

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Feb 6, 2026

Labels

The following labels could not be found: dependencies, javascript. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/langchain-d088415636 branch from 65c9843 to 7c74a17 Compare February 9, 2026 10:18
Bumps the langchain group with 4 updates: [@langchain/community](https://github.com/langchain-ai/langchainjs), [@langchain/core](https://github.com/langchain-ai/langchainjs), [@langchain/groq](https://github.com/langchain-ai/langchainjs) and [@langchain/pinecone](https://github.com/langchain-ai/langchainjs).


Updates `@langchain/community` from 0.3.59 to 1.1.12
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Commits](https://github.com/langchain-ai/langchainjs/compare/@langchain/core==0.3.59...@langchain/community@1.1.12)

Updates `@langchain/core` from 0.3.80 to 1.1.19
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Commits](https://github.com/langchain-ai/langchainjs/commits/@langchain/core@1.1.19)

Updates `@langchain/groq` from 0.1.3 to 1.0.4
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Commits](https://github.com/langchain-ai/langchainjs/compare/0.1.3...@langchain/groq@1.0.4)

Updates `@langchain/pinecone` from 0.1.3 to 1.0.1
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Commits](https://github.com/langchain-ai/langchainjs/compare/0.1.3...@langchain/pinecone@1.0.1)

---
updated-dependencies:
- dependency-name: "@langchain/community"
  dependency-version: 1.1.12
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: langchain
- dependency-name: "@langchain/core"
  dependency-version: 1.1.19
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: langchain
- dependency-name: "@langchain/groq"
  dependency-version: 1.0.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: langchain
- dependency-name: "@langchain/pinecone"
  dependency-version: 1.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: langchain
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/langchain-d088415636 branch from 7c74a17 to 8726fe0 Compare February 16, 2026 10:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants