Skip to content

chore(deps): bump the minor-and-patch group across 1 directory with 12 updates - #24

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-c497fc0eaf
Open

chore(deps): bump the minor-and-patch group across 1 directory with 12 updates#24
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-c497fc0eaf

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 27, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor-and-patch group with 10 updates in the / directory:

Package From To
@langchain/anthropic 1.5.1 1.5.2
@langchain/langgraph 1.4.7 1.4.8
@langchain/openai 1.5.3 1.5.5
@langchain/openrouter 0.4.3 0.4.5
@openrouter/sdk 0.13.24 0.13.67
deepagents 1.10.7 1.11.1
fs-extra 11.3.6 11.4.0
langchain 1.5.3 1.5.4
langsmith 0.7.17 0.8.7
web-tree-sitter 0.26.10 0.26.11

Updates @langchain/anthropic from 1.5.1 to 1.5.2

Release notes

Sourced from @​langchain/anthropic's releases.

@​langchain/anthropic@​1.5.2

Patch Changes

Commits

Updates @langchain/core from 1.2.1 to 1.2.3

Release notes

Sourced from @​langchain/core's releases.

@​langchain/core@​1.2.3

Patch Changes

  • #11200 08e5888 Thanks @​hntrl! - fix(aws): normalize and safely replay Bedrock reasoning blocks

    Emit standard reasoning blocks with preserved signatures, omit incomplete signature-only reasoning during replay, and retain compatibility with legacy and redacted Bedrock reasoning.

@​langchain/core@​1.2.2

Patch Changes

  • #11171 82bef01 Thanks @​christian-bromann! - fix(core): coerce string v1 AIMessage content to text blocks

    Prevent contentBlocks.push is not a function when constructing an AIMessage with response_metadata.output_version === "v1" and string content (common in serialized LangGraph stream payloads).

Commits
  • 82a6b8e chore: version packages (#11202)
  • 08e5888 fix(aws): normalize Bedrock reasoning blocks (#11200)
  • 21aaeb0 fix: patch 13 high/critical Dependabot alerts (#11199)
  • 782c7f2 chore(dev): bump @​types/node from 25.9.1 to 26.1.0 in the types group across ...
  • f51f338 chore: version packages (#11176)
  • 09e7f6d fix(openai): drop tool_call content blocks from chat completions input (#11...
  • a9f123a fix(openai): filter out content blocks the chat completions api rejects as in...
  • cc39f56 chore: version packages (#11172)
  • 82bef01 fix(core): coerce string v1 AIMessage content to text blocks (#11171)
  • 8a7c5f8 chore: version packages (#11170)
  • Additional commits viewable in compare view

Updates @langchain/langgraph from 1.4.7 to 1.4.8

Release notes

Sourced from @​langchain/langgraph's releases.

@​langchain/langgraph@​1.4.8

Patch Changes

Changelog

Sourced from @​langchain/langgraph's changelog.

1.4.8

Patch Changes

Commits

Updates @langchain/langgraph-sdk from 1.9.25 to 1.9.28

Release notes

Sourced from @​langchain/langgraph-sdk's releases.

@​langchain/langgraph-sdk@​1.9.28

Patch Changes

  • #2622 cf2407a Thanks @​christian-bromann! - fix(sdk): clear hydrate interrupt allowlist on respond()

    submit() already cleared #hydratedActiveInterruptIds so a new run's live input.requested events were not dropped as historical. respond() / respondAll() (via dispatchResume) did not, so a follow-on HITL after resume never appeared on stream.interrupt and free-text submits could resume with the wrong payload.

  • #2613 82a320f Thanks @​sreeramsama! - Fix useStream crash (TypeError: Cannot read properties of null (reading 'fetch')) when a thread is cleared while hydration is in flight. The stale hydrate now bails immediately after the getState() await — it no longer applies the fetched state to the thread that was left, nor opens a reconnect via threads.stream(null, …).

@​langchain/langgraph-sdk@​1.9.27

Patch Changes

  • #2606 fa4658c Thanks @​christian-bromann! - fix(sdk): omit carried since on SSE reconnect

    Protocol seq is connection-scoped: a new POST /stream/events re-numbers Redis replay from 1, so advancing since from observed seqs and sending it after a successful open filtered out the full history (heartbeats only). An explicit caller since is still sent until the stream connects (including pre-ready retries); post-connect reconnects omit since and rely on durable event_id dedup.

@​langchain/langgraph-sdk@​1.9.26

Patch Changes

  • #2605 f326b89 Thanks @​christian-bromann! - fix(sdk): keep SSE reconnect enabled with custom fetch

    Auth/proxy fetch shims previously forced maxReconnectAttempts: 0, so HITL waits that lost /stream/events (e.g. ERR_QUIC_PROTOCOL_ERROR) never recovered and left respond()/submit() spinning. Fail-fast test mocks should pass maxReconnectAttempts: 0 explicitly. Also plumbs reconnect options through framework useStream bindings.

  • #2602 c201256 Thanks @​HugoDurand! - fix(sdk): support clearing a cron's end time via crons.update(cronId, { endTime: null })

    CronsClient.update now accepts endTime: null to clear a previously set cron end time; omitting endTime still leaves it unchanged. The field was typed string, so callers could not express "clear" even though the request already forwards an explicit null.

Changelog

Sourced from @​langchain/langgraph-sdk's changelog.

1.9.28

Patch Changes

  • #2622 cf2407a Thanks @​christian-bromann! - fix(sdk): clear hydrate interrupt allowlist on respond()

    submit() already cleared #hydratedActiveInterruptIds so a new run's live input.requested events were not dropped as historical. respond() / respondAll() (via dispatchResume) did not, so a follow-on HITL after resume never appeared on stream.interrupt and free-text submits could resume with the wrong payload.

  • #2613 82a320f Thanks @​sreeramsama! - Fix useStream crash (TypeError: Cannot read properties of null (reading 'fetch')) when a thread is cleared while hydration is in flight. The stale hydrate now bails immediately after the getState() await — it no longer applies the fetched state to the thread that was left, nor opens a reconnect via threads.stream(null, …).

1.9.27

Patch Changes

  • #2606 fa4658c Thanks @​christian-bromann! - fix(sdk): omit carried since on SSE reconnect

    Protocol seq is connection-scoped: a new POST /stream/events re-numbers Redis replay from 1, so advancing since from observed seqs and sending it after a successful open filtered out the full history (heartbeats only). An explicit caller since is still sent until the stream connects (including pre-ready retries); post-connect reconnects omit since and rely on durable event_id dedup.

1.9.26

Patch Changes

  • #2605 f326b89 Thanks @​christian-bromann! - fix(sdk): keep SSE reconnect enabled with custom fetch

    Auth/proxy fetch shims previously forced maxReconnectAttempts: 0, so HITL waits that lost /stream/events (e.g. ERR_QUIC_PROTOCOL_ERROR) never recovered and left respond()/submit() spinning. Fail-fast test mocks should pass maxReconnectAttempts: 0 explicitly. Also plumbs reconnect options through framework useStream bindings.

  • #2602 c201256 Thanks @​HugoDurand! - fix(sdk): support clearing a cron's end time via crons.update(cronId, { endTime: null })

    CronsClient.update now accepts endTime: null to clear a previously set cron end time; omitting endTime still leaves it unchanged. The field was typed string, so callers could not express "clear" even though the request already forwards an explicit null.

Commits
  • 483e6df chore: version packages (#2621)
  • cf2407a fix(sdk): clear hydrate interrupt allowlist on respond() (#2622)
  • 119b49c chore(deps): bump the vue group with 2 updates (#2619)
  • c14b070 chore(deps): bump the react group with 2 updates (#2620)
  • 82a320f fix(sdk): guard useStream hydrate reconnect against a cleared thread id (#2613)
  • afb42cd chore: version packages (#2607)
  • fa4658c fix(sdk): omit since on SSE reconnect (#2606)
  • 3dccad1 chore: version packages (#2603)
  • f326b89 fix(sdk): keep SSE reconnect enabled with custom fetch (#2605)
  • c201256 fix(sdk): support clearing cron end_time via update({ endTime: null }) (#2602)
  • Additional commits viewable in compare view

Updates @langchain/openai from 1.5.3 to 1.5.5

Release notes

Sourced from @​langchain/openai's releases.

@​langchain/openai@​1.5.5

Patch Changes

@​langchain/openai@​1.5.4

Patch Changes

Commits
  • f51f338 chore: version packages (#11176)
  • 09e7f6d fix(openai): drop tool_call content blocks from chat completions input (#11...
  • a9f123a fix(openai): filter out content blocks the chat completions api rejects as in...
  • cc39f56 chore: version packages (#11172)
  • 82bef01 fix(core): coerce string v1 AIMessage content to text blocks (#11171)
  • 8a7c5f8 chore: version packages (#11170)
  • 988ca7d fix(openai): emit output_text for assistant content in responses input (#11...
  • e233f41 chore: version packages (#11168)
  • 4c7a06e fix(langchain): malformed tool input schemas are unrecoverable (#11167)
  • 1a1fe3c chore(deps): bump the aws group across 1 directory with 7 updates (#11134)
  • Additional commits viewable in compare view

Updates @langchain/openrouter from 0.4.3 to 0.4.5

Release notes

Sourced from @​langchain/openrouter's releases.

@​langchain/openrouter@​0.4.5

Patch Changes

@​langchain/openrouter@​0.4.4

Patch Changes

  • Updated dependencies [988ca7d]:
    • @​langchain/openai@​1.5.4
Changelog

Sourced from @​langchain/openrouter's changelog.

0.4.5

Patch Changes

0.4.4

Patch Changes

  • Updated dependencies [988ca7d]:
    • @​langchain/openai@​1.5.4
Commits

Updates @openrouter/sdk from 0.13.24 to 0.13.67

Release notes

Sourced from @​openrouter/sdk's releases.

typescript - v0.13.67 - 2026-07-20 17:05:01

Generated by Speakeasy CLI

@​openrouter/sdk 0.13.67

Typescript SDK Changes:

  • openrouter.endpoints.listZdrEndpoints(): error.status[403] Added
  • openrouter.endpoints.list(): error.status[403] Added
  • openrouter.models.get(): error.status[403] Added
  • openrouter.models.list(): error.status[403] Added
  • openrouter.models.count(): error.status[403] Added
  • openrouter.models.listForUser(): error.status[403] Added

Generated with Speakeasy CLI 1.787.0

Publishing Completed

typescript - v0.13.66 - 2026-07-19 16:57:34

Generated by Speakeasy CLI

@​openrouter/sdk 0.13.66

Typescript SDK Changes:

  • openrouter.videoGeneration.generate():
    • request.videoGenerationRequest.prompt Changed

Generated with Speakeasy CLI 1.787.0

Publishing Completed

typescript - v0.13.65 - 2026-07-17 20:59:36

Generated by Speakeasy CLI

@​openrouter/sdk 0.13.65

Typescript SDK Changes:

  • openrouter.guardrails.list(): response.data[].contentFilters[].action.enum(flag) Added
  • openrouter.guardrails.create():
    • request.createGuardrailRequest.contentFilters[].action.enum(flag) Added
    • response.data.contentFilters[].action.enum(flag) Added
  • openrouter.guardrails.get(): response.data.contentFilters[].action.enum(flag) Added
  • openrouter.guardrails.update():
    • request.updateGuardrailRequest.contentFilters[].action.enum(flag) Added
    • response.data.contentFilters[].action.enum(flag) Added

Generated with Speakeasy CLI 1.787.0

Publishing Completed

typescript - v0.13.64 - 2026-07-17 18:34:43

Generated by Speakeasy CLI

2026-07-17 18:34:43

... (truncated)

Changelog

Sourced from @​openrouter/sdk's changelog.

2025-08-22 16:09:25

Changes

Based on:

Generated

  • [typescript v0.1.2] .

2025-09-23 21:23:27

Changes

Based on:

Generated

  • [typescript v0.0.0-beta.2] .

Releases

2025-10-01 17:53:43

Changes

Based on:

Generated

  • [typescript v0.0.0-beta.17] .

Releases

2025-10-18 05:44:43

Changes

Based on:

Generated

  • [typescript v0.0.0-beta.41] .

Releases

2025-10-18 19:30:25

Changes

Based on:

Generated

  • [typescript v0.0.0-beta.42] .

Releases

... (truncated)

Commits
  • d4d6739 chore: 🐝 Update SDK - Generate (spec change merged) 0.13.67 (#638)
  • 79d8071 chore: update OpenAPI spec from monorepo (#637)
  • da2fc31 chore: 🐝 Update SDK - Generate (spec change merged) 0.13.66 (#636)
  • ddbd5c2 chore: update OpenAPI spec from monorepo (#635)
  • ac0d221 chore: 🐝 Update SDK - Generate (spec change merged) 0.13.65 (#634)
  • b94aa64 chore: update OpenAPI spec from monorepo (#633)
  • 71eedef chore: 🐝 Update SDK - Generate (spec change merged) 0.13.64 (#632)
  • 67758df chore: update OpenAPI spec from monorepo (#630)
  • 6966dfd chore: 🐝 Update SDK - Generate (spec change merged) 0.13.63 (#629)
  • d172a5c chore: update OpenAPI spec from monorepo (#628)
  • Additional commits viewable in compare view

Updates deepagents from 1.10.7 to 1.11.1

Release notes

Sourced from deepagents's releases.

deepagents@1.11.1

Patch Changes

  • #693 2ebb178 Thanks @​colifran! - fix(deepagents): return recoverable errors for invalid/denied filesystem tool paths instead of throwing

deepagents@1.11.0

Minor Changes

  • #671 6ae9d1e Thanks @​hntrl! - feat(filesystem): add allowlist for filesystem middleware tools

  • #669 4643148 Thanks @​hntrl! - feat(deepagents): add structured system prompt configuration

  • #673 eb18c70 Thanks @​hntrl! - feat(backends): add delete protocol support

    Adds a DeleteResult type and optional backend delete method, preserves delete through backend protocol adaptation, and implements file deletion across the built-in state, store, filesystem, composite, context hub, sandbox, and node-vfs backends.

Patch Changes

deepagents@1.10.8

Patch Changes

  • #668 7c8a770 Thanks @​colifran! - fix(deepagents): fast-glob follows directory symlink cycles leading to ELOOP crashes
Commits
  • 60e3211 chore: version packages (#694)
  • 2ebb178 fix(deepagents): return recoverable errors for invalid/denied filesystem tool...
  • f127e3d chore: version packages (#676)
  • 39a7049 fix(deepagents): backend adapter drops route prefixes (#691)
  • a8c190c ci: cover example Dockerfile with Dependabot (#681)
  • 64c91ad chore: apply Socket optimized package overrides (#682)
  • cc26c41 fix(deepagents): merge custom middleware by name (#672)
  • f09bc61 feat(deepagents): implement delete across backends (#680)
  • 6ae9d1e feat(deepagents): add filesystem tool allowlist (#671)
  • eb18c70 feat(deepagents): add delete protocol support (#673)
  • Additional commits viewable in compare view

Updates fs-extra from 11.3.6 to 11.4.0

Changelog

Sourced from fs-extra's changelog.

11.4.0 / 2026-07-23

  • Proper EEXIST error when trying to create a symlink and the dest already exists as a broken symlink (#925, #1076)
Commits

Updates langchain from 1.5.3 to 1.5.4

Release notes

Sourced from langchain's releases.

langchain@1.5.4

Patch Changes

Commits

Updates langsmith from 0.7.17 to 0.8.7

Release notes

Sourced from langsmith's releases.

v0.8.7

What's Changed

Full Changelog: langchain-ai/langsmith-sdk@v0.8.6...v0.8.7

v0.8.6

What's Changed

New Contributors

Full Changelog: langchain-ai/langsmith-sdk@v0.8.5...v0.8.6

v0.8.5

What's Changed

... (truncated)

Commits

Updates web-tree-sitter from 0.26.10 to 0.26.11

Release notes

Sourced from web-tree-sitter's releases.

v0.26.11

What's Cha...

Description has been truncated

…2 updates

Bumps the minor-and-patch group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@langchain/anthropic](https://github.com/langchain-ai/langchainjs) | `1.5.1` | `1.5.2` |
| [@langchain/langgraph](https://github.com/langchain-ai/langgraphjs/tree/HEAD/libs/langgraph-core) | `1.4.7` | `1.4.8` |
| [@langchain/openai](https://github.com/langchain-ai/langchainjs) | `1.5.3` | `1.5.5` |
| [@langchain/openrouter](https://github.com/langchain-ai/langchainjs/tree/HEAD/libs/providers/langchain-openrouter) | `0.4.3` | `0.4.5` |
| [@openrouter/sdk](https://github.com/OpenRouterTeam/typescript-sdk) | `0.13.24` | `0.13.67` |
| [deepagents](https://github.com/langchain-ai/deepagentsjs) | `1.10.7` | `1.11.1` |
| [fs-extra](https://github.com/jprichardson/node-fs-extra) | `11.3.6` | `11.4.0` |
| [langchain](https://github.com/langchain-ai/langchainjs) | `1.5.3` | `1.5.4` |
| [langsmith](https://github.com/langchain-ai/langsmith-sdk) | `0.7.17` | `0.8.7` |
| [web-tree-sitter](https://github.com/tree-sitter/tree-sitter/tree/HEAD/lib/binding_web) | `0.26.10` | `0.26.11` |



Updates `@langchain/anthropic` from 1.5.1 to 1.5.2
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Commits](https://github.com/langchain-ai/langchainjs/compare/@langchain/anthropic@1.5.1...@langchain/anthropic@1.5.2)

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

Updates `@langchain/langgraph` from 1.4.7 to 1.4.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.4.8/libs/langgraph-core)

Updates `@langchain/langgraph-sdk` from 1.9.25 to 1.9.28
- [Release notes](https://github.com/langchain-ai/langgraphjs/releases)
- [Changelog](https://github.com/langchain-ai/langgraphjs/blob/main/libs/sdk/CHANGELOG.md)
- [Commits](https://github.com/langchain-ai/langgraphjs/commits/@langchain/langgraph-sdk@1.9.28/libs/sdk)

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

Updates `@langchain/openrouter` from 0.4.3 to 0.4.5
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Changelog](https://github.com/langchain-ai/langchainjs/blob/main/libs/providers/langchain-openrouter/CHANGELOG.md)
- [Commits](https://github.com/langchain-ai/langchainjs/commits/@langchain/openrouter@0.4.5/libs/providers/langchain-openrouter)

Updates `@openrouter/sdk` from 0.13.24 to 0.13.67
- [Release notes](https://github.com/OpenRouterTeam/typescript-sdk/releases)
- [Changelog](https://github.com/OpenRouterTeam/typescript-sdk/blob/main/RELEASES.md)
- [Commits](OpenRouterTeam/typescript-sdk@v0.13.24...v0.13.67)

Updates `deepagents` from 1.10.7 to 1.11.1
- [Release notes](https://github.com/langchain-ai/deepagentsjs/releases)
- [Commits](https://github.com/langchain-ai/deepagentsjs/compare/deepagents@1.10.7...deepagents@1.11.1)

Updates `fs-extra` from 11.3.6 to 11.4.0
- [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md)
- [Commits](jprichardson/node-fs-extra@11.3.6...11.4.0)

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

Updates `langsmith` from 0.7.17 to 0.8.7
- [Release notes](https://github.com/langchain-ai/langsmith-sdk/releases)
- [Commits](langchain-ai/langsmith-sdk@v0.7.17...v0.8.7)

Updates `web-tree-sitter` from 0.26.10 to 0.26.11
- [Release notes](https://github.com/tree-sitter/tree-sitter/releases)
- [Commits](https://github.com/tree-sitter/tree-sitter/commits/v0.26.11/lib/binding_web)

---
updated-dependencies:
- dependency-name: "@langchain/anthropic"
  dependency-version: 1.5.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@langchain/core"
  dependency-version: 1.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@langchain/langgraph"
  dependency-version: 1.4.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@langchain/langgraph-sdk"
  dependency-version: 1.9.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@langchain/openai"
  dependency-version: 1.5.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@langchain/openrouter"
  dependency-version: 0.4.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@openrouter/sdk"
  dependency-version: 0.13.67
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: deepagents
  dependency-version: 1.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: fs-extra
  dependency-version: 11.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: langchain
  dependency-version: 1.5.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: langsmith
  dependency-version: 0.8.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: web-tree-sitter
  dependency-version: 0.26.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Jul 27, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies, npm. 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
dependabot Bot requested a review from RaheesAhmed as a code owner July 27, 2026 09:27
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.

0 participants