Skip to content

Bump langsmith, @langchain/core, @langchain/langgraph and @langchain/openai#606

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/multi-385185d449
Closed

Bump langsmith, @langchain/core, @langchain/langgraph and @langchain/openai#606
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/multi-385185d449

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 14, 2026

Bumps langsmith to 0.7.0 and updates ancestor dependencies langsmith, @langchain/core, @langchain/langgraph and @langchain/openai. These dependencies need to be updated together.

Updates langsmith from 0.3.87 to 0.7.0

Release notes

Sourced from langsmith's releases.

v0.7.0

What's Changed

New Contributors

Full Changelog: langchain-ai/langsmith-sdk@v0.6.9...v0.7.0

v0.6.9

What's Changed

Full Changelog: langchain-ai/langsmith-sdk@v0.6.8...v0.6.9

v0.6.8

What's Changed

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for langsmith since your current version.

Install script changes

This version modifies prepublish script that runs during installation. Review the package contents before updating.


Updates @langchain/core from 0.3.80 to 1.1.46

Release notes

Sourced from @​langchain/core's releases.

@​langchain/core@​1.1.46

Patch Changes

  • #10847 1659e7d Thanks @​hntrl! - chore(core): reduce transitive dependency exposure and tighten release hygiene

    Remove direct runtime dependencies on ansi-styles, camelcase, and decamelize by inlining equivalent logic in core internals, and enable npm provenance in the release workflow.

  • #10790 ef78bc6 Thanks @​Genmin! - fix(core): keep different content block types separate when merging chunks

@​langchain/core@​1.1.41

Patch Changes

@​langchain/core@​1.1.40

Patch Changes

  • #10694 d3e0809 Thanks @​hntrl! - refactor(core): decouple tracer-only metadata defaults from runnable metadata
    • Add tracer-scoped inheritable metadata/tag options in callback manager while keeping backward-compatible aliases.
    • Move configurable-to-tracing metadata derivation into a tracer-only path and keep ensureConfig metadata mirroring limited to model.
    • Update LangChainTracer default metadata/tag handling and add regression tests for stream events metadata behavior.

@​langchain/core@​1.1.39

Patch Changes

@​langchain/core@​1.1.38

Patch Changes

@​langchain/core@​1.1.37

Patch Changes

  • #10511 6933769 Thanks @​hntrl! - cache Zod-to-JSON-Schema conversions in toJsonSchema()

  • #10541 50d5f32 Thanks @​jacoblee93! - revert: Revert "feat(core): Add all chat model/llm invocation params to metadata"

  • #10509 5552999 Thanks @​hntrl! - feat(openai): add support for phase parameter on Responses API messages

    • Extract phase from message output items and surface it on text content blocks
    • Support phase in streaming via response.output_item.added events
    • Round-trip phase through both raw provider and standard content paths
    • Move phase into extras dict in the core standard content translator
  • #10528 8331833 Thanks @​christian-bromann! - fix(core): normalize single-block content in mergeContent

... (truncated)

Commits
  • ed9925b chore: version packages (#10850)
  • fb8bfbf chore(deps): bump mem0ai from 2.4.6 to 3.0.3 (#10870)
  • 3481666 chore(deps-dev): bump hono from 4.12.14 to 4.12.18 (#10875)
  • c9cfc7d chore(deps): bump publint from 0.3.18 to 0.3.19 (#10869)
  • 4434dea chore(deps): bump @​lancedb/lancedb from 0.19.1 to 0.26.2 (#10867)
  • 225bbca chore(deps): bump the gh-actions-minor-and-patch group with 3 updates (#10852)
  • 2a5713d chore(deps): bump exa-js from 1.10.2 to 1.10.3 (#10851)
  • 7b45456 chore(deps): bump @​cloudflare/workers-types from 4.20260501.1 to 4.20260508.1...
  • c7f335a chore(deps): bump openai from 4.104.0 to 6.37.0 (#10864)
  • 3978b6f chore(deps): bump @​aws-sdk/client-bedrock-agent-runtime from 3.1034.0 to 3.10...
  • Additional commits viewable in compare view

Updates @langchain/langgraph from 0.2.20 to 1.3.0

Release notes

Sourced from @​langchain/langgraph's releases.

@​langchain/langgraph-checkpoint-mongodb@​1.3.0

Minor Changes

  • #2326 36916ed Thanks @​tadjik1! - feat: add MongoDBStore for long-term memory

    New MongoDBStore class for persisting data across threads and sessions — user preferences, learned facts, agent memory, and more.

    • Store and retrieve JSON documents organized by hierarchical namespaces
    • Search with field-based filtering and comparison operators
    • Vector similarity search with manual embedding (bring your own embedding model) or auto embedding (MongoDB generates embeddings via Voyage AI)
    • Automatic document expiration via configurable TTL

@​langchain/langgraph@​1.2.9

Patch Changes

@​langchain/langgraph@​1.2.8

Patch Changes

@​langchain/langgraph@​1.2.7

Patch Changes

@​langchain/langgraph@​1.2.6

Patch Changes

  • #2241 6ee23e8 Thanks @​pawel-twardziak! - feat: add browser support for interrupt, writer, and other Node-only exports

    Export interrupt, writer, pushMessage, getStore, getWriter, getConfig, getPreviousState, getCurrentTaskInput from web.ts and add a "browser" condition to the "." package export so browser bundlers resolve to web.js instead of pulling in node:async_hooks.

  • #2245 77af976 Thanks @​hntrl! - revert abort signal change that was causing problematic errors

  • #2242 bdcf290 Thanks @​hntrl! - clean up resolved checkpointer promises to reduce memory retention

  • Updated dependencies [88726df, 7dfcbff]:

    • @​langchain/langgraph-sdk@​1.8.1

@​langchain/langgraph@​1.2.5

Patch Changes

  • #2213 a09932a Thanks @​hntrl! - fix(core): prevent AbortSignal listener leak in stream() and streamEvents()

... (truncated)

Changelog

Sourced from @​langchain/langgraph's changelog.

1.3.0

Minor Changes

  • #2314 085a07f Thanks @​christian-bromann! - Add the in-process event streaming runtime behind streamEvents.

    LangGraph now exposes the core primitives for event-based streaming, including StreamChannel, StreamMux, GraphRunStream, SubgraphRunStream, native stream transformers, and protocol event conversion utilities. These APIs let graphs emit ordered protocol events, derive additional projections, expose custom stream channels, and bridge in-process runs to remote SDK clients.

    The runtime includes built-in transformers for messages, values, lifecycle events, and subgraph discovery. It also adds support for transformer registration during graph execution, forwarding remote StreamChannel output, subgraph-aware event routing, event log multiplexing, and checkpoint-aware values streams.

    This release also expands test coverage across Pregel streaming, event conversion, stream muxing, stream channels, run streams, lifecycle transformers, subgraph transformers, and type-level streaming behavior.

Patch Changes

1.2.9

Patch Changes

1.2.8

Patch Changes

1.2.7

Patch Changes

... (truncated)

Commits
  • aba243a chore: version packages (#2313)
  • 9102d52 fix(langgraph): propagate tracer metadata defaults from configurable (#2315)
  • b7c196b fix: export missing types for typescript 6.0 declaration file compatibility (...
  • 9e98075 chore: version packages (#2294)
  • e42c2c8 feat: enhance runtime with executionInfo and serverInfo (#2275)
  • ed1107d chore: version packages (#2283)
  • 2b62610 feat(sdk): support for headless tools (#2281)
  • 05810fe Fix Vue subagent grouping during streaming (#2274)
  • 271f975 chore(deps): bump the langchain group across 1 directory with 7 updates (#2270)
  • d88f29b chore(repo): migrate linting and formatting from ESLint/Prettier to oxlint/ox...
  • Additional commits viewable in compare view
Maintainer changes

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

Install script changes

This version adds prepublish script that runs during installation. Review the package contents before updating.


Updates @langchain/openai from 0.3.11 to 1.4.5

Release notes

Sourced from @​langchain/openai's releases.

@​langchain/openai@​1.4.4

Patch Changes

  • #10681 2301260 Thanks @​hntrl! - fix(openai): add index to streaming reasoning content blocks for proper chunk merging

@​langchain/openai@​1.4.3

Patch Changes

@​langchain/openai@​1.4.2

Patch Changes

@​langchain/openai@​1.4.1

Patch Changes

@​langchain/openai@​1.4.0

Minor Changes

  • #10509 5552999 Thanks @​hntrl! - feat(openai): add support for phase parameter on Responses API messages
    • Extract phase from message output items and surface it on text content blocks
    • Support phase in streaming via response.output_item.added events
    • Round-trip phase through both raw provider and standard content paths
    • Move phase into extras dict in the core standard content translator

Patch Changes

@​langchain/openai@​1.3.1

Patch Changes

  • #10481 478652c Thanks @​hnustwjj! - fix(openai): detect DeepSeek context overflow errors as ContextOverflowError

    DeepSeek returns maximum context length in 400 error messages when the context limit is exceeded. These are now recognized by wrapOpenAIClientError, so downstream code (e.g. summarization middleware fallback) can handle them correctly.

  • #10507 52e501b Thanks @​App-arently! - fix(openai): guard JSON.parse in streaming json_schema when text is empty

  • Updated dependencies [bbbfea1]:

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​langchain/openai 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 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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

…openai

Bumps [langsmith](https://github.com/langchain-ai/langsmith-sdk) to 0.7.0 and updates ancestor dependencies [langsmith](https://github.com/langchain-ai/langsmith-sdk), [@langchain/core](https://github.com/langchain-ai/langchainjs), [@langchain/langgraph](https://github.com/langchain-ai/langgraphjs/tree/HEAD/libs/langgraph-core) and [@langchain/openai](https://github.com/langchain-ai/langchainjs). These dependencies need to be updated together.


Updates `langsmith` from 0.3.87 to 0.7.0
- [Release notes](https://github.com/langchain-ai/langsmith-sdk/releases)
- [Commits](https://github.com/langchain-ai/langsmith-sdk/commits/v0.7.0)

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

Updates `@langchain/langgraph` from 0.2.20 to 1.3.0
- [Release notes](https://github.com/langchain-ai/langgraphjs/releases)
- [Changelog](https://github.com/langchain-ai/langgraphjs/blob/main/libs/langgraph-core/CHANGELOG.md)
- [Commits](https://github.com/langchain-ai/langgraphjs/commits/@langchain/langgraph-checkpoint-mongodb@1.3.0/libs/langgraph-core)

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

---
updated-dependencies:
- dependency-name: langsmith
  dependency-version: 0.7.0
  dependency-type: indirect
- dependency-name: "@langchain/core"
  dependency-version: 1.1.46
  dependency-type: direct:production
- dependency-name: "@langchain/langgraph"
  dependency-version: 1.3.0
  dependency-type: direct:production
- dependency-name: "@langchain/openai"
  dependency-version: 1.4.5
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 14, 2026
@aws-amplify-us-east-1
Copy link
Copy Markdown

This pull request is automatically being deployed by Amplify Hosting (learn more).

Access this pull request here: https://pr-606.d1xp2kmk6zrv44.amplifyapp.com

@lynnfaraday
Copy link
Copy Markdown
Contributor

Covered by the other langchain PR

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 14, 2026

OK, I won't notify you again about this release, but will get in touch when a new version is available. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/multi-385185d449 branch May 14, 2026 04:32
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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant