Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Sep 3, 2025

Bumps the langchain-packages group with 3 updates: @langchain/core, @langchain/openai and langchain.

Updates @langchain/core from 0.3.57 to 0.3.72

Release notes

Sourced from @​langchain/core's releases.

@​langchain/core==0.3.68

What's Changed

Full Changelog: https://github.com/langchain-ai/langchainjs/compare/@​langchain/core==0.3.66...@​langchain/core==0.3.68

@​langchain/core==0.3.62

What's Changed

New Contributors

Full Changelog: https://github.com/langchain-ai/langchainjs/compare/@​langchain/core==0.3.61...@​langchain/core==0.3.62

@​langchain/core==0.3.61

What's Changed

Full Changelog: https://github.com/langchain-ai/langchainjs/compare/@​langchain/core==0.3.60...@​langchain/core==0.3.61

@​langchain/core==0.3.60

What's Changed

New Contributors

Full Changelog: https://github.com/langchain-ai/langchainjs/compare/@​langchain/core==0.3.59...@​langchain/core==0.3.60

Commits
  • 3703f42 release(core): 0.3.72
  • 44c10d6 release(community): 0.3.53 (#8727)
  • a4b7226 release(community): 0.3.53
  • 85d42df feat(core): Allow runnables to define custom stream chunk concat behavior (#8...
  • c72ff6d fix(js): Make hub prompts pulled with a model support structured outputs (#8725)
  • 18a7a4f feat(chroma): Default to Null Embedding Function for Chroma Collection (#8723)
  • 4f94d96 chore(release): aug 18 2025 (#8721)
  • 6b13f11 release(community): 0.3.52
  • b4613e7 Create Chroma collections with no EF
  • 5f3998a release(openai): 0.6.8
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by hntrl, a new releaser for @​langchain/core since your current version.


Updates @langchain/openai from 0.5.11 to 0.6.9

Release notes

Sourced from @​langchain/openai's releases.

@​langchain/openai==0.6.9

What's Changed

Full Changelog: https://github.com/langchain-ai/langchainjs/compare/@​langchain/openai==0.6.8...@​langchain/openai==0.6.9

@​langchain/openai==0.6.8

What's Changed

New Contributors

Full Changelog: https://github.com/langchain-ai/langchainjs/compare/@​langchain/openai==0.6.6...@​langchain/openai==0.6.8

@​langchain/openai==0.6.6

What's Changed

Full Changelog: https://github.com/langchain-ai/langchainjs/compare/@​langchain/openai==0.6.5...@​langchain/openai==0.6.6

@​langchain/openai==0.6.5

What's Changed

New Contributors

Full Changelog: https://github.com/langchain-ai/langchainjs/compare/@​langchain/openai==0.6.3...@​langchain/openai==0.6.5

@​langchain/openai==0.5.16

What's Changed

Full Changelog: https://github.com/langchain-ai/langchainjs/compare/@​langchain/openai==0.5.15...@​langchain/openai==0.5.16

@​langchain/openai==0.5.15

What's Changed

Full Changelog: https://github.com/langchain-ai/langchainjs/compare/@​langchain/openai==0.5.14...@​langchain/openai==0.5.15

@​langchain/openai==0.5.14

... (truncated)

Commits
  • 80fe1cf release(openai): 0.6.9
  • a7ed37e chore(core): release 0.3.72 (#8731)
  • 590b856 fix(openai): pass verbosity through (#8730)
  • ca6c3a8 fix(openai): pass verbosity through
  • e1a43c9 release(langchain): 0.3.31
  • 3703f42 release(core): 0.3.72
  • 44c10d6 release(community): 0.3.53 (#8727)
  • a4b7226 release(community): 0.3.53
  • 85d42df feat(core): Allow runnables to define custom stream chunk concat behavior (#8...
  • c72ff6d fix(js): Make hub prompts pulled with a model support structured outputs (#8725)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by hntrl, a new releaser for @​langchain/openai since your current version.


Updates langchain from 0.3.27 to 0.3.31

Release notes

Sourced from langchain's releases.

Release 0.3.29

Highlights

// Use in structured outputs
import { z } from "zod/v4";
const model = new ChatOpenAI(...).withStructuredOutput(
z.object({
foo: z.string(),
bar: z.number(),
}),
);

// Use in tools
import { tool } from "@langchain/core/tools";
import { z } from "zod/v4";
const multiply = tool(
({ a, b }) => a * b
{
name: "multiply",
description: "Multiply two numbers",
schema: z.object({
a: z.number(),
b: z.number(),
}),
}
);

import { ChatAnthropic } from "@langchain/anthropic";

const model = new ChatAnthropic({
  model: "claude-3-5-sonnet-20241022",
  temperature: 0,
}).bindTools([
  {
    type: "web_search_20250305",
    name: "web_search",
</tr></table> 

... (truncated)

Commits
  • e1a43c9 release(langchain): 0.3.31
  • 3703f42 release(core): 0.3.72
  • 44c10d6 release(community): 0.3.53 (#8727)
  • a4b7226 release(community): 0.3.53
  • 85d42df feat(core): Allow runnables to define custom stream chunk concat behavior (#8...
  • c72ff6d fix(js): Make hub prompts pulled with a model support structured outputs (#8725)
  • 18a7a4f feat(chroma): Default to Null Embedding Function for Chroma Collection (#8723)
  • 4f94d96 chore(release): aug 18 2025 (#8721)
  • 6b13f11 release(community): 0.3.52
  • b4613e7 Create Chroma collections with no EF
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by hntrl, a new releaser for langchain since your current version.


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

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

Bumps the langchain-packages group with 3 updates: [@langchain/core](https://github.com/langchain-ai/langchainjs), [@langchain/openai](https://github.com/langchain-ai/langchainjs) and [langchain](https://github.com/langchain-ai/langchainjs).


Updates `@langchain/core` from 0.3.57 to 0.3.72
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Changelog](https://github.com/langchain-ai/langchainjs/blob/main/release_workspace.js)
- [Commits](https://github.com/langchain-ai/langchainjs/compare/@langchain/core==0.3.57...@langchain/core==0.3.72)

Updates `@langchain/openai` from 0.5.11 to 0.6.9
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Changelog](https://github.com/langchain-ai/langchainjs/blob/main/release_workspace.js)
- [Commits](https://github.com/langchain-ai/langchainjs/compare/@langchain/openai==0.5.11...@langchain/openai==0.6.9)

Updates `langchain` from 0.3.27 to 0.3.31
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Changelog](https://github.com/langchain-ai/langchainjs/blob/main/release_workspace.js)
- [Commits](langchain-ai/langchainjs@langchain==0.3.27...langchain==0.3.31)

---
updated-dependencies:
- dependency-name: "@langchain/core"
  dependency-version: 0.3.72
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: langchain-packages
- dependency-name: "@langchain/openai"
  dependency-version: 0.6.9
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: langchain-packages
- dependency-name: langchain
  dependency-version: 0.3.31
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: langchain-packages
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Sep 3, 2025

Assignees

The following users could not be added as assignees: pederzh. Either the username does not exist or it does not have the correct permissions to be added as an assignee.

Labels

The following labels could not be found: automated, dependencies. 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 @github
Copy link
Author

dependabot bot commented on behalf of github Oct 6, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Oct 6, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/langchain-packages-dd96b38e52 branch October 6, 2025 06:38
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.

2 participants