Skip to content
This repository was archived by the owner on May 21, 2026. It is now read-only.

chore(deps): bump the langchain-packages group across 1 directory with 4 updates - #59

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/langchain-packages-4d04392838
Closed

chore(deps): bump the langchain-packages group across 1 directory with 4 updates#59
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/langchain-packages-4d04392838

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Oct 6, 2025

Copy link
Copy Markdown

Bumps the langchain-packages group with 4 updates in the / directory: @langchain/anthropic, @langchain/core, @langchain/openai and langchain.

Updates @langchain/anthropic from 0.3.28 to 0.3.30

Commits

Updates @langchain/core from 0.3.77 to 0.3.78

Commits
  • 23a92ed chore: release packages (#9069)
  • 93493ee feat(anthropic): support context management, memory tools, and sonnet-4.5 (#9...
  • 7dd3cec chore: add PR labeler (#9064)
  • 26ca2ff add embeddingColumnType and export indexes (#9009)
  • 84aee58 Fix: Add langsmith to import map to resolve Issue #9049 (#9059)
  • d6cea4a docs: Update qa_chat_history tutorial to use non-deprecated method (#9062)
  • 3c94076 fix(langchain): Bind schemas for other types of pulled hub prompts (#9057)
  • 027390f chore(deps): bump tar-fs from 2.1.3 to 2.1.4 (#9055)
  • 2f19cd5 feat: Add Perplexity support to universal chat model (#9028)
  • 68e7642 fix(openai): Fix broken OpenAI documentation link (#9043)
  • Additional commits viewable in compare view

Updates @langchain/openai from 0.6.13 to 0.6.14

Commits

Updates langchain from 0.3.27 to 0.3.35

Release notes

Sourced from langchain's releases.

langchain==0.3.33

What's Changed

Full Changelog: langchain-ai/langchainjs@langchain==0.3.32...langchain==0.3.33

langchain==0.3.32

What's Changed

New Contributors

Full Changelog: langchain-ai/langchainjs@langchain==0.3.31...langchain==0.3.32

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(),
}),
}
);
</tr></table>

... (truncated)

Commits
  • 23a92ed chore: release packages (#9069)
  • 93493ee feat(anthropic): support context management, memory tools, and sonnet-4.5 (#9...
  • 7dd3cec chore: add PR labeler (#9064)
  • 26ca2ff add embeddingColumnType and export indexes (#9009)
  • 84aee58 Fix: Add langsmith to import map to resolve Issue #9049 (#9059)
  • d6cea4a docs: Update qa_chat_history tutorial to use non-deprecated method (#9062)
  • 3c94076 fix(langchain): Bind schemas for other types of pulled hub prompts (#9057)
  • 027390f chore(deps): bump tar-fs from 2.1.3 to 2.1.4 (#9055)
  • 2f19cd5 feat: Add Perplexity support to universal chat model (#9028)
  • 68e7642 fix(openai): Fix broken OpenAI documentation link (#9043)
  • 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.


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

@dependabot @github

dependabot Bot commented on behalf of github Oct 6, 2025

Copy link
Copy Markdown
Author

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.

…h 4 updates

Bumps the langchain-packages group with 4 updates in the / directory: [@langchain/anthropic](https://github.com/langchain-ai/langchainjs), [@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/anthropic` from 0.3.28 to 0.3.30
- [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/anthropic==0.3.28...langchain==0.3.30)

Updates `@langchain/core` from 0.3.77 to 0.3.78
- [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.77...@langchain/core==0.3.78)

Updates `@langchain/openai` from 0.6.13 to 0.6.14
- [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/commits/@langchain/openai==0.6.14)

Updates `langchain` from 0.3.27 to 0.3.35
- [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.35)

---
updated-dependencies:
- dependency-name: "@langchain/anthropic"
  dependency-version: 0.3.30
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: langchain-packages
- dependency-name: "@langchain/core"
  dependency-version: 0.3.78
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: langchain-packages
- dependency-name: "@langchain/openai"
  dependency-version: 0.6.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: langchain-packages
- dependency-name: langchain
  dependency-version: 0.3.35
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: langchain-packages
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/langchain-packages-4d04392838 branch from 83bffa0 to c5a4e8e Compare October 8, 2025 07:38
@dependabot @github

dependabot Bot commented on behalf of github Oct 13, 2025

Copy link
Copy Markdown
Author

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

@dependabot @github

dependabot Bot commented on behalf of github Oct 13, 2025

Copy link
Copy Markdown
Author

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

@dependabot dependabot Bot closed this Oct 13, 2025
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/langchain-packages-4d04392838 branch October 13, 2025 21:13
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant