Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 2, 2025

Bumps @langchain/core from 0.3.75 to 1.1.0.

Release notes

Sourced from @​langchain/core's releases.

@​langchain/core==1.0.4

Patch Changes

  • 8319201: Export standard converter function utility

@​langchain/core==1.0.3

Patch Changes

  • 0a8a23b: feat(@​langchain/core): support of ToolRuntime

@​langchain/core==1.0.2

What's Changed

Patch Changes

  • 6426eb6: fix chunks constructed with tool calls + chunks
  • 619ae64: Add BaseMessage.toFormattedString()

@​langchain/core==1.0.0

🎉 LangChain v1.0 is here! This release provides a focused, production-ready foundation for building agents with significant improvements to the core abstractions and APIs. See the release notes for more details.

✨ Major Features

Standard content blocks

A new unified API for accessing modern LLM features across all providers:

  • New contentBlocks property: Provides provider-agnostic access to reasoning traces, citations, built-in tools (web search, code interpreters, etc.), and other advanced LLM features
  • Type-safe: Full TypeScript support with type hints for all content block types
  • Backward compatible: Content blocks can be loaded lazily with no breaking changes to existing code

Example:

const response = await model.invoke([
  { role: "user", content: "What is the weather in Tokyo?" },
]);
// Access structured content blocks
for (const block of response.contentBlocks) {
if (block.type === "thinking") {
console.log("Model reasoning:", block.thinking);
} else if (block.type === "text") {
console.log("Response:", block.text);
}
}

For more information, see our guide on content blocks.

... (truncated)

Commits
  • 671a949 chore: version packages (#9376)
  • 7b4ba33 fix(core): clean up event listener properly (#9375)
  • db476e9 feat(langchain): improve summarization middleware (#9373)
  • 2ceeeff chore(core): extend getModelContextSize to account for more models (#9372)
  • bce4e45 fix(aws): inference config and system message | ChatBedrockConverse (#9324)
  • 8319201 feat(core,openai): export message conversion helpers (#9340)
  • 5f2dab2 fix(langchain): create summary as human message instead of system message (#9...
  • 9d6ca27 chore(deps): bump axios from 0.26.1 to 0.30.2 (#9206)
  • 5d43b21 fix(langchain): further tool call limit optimizations (#9338)
  • 4906522 fix(openai): pair reasoning with function_call id; add tests (#9082)
  • 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/core since your current version.


Dependabot compatibility score

You can trigger a rebase of this PR 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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 2, 2025
@dependabot dependabot bot requested a review from a team as a code owner December 2, 2025 00:42
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 2, 2025
Bumps [@langchain/core](https://github.com/langchain-ai/langchainjs) from 0.3.75 to 1.1.0.
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Commits](https://github.com/langchain-ai/langchainjs/compare/@langchain/core==0.3.75...@langchain/openai==1.1.0)

---
updated-dependencies:
- dependency-name: "@langchain/core"
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot-npm_and_yarn-langchain-core-1.1.0 branch from 4d1d7f4 to a578d3f Compare December 3, 2025 19:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants