Skip to content

Bump langsmith, @langchain/langgraph and @langchain/openai in /samples/nodejs/langchain-multiturn#518

Closed
dependabot[bot] wants to merge 2 commits intomainfrom
dependabot/npm_and_yarn/samples/nodejs/langchain-multiturn/multi-7666ab1b60
Closed

Bump langsmith, @langchain/langgraph and @langchain/openai in /samples/nodejs/langchain-multiturn#518
dependabot[bot] wants to merge 2 commits intomainfrom
dependabot/npm_and_yarn/samples/nodejs/langchain-multiturn/multi-7666ab1b60

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 16, 2026

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

Updates langsmith from 0.3.67 to 0.5.20

Release notes

Sourced from langsmith's releases.

v0.5.2

What's Changed

Full Changelog: langchain-ai/langsmith-sdk@v0.5.1...v0.5.2

v0.5.1

What's Changed

New Contributors

Full Changelog: langchain-ai/langsmith-sdk@v0.5.0...v0.5.1

v0.5.0

What's Changed

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~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/langgraph from 0.3.12 to 1.2.8

Release notes

Sourced from @​langchain/langgraph's releases.

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

    Pregel.stream() and streamEvents() called combineAbortSignals() but discarded the dispose function, leaking one abort listener on the caller's signal per invocation. Over many invocations this caused unbounded memory growth as each leaked listener retained references to its associated graph execution state.

    • Use AbortSignal.any() on Node 20+ which handles listener lifecycle automatically via GC
    • Fall back to manual listener management on Node 18, with proper dispose() called when the stream completes or is cancelled
  • #2210 4d2e948 Thanks @​jackjin1997! - Fix AnyValue.update() returning false instead of true when values are received, aligning with all other channel implementations.

  • Updated dependencies [414a7ad]:

    • @​langchain/langgraph-sdk@​1.8.0

@​langchain/langgraph@​1.2.4

Patch Changes

@​langchain/langgraph@​1.2.3

Patch Changes

... (truncated)

Changelog

Sourced from @​langchain/langgraph's changelog.

1.2.8

Patch Changes

1.2.7

Patch Changes

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

1.2.5

Patch Changes

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

    Pregel.stream() and streamEvents() called combineAbortSignals() but discarded the dispose function, leaking one abort listener on the caller's signal per invocation. Over many invocations this caused unbounded memory growth as each leaked listener retained references to its associated graph execution state.

    • Use AbortSignal.any() on Node 20+ which handles listener lifecycle automatically via GC
    • Fall back to manual listener management on Node 18, with proper dispose() called when the stream completes or is cancelled
  • #2210 4d2e948 Thanks @​jackjin1997! - Fix AnyValue.update() returning false instead of true when values are received, aligning with all other channel implementations.

  • Updated dependencies [414a7ad]:

    • @​langchain/langgraph-sdk@​1.8.0

1.2.4

Patch Changes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~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.5.18 to 1.4.4

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](https://www.npmjs.com/~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.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 16, 2026
@github-actions github-actions Bot added the Samples Changes to Samples label Apr 16, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/samples/nodejs/langchain-multiturn/multi-7666ab1b60 branch from 67bc82c to 0a58496 Compare April 22, 2026 16:43
Bumps [langsmith](https://github.com/langchain-ai/langsmith-sdk) to 0.5.20 and updates ancestor dependencies [langsmith](https://github.com/langchain-ai/langsmith-sdk), [@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.67 to 0.5.20
- [Release notes](https://github.com/langchain-ai/langsmith-sdk/releases)
- [Commits](https://github.com/langchain-ai/langsmith-sdk/commits)

Updates `@langchain/langgraph` from 0.3.12 to 1.2.8
- [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@1.2.8/libs/langgraph-core)

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

---
updated-dependencies:
- dependency-name: langsmith
  dependency-version: 0.5.20
  dependency-type: indirect
- dependency-name: "@langchain/langgraph"
  dependency-version: 1.2.8
  dependency-type: direct:production
- dependency-name: "@langchain/openai"
  dependency-version: 1.4.4
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/samples/nodejs/langchain-multiturn/multi-7666ab1b60 branch from 0a58496 to 1e0bec2 Compare April 22, 2026 16:57
@MattB-msft
Copy link
Copy Markdown
Member

@dependabot rebase

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 24, 2026

Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!

If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@MattB-msft
Copy link
Copy Markdown
Member

@dependabot recreate

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 24, 2026

The dependabot.yml entry that created this PR has been deleted so this PR can't be recreated. Please close the PR so Dependabot can create a new one with the current dependabot.yml.

@MattB-msft MattB-msft closed this Apr 24, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 24, 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/samples/nodejs/langchain-multiturn/multi-7666ab1b60 branch April 24, 2026 19:33
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 Samples Changes to Samples

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant