Skip to content

Comments

chore(deps): bump the production-dependencies group across 1 directory with 74 updates#14

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/main/production-dependencies-daa6a547e6
Closed

chore(deps): bump the production-dependencies group across 1 directory with 74 updates#14
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/main/production-dependencies-daa6a547e6

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 9, 2026

Bumps the production-dependencies group with 45 updates in the / directory:

Package From To
@langchain/community 1.1.4 1.1.12
@langchain/core 1.1.15 1.1.19
@langchain/groq 1.0.1 1.0.4
@langchain/langgraph 1.1.0 1.1.4
@tavily/core 0.5.13 0.7.1
ai 6.0.57 6.0.77
autoprefixer 10.4.15 10.4.24
axios 1.13.2 1.13.5
framer-motion 12.23.24 12.33.0
isomorphic-dompurify 2.33.0 2.36.0
jspdf 4.0.0 4.1.0
lightweight-charts 5.0.9 5.1.0
lucide-react 0.446.0 0.563.0
postcss 8.4.31 8.5.6
react 19.2.1 19.2.4
@types/react 18.2.22 19.2.13
react-day-picker 9.13.0 9.13.1
react-dom 19.2.1 19.2.4
@types/react-dom 18.2.7 19.2.3
react-hook-form 7.66.1 7.71.1
swr 2.3.6 2.4.0
typescript 5.2.2 5.9.3
@babel/code-frame 7.27.1 7.29.0
@babel/compat-data 7.28.5 7.29.0
@babel/core 7.28.5 7.29.0
@babel/runtime 7.28.4 7.28.6
@emnapi/core 1.7.1 1.8.1
@emnapi/runtime 1.7.1 1.8.1
@floating-ui/core 1.7.3 1.7.4
@floating-ui/dom 1.7.4 1.7.5
@floating-ui/react-dom 2.1.6 2.1.7
@mongodb-js/saslprep 1.3.2 1.4.5
@types/d3-shape 3.1.7 3.1.8
axe-core 4.11.0 4.11.1
core-js 3.47.0 3.48.0
d3-format 3.1.0 3.1.2
es-abstract 1.24.0 1.24.1
es-iterator-helpers 1.2.1 1.2.2
esquery 1.6.0 1.7.0
fastq 1.19.1 1.20.1
get-tsconfig 4.13.0 4.13.6
langsmith 0.4.7 0.4.12
preact 10.28.2 10.28.3
react-remove-scroll 2.7.1 2.7.2
which-typed-array 1.1.19 1.1.20

Updates @langchain/community from 1.1.4 to 1.1.12

Release notes

Sourced from @​langchain/community's releases.

@​langchain/community@​1.1.12

Patch Changes

@​langchain/community@​1.1.11

Patch Changes

@​langchain/community@​1.1.10

Patch Changes

  • #9883 ea00005 Thanks @​FilipZmijewski! - support aborting for Model Gateway and WatsonxLLM for IBM

  • #9896 70f329a Thanks @​Axadali! - Add score normalization feature to PGVectorStore allowing users to choose between returning raw distances or normalized similarity scores. This makes PGVectorStore consistent with other vector stores in the LangChain ecosystem where higher scores indicate greater similarity. Maintains full backward compatibility by defaulting to distance mode.

  • #9874 a995a3f Thanks @​phong-phuong! - fix jira failing to fetch issues

  • Updated dependencies [1fa865b, 28efb57, 4e42452, a9b5059, a9b5059]:

    • @​langchain/openai@​1.2.4
    • @​langchain/classic@​1.0.13

@​langchain/community@​1.1.9

Patch Changes

  • Updated dependencies [1d58bf2]:
    • @​langchain/classic@​1.0.12

@​langchain/community@​1.1.8

Patch Changes

  • #9759 82c51e4 Thanks @​ejscribner! - Fix(couchbase): Add Couchbase peer dependency and add CouchbaseQueryVectorStore and CouchbaseSearchVectorStore to tsdown bundle

  • Updated dependencies [a496cc0]:

    • @​langchain/classic@​1.0.11

@​langchain/community@​1.1.6

Patch Changes

... (truncated)

Commits
  • 999497a chore: version packages (#9933)
  • cf46089 feat(openai): update openai SDK to ^6.18.0 (#9934)
  • 8f0757f fix(langchain): resolve className collision in MODEL_PROVIDER_CONFIG (#9763)
  • 4f7f9c7 feat(anthropic): update for Feb 5th api changes (#9932)
  • 0870ca0 fix(openai): include encrypted reasoning in ZDR responses input (#9743)
  • b5a1abf chore(deps): bump the npm_and_yarn group across 1 directory with 3 updates (#...
  • 9381b92 chore(deps): bump the npm_and_yarn group across 1 directory with 3 updates
  • 0f3f8d4 chore: version packages (#9910)
  • 3516592 feat(langchain): add withConfig() method to ReactAgent (#9916)
  • 41bfea5 fix(classic/community/core): avoid long lived abort signals (#9905)
  • Additional commits viewable in compare view

Updates @langchain/core from 1.1.15 to 1.1.19

Release notes

Sourced from @​langchain/core's releases.

@​langchain/core@​1.1.19

Patch Changes

@​langchain/core@​1.1.18

Patch Changes

  • #9900 a9b5059 Thanks @​hntrl! - fix(core): update method signatures to use Partial<CallOptions> for options parameters

    Updated invoke, stream, generate, and generatePrompt method signatures across Runnable, BaseChatModel, and BaseLLM to correctly accept Partial<CallOptions> instead of full CallOptions. This aligns the implementation with the RunnableInterface specification and allows users to pass partial options (e.g., { signal: abortedSignal }) without TypeScript errors.

  • #9900 a9b5059 Thanks @​hntrl! - Improved abort signal handling for chat models:

    • Added ModelAbortError class in @langchain/core/errors that contains partial output when a model invocation is aborted mid-stream
    • invoke() now throws ModelAbortError with accumulated partialOutput when aborted during streaming (when using streaming callback handlers)
    • stream() throws a regular AbortError when aborted (since chunks are already yielded to the caller)
    • All provider implementations now properly check and propagate abort signals in both _generate() and _streamResponseChunks() methods
    • Added standard tests for abort signal behavior

@​langchain/core@​1.1.16

Patch Changes

Commits
  • 0f3f8d4 chore: version packages (#9910)
  • 3516592 feat(langchain): add withConfig() method to ReactAgent (#9916)
  • 41bfea5 fix(classic/community/core): avoid long lived abort signals (#9905)
  • 4113f61 chore: version packages (#9909)
  • 6c3cafe feat(redis): Advanced pre-filter for document metadata (#9240)
  • be5d9dc fix(langchain): typo taks -> task (#9860)
  • a13f0fd chore: version packages (#9899)
  • 9179794 chore: fix changeset (#9903)
  • a9b5059 fix(core,providers): add proper abort signal handling for invoke and stream o...
  • 1fa865b fix(openai): allow file_url and file_id without filename metadata in Response...
  • Additional commits viewable in compare view

Updates @langchain/groq from 1.0.1 to 1.0.4

Release notes

Sourced from @​langchain/groq's releases.

@​langchain/groq@​1.0.4

Patch Changes

  • #9900 a9b5059 Thanks @​hntrl! - Improved abort signal handling for chat models:

    • Added ModelAbortError class in @langchain/core/errors that contains partial output when a model invocation is aborted mid-stream
    • invoke() now throws ModelAbortError with accumulated partialOutput when aborted during streaming (when using streaming callback handlers)
    • stream() throws a regular AbortError when aborted (since chunks are already yielded to the caller)
    • All provider implementations now properly check and propagate abort signals in both _generate() and _streamResponseChunks() methods
    • Added standard tests for abort signal behavior
  • #9900 a9b5059 Thanks @​hntrl! - fix(providers): add proper abort signal handling for invoke and stream operations

    • Added early abort check (signal.throwIfAborted()) at the start of _generate methods to immediately throw when signal is already aborted
    • Added abort signal checks inside streaming loops in _streamResponseChunks to return early when signal is aborted
    • Propagated abort signals to underlying SDK calls where applicable (Google GenAI, Google Common/VertexAI, Cohere)
    • Added standard tests for abort signal behavior in @langchain/standard-tests

    This enables proper cancellation behavior for both invoke and streaming operations, and allows fallback chains to correctly proceed to the next runnable when the previous one is aborted.

@​langchain/groq@​1.0.3

Patch Changes

Commits
  • a13f0fd chore: version packages (#9899)
  • 9179794 chore: fix changeset (#9903)
  • a9b5059 fix(core,providers): add proper abort signal handling for invoke and stream o...
  • 1fa865b fix(openai): allow file_url and file_id without filename metadata in Response...
  • a995a3f Bugfix: Jira failing to fetch issues after merge of (#9832) (#9874)
  • 70f329a Fix issue #9782: PGVectoreStore does not return a score, but the distance (#...
  • 913893f fix: filter pregel keys from cache key to avoid OOM (#9885)
  • 0c64698 fix(anthropic): handle standard file content blocks (#9881)
  • 4e42452 fix(openai): pass runManager to responses._generate function in ChatOpenAI (#...
  • ea00005 feat(community): add reasoning_effort to IBM implementation, change url for g...
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​langchain/groq since your current version.


Updates @langchain/langgraph from 1.1.0 to 1.1.4

Release notes

Sourced from @​langchain/langgraph's releases.

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

Patch Changes

@​langchain/langgraph@​1.1.4

Patch Changes

  • Updated dependencies [8d5c2d6]:
    • @​langchain/langgraph-sdk@​1.6.0

@​langchain/langgraph@​1.1.3

Patch Changes

  • #1932 0cda1f3 Thanks @​samecrowder! - fix: preserve langgraph_type metadata for LangSmith Studio tab detection

    • Zod v4 .register() fix: The metadata registry now properly stores and retrieves langgraph_type metadata when using Zod v4's .register() method with MessagesZodMeta
    • StateSchema fix: StateSchema.getJsonSchema() now correctly includes jsonSchemaExtra (like langgraph_type: "messages") even when the underlying schema (e.g., z.custom()) doesn't produce a JSON schema

@​langchain/langgraph@​1.1.2

Patch Changes

  • #1914 e60ec1b Thanks @​hntrl! - fix ConditionalEdgeRouter type rejection

  • #1916 9f34c8c Thanks @​hntrl! - Add unified schema support for StateGraph constructor

    • Support mixing AnnotationRoot, Zod schemas, and StateSchema for state, input, and output definitions
    • Add { input, output } only pattern where state is inferred from input schema
    • Add per-node input schema support via addNode options
    • Deprecate stateSchema property in favor of state
    • Simplify constructor overloads with unified StateGraphInit type
  • #1918 cc12263 Thanks @​hntrl! - Add type bag pattern for GraphNode and ConditionalEdgeRouter type utilities.

    New types:

    • GraphNodeTypes<InputSchema, OutputSchema, ContextSchema, Nodes> - Type bag interface for GraphNode
    • GraphNodeReturnValue<Update, Nodes> - Return type helper for node functions
    • ConditionalEdgeRouterTypes<InputSchema, ContextSchema, Nodes> - Type bag interface for ConditionalEdgeRouter

    Usage:

    Both GraphNode and ConditionalEdgeRouter now support two patterns:

    1. Single schema (backward compatible):

      const node: GraphNode<typeof AgentState, MyContext, "agent" | "tool"> = ...

... (truncated)

Changelog

Sourced from @​langchain/langgraph's changelog.

1.1.4

Patch Changes

  • Updated dependencies [8d5c2d6]:
    • @​langchain/langgraph-sdk@​1.6.0

1.1.3

Patch Changes

  • #1932 0cda1f3 Thanks @​samecrowder! - fix: preserve langgraph_type metadata for LangSmith Studio tab detection

    • Zod v4 .register() fix: The metadata registry now properly stores and retrieves langgraph_type metadata when using Zod v4's .register() method with MessagesZodMeta
    • StateSchema fix: StateSchema.getJsonSchema() now correctly includes jsonSchemaExtra (like langgraph_type: "messages") even when the underlying schema (e.g., z.custom()) doesn't produce a JSON schema

1.1.2

Patch Changes

  • #1914 e60ec1b Thanks @​hntrl! - fix ConditionalEdgeRouter type rejection

  • #1916 9f34c8c Thanks @​hntrl! - Add unified schema support for StateGraph constructor

    • Support mixing AnnotationRoot, Zod schemas, and StateSchema for state, input, and output definitions
    • Add { input, output } only pattern where state is inferred from input schema
    • Add per-node input schema support via addNode options
    • Deprecate stateSchema property in favor of state
    • Simplify constructor overloads with unified StateGraphInit type
  • #1918 cc12263 Thanks @​hntrl! - Add type bag pattern for GraphNode and ConditionalEdgeRouter type utilities.

    New types:

    • GraphNodeTypes<InputSchema, OutputSchema, ContextSchema, Nodes> - Type bag interface for GraphNode
    • GraphNodeReturnValue<Update, Nodes> - Return type helper for node functions
    • ConditionalEdgeRouterTypes<InputSchema, ContextSchema, Nodes> - Type bag interface for ConditionalEdgeRouter

    Usage:

    Both GraphNode and ConditionalEdgeRouter now support two patterns:

    1. Single schema (backward compatible):

      const node: GraphNode<typeof AgentState, MyContext, "agent" | "tool"> = ...
    2. Type bag pattern (new):

... (truncated)

Commits

Updates @tavily/core from 0.5.13 to 0.7.1

Commits
Maintainer changes

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


Updates ai from 6.0.57 to 6.0.77

Release notes

Sourced from ai's releases.

ai@6.0.77

Patch Changes

  • Updated dependencies [eea5d30]
    • @​ai-sdk/gateway@​3.0.39

ai@6.0.76

Patch Changes

  • Updated dependencies [70028ab]
    • @​ai-sdk/gateway@​3.0.38

ai@6.0.75

Patch Changes

  • 7168375: feat (ai, provider): default global provider video model resolution
  • Updated dependencies [7168375]
    • @​ai-sdk/provider@​3.0.8
    • @​ai-sdk/gateway@​3.0.37
    • @​ai-sdk/provider-utils@​4.0.14

ai@6.0.74

Patch Changes

  • 471009b: fix(ai): pass reasoning text in telemetry

ai@6.0.73

Patch Changes

  • Updated dependencies [9892c58]
    • @​ai-sdk/gateway@​3.0.36
Commits

Updates autoprefixer from 10.4.15 to 10.4.24

Release notes

Sourced from autoprefixer's releases.

10.4.24

  • Made Autoprefixer a little faster (by @​Cherry).

10.4.23

10.4.22

  • Fixed stretch prefixes on new Can I Use database.
  • Updated fraction.js.

10.4.21

10.4.20

  • Fixed fit-content prefix for Firefox.

10.4.19

  • Removed end value has mixed support, consider using flex-end warning since end/start now have good support.

10.4.18

  • Fixed removing -webkit-box-orient on -webkit-line-clamp (@​Goodwine).

10.4.17

  • Fixed user-select: contain prefixes.

10.4.16

Changelog

Sourced from autoprefixer's changelog.

10.4.24

  • Made Autoprefixer a little faster (by @​Cherry).

10.4.23

10.4.22

  • Fixed stretch prefixes on new Can I Use database.
  • Updated fraction.js.

10.4.21

10.4.20

  • Fixed fit-content prefix for Firefox.

10.4.19

  • Removed end value has mixed support, consider using flex-end warning since end/start now have good support.

10.4.18

  • Fixed removing -webkit-box-orient on -webkit-line-clamp (@​Goodwine).

10.4.17

  • Fixed user-select: contain prefixes.

10.4.16

  • Improved performance (by Romain Menke).
  • Fixed docs (by Christian Oliff).
Commits

Updates axios from 1.13.2 to 1.13.5

Release notes

Sourced from axios's releases.

v1.13.5

Release 1.13.5

Highlights

  • Security: Fixed a potential Denial of Service issue involving the __proto__ key in mergeConfig. (PR #7369)
  • Bug fix: Resolved an issue where AxiosError could be missing the status field on and after v1.13.3. (PR #7368)

Changes

Security

  • Fix Denial of Service via __proto__ key in mergeConfig. (PR #7369)

Fixes

  • Fix/5657. (PR #7313)
  • Ensure status is present in AxiosError on and after v1.13.3. (PR #7368)

Features / Improvements

  • Add input validation to isAbsoluteURL. (PR #7326)
  • Refactor: bump minor package versions. (PR #7356)

Documentation

  • Clarify object-check comment. (PR #7323)
  • Fix deprecated Buffer constructor usage and README formatting. (PR #7371)

CI / Maintenance

  • Chore: fix issues with YAML. (PR #7355)
  • CI: update workflow YAMLs. (PR #7372)
  • CI: fix run condition. (PR #7373)
  • Dev deps: bump karma-sourcemap-loader from 0.3.8 to 0.4.0. (PR #7360)
  • Chore(release): prepare release 1.13.5. (PR #7379)

New Contributors

Full Changelog: axios/axios@v1.13.4...v1.13.5

v1.13.4

Overview

The release addresses issues discovered in v1.13.3 and includes significant CI/CD improvements.

Full Changelog: v1.13.3...v1.13.4

What's New in v1.13.4

Bug Fixes

  • fix: issues with version 1.13.3 (#7352) (ee90dfc)
    • Fixed issues discovered in v1.13.3 release

... (truncated)

Changelog

Sourced from axios's changelog.

Changelog

1.13.3 (2026-01-20)

Bug Fixes

  • http2: Use port 443 for HTTPS connections by default. (#7256) (d7e6065)
  • interceptor: handle the error in the same interceptor (#6269) (5945e40)
  • main field in package.json should correspond to cjs artifacts (#5756) (7373fbf)
  • package.json: add 'bun' package.json 'exports' condition. Load the Node.js build in Bun instead of the browser build (#5754) (b89217e)
  • silentJSONParsing=false should throw on invalid JSON (#7253) (#7257) (7d19335)
  • turn AxiosError into a native error (#5394) (#5558) (1c6a86d)
  • types: add handlers to AxiosInterceptorManager interface (#5551) (8d1271b)
  • types: restore AxiosError.cause type from unknown to Error (#7327) (d8233d9)
  • unclear error message is thrown when specifying an empty proxy authorization (#6314) (6ef867e)

Features

Reverts

  • Revert "fix: silentJSONParsing=false should throw on invalid JSON (#7253) (#7…" (#7298) (a4230f5), closes #7253 #7 #7298
  • deps: bump peter-evans/create-pull-request from 7 to 8 in the github-actions group (#7334) (2d6ad5e)

Contributors to this release

... (truncated)

Commits
  • 29f7542 chore(release): prepare release 1.13.5 (#7379)
  • 431c3a3 ci: fix run condition (#7373)
  • 9ff3a78 ci: update ymls (#7372)
  • 265b712 docs: fix deprecated Buffer constructor and formatting issues in README (#7371)
  • 475e75a feat: add input validation to isAbsoluteURL (#7326)
  • 28c7215 fix: Denial of Service via proto Key in mergeConfig (#7369)
  • 04cf019 docs: clarify object check comment (#7323)
  • 696fa75 fix: status is missing in AxiosError on and after v1.13.3 (#7368)
  • 569f028 fix: added a option to choose between legacy and the new request/response int...
  • 44b7c9f chore(deps-dev): bump karma-sourcemap-loader (#7360)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for axios since your current version.


Updates framer-motion from 12.23.24 to 12.33.0

Changelog

Sourced from framer-motion's changelog.

[12.33.0] 2026-02-05

Added

  • <motion />: New propagate.tap prop prevents tap gestures from propagating to parents.

[12.32.0] 2026-02-05

Added

  • transition.inherit: When true, inherit transition values from less-specific transitions.

[12.31.3] 2026-02-05

Fixed

  • <motion />: Ensure animation state is reset after being re-suspended.
  • Prevent stale values when mixing transitionEnd and transition.type: false.
  • Drag: Fix "sticky" throw velocity on initial interaciton.
  • Drag: Ensure catching a thrown element kills its velocity.

[12.31.2] 2026-02-05

Fixed

  • onHoverStart and onHoverEnd first argument now correctly typed as PointerEvent.
  • whileHover: No longer persists after drag end.
  • AnimatePresence: Allow changing mode prop.

[12.31.1] 2026-02-04

Added

  • Drag constraints updated even when draggable or constraints resize outside of React renders.

[12.31.0] 2026-02-03

Added

  • animate: Support for bi-directional callbacks within a...

    Description has been truncated

…y with 74 updates

Bumps the production-dependencies group with 45 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@langchain/community](https://github.com/langchain-ai/langchainjs) | `1.1.4` | `1.1.12` |
| [@langchain/core](https://github.com/langchain-ai/langchainjs) | `1.1.15` | `1.1.19` |
| [@langchain/groq](https://github.com/langchain-ai/langchainjs) | `1.0.1` | `1.0.4` |
| [@langchain/langgraph](https://github.com/langchain-ai/langgraphjs/tree/HEAD/libs/langgraph-core) | `1.1.0` | `1.1.4` |
| [@tavily/core](https://github.com/tavily-ai/tavily-js) | `0.5.13` | `0.7.1` |
| [ai](https://github.com/vercel/ai) | `6.0.57` | `6.0.77` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.15` | `10.4.24` |
| [axios](https://github.com/axios/axios) | `1.13.2` | `1.13.5` |
| [framer-motion](https://github.com/motiondivision/motion) | `12.23.24` | `12.33.0` |
| [isomorphic-dompurify](https://github.com/kkomelin/isomorphic-dompurify) | `2.33.0` | `2.36.0` |
| [jspdf](https://github.com/parallax/jsPDF) | `4.0.0` | `4.1.0` |
| [lightweight-charts](https://github.com/tradingview/lightweight-charts) | `5.0.9` | `5.1.0` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.446.0` | `0.563.0` |
| [postcss](https://github.com/postcss/postcss) | `8.4.31` | `8.5.6` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.1` | `19.2.4` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.22` | `19.2.13` |
| [react-day-picker](https://github.com/gpbl/react-day-picker) | `9.13.0` | `9.13.1` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.1` | `19.2.4` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.7` | `19.2.3` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.66.1` | `7.71.1` |
| [swr](https://github.com/vercel/swr) | `2.3.6` | `2.4.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.2.2` | `5.9.3` |
| [@babel/code-frame](https://github.com/babel/babel/tree/HEAD/packages/babel-code-frame) | `7.27.1` | `7.29.0` |
| [@babel/compat-data](https://github.com/babel/babel/tree/HEAD/packages/babel-compat-data) | `7.28.5` | `7.29.0` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.28.5` | `7.29.0` |
| [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) | `7.28.4` | `7.28.6` |
| [@emnapi/core](https://github.com/toyobayashi/emnapi) | `1.7.1` | `1.8.1` |
| [@emnapi/runtime](https://github.com/toyobayashi/emnapi) | `1.7.1` | `1.8.1` |
| [@floating-ui/core](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/core) | `1.7.3` | `1.7.4` |
| [@floating-ui/dom](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/dom) | `1.7.4` | `1.7.5` |
| [@floating-ui/react-dom](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react-dom) | `2.1.6` | `2.1.7` |
| [@mongodb-js/saslprep](https://github.com/mongodb-js/devtools-shared) | `1.3.2` | `1.4.5` |
| [@types/d3-shape](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/d3-shape) | `3.1.7` | `3.1.8` |
| [axe-core](https://github.com/dequelabs/axe-core) | `4.11.0` | `4.11.1` |
| [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) | `3.47.0` | `3.48.0` |
| [d3-format](https://github.com/d3/d3-format) | `3.1.0` | `3.1.2` |
| [es-abstract](https://github.com/ljharb/es-abstract) | `1.24.0` | `1.24.1` |
| [es-iterator-helpers](https://github.com/es-shims/iterator-helpers) | `1.2.1` | `1.2.2` |
| [esquery](https://github.com/estools/esquery) | `1.6.0` | `1.7.0` |
| [fastq](https://github.com/mcollina/fastq) | `1.19.1` | `1.20.1` |
| [get-tsconfig](https://github.com/privatenumber/get-tsconfig) | `4.13.0` | `4.13.6` |
| [langsmith](https://github.com/langchain-ai/langsmith-sdk) | `0.4.7` | `0.4.12` |
| [preact](https://github.com/preactjs/preact) | `10.28.2` | `10.28.3` |
| [react-remove-scroll](https://github.com/theKashey/react-remove-scroll) | `2.7.1` | `2.7.2` |
| [which-typed-array](https://github.com/inspect-js/which-typed-array) | `1.1.19` | `1.1.20` |



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

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

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

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

Updates `@tavily/core` from 0.5.13 to 0.7.1
- [Commits](https://github.com/tavily-ai/tavily-js/commits)

Updates `ai` from 6.0.57 to 6.0.77
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/compare/ai@6.0.57...ai@6.0.77)

Updates `autoprefixer` from 10.4.15 to 10.4.24
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.15...10.4.24)

Updates `axios` from 1.13.2 to 1.13.5
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.13.2...v1.13.5)

Updates `framer-motion` from 12.23.24 to 12.33.0
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.23.24...v12.33.0)

Updates `isomorphic-dompurify` from 2.33.0 to 2.36.0
- [Release notes](https://github.com/kkomelin/isomorphic-dompurify/releases)
- [Commits](kkomelin/isomorphic-dompurify@2.33.0...2.36.0)

Updates `jspdf` from 4.0.0 to 4.1.0
- [Release notes](https://github.com/parallax/jsPDF/releases)
- [Changelog](https://github.com/parallax/jsPDF/blob/master/RELEASE.md)
- [Commits](parallax/jsPDF@v4.0.0...v4.1.0)

Updates `lightweight-charts` from 5.0.9 to 5.1.0
- [Release notes](https://github.com/tradingview/lightweight-charts/releases)
- [Commits](tradingview/lightweight-charts@v5.0.9...v5.1.0)

Updates `lucide-react` from 0.446.0 to 0.563.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/0.563.0/packages/lucide-react)

Updates `postcss` from 8.4.31 to 8.5.6
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.31...8.5.6)

Updates `react` from 19.2.1 to 19.2.4
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react)

Updates `@types/react` from 18.2.22 to 19.2.13
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `react-day-picker` from 9.13.0 to 9.13.1
- [Release notes](https://github.com/gpbl/react-day-picker/releases)
- [Changelog](https://github.com/gpbl/react-day-picker/blob/main/CHANGELOG.md)
- [Commits](gpbl/react-day-picker@v9.13.0...v9.13.1)

Updates `react-dom` from 19.2.1 to 19.2.4
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom)

Updates `@types/react-dom` from 18.2.7 to 19.2.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `react-hook-form` from 7.66.1 to 7.71.1
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.66.1...v7.71.1)

Updates `swr` from 2.3.6 to 2.4.0
- [Release notes](https://github.com/vercel/swr/releases)
- [Commits](vercel/swr@v2.3.6...v2.4.0)

Updates `typescript` from 5.2.2 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.2.2...v5.9.3)

Updates `@acemir/cssom` from 0.9.26 to 0.9.31
- [Release notes](https://github.com/acemir/CSSOM/releases)
- [Changelog](https://github.com/acemir/CSSOM/blob/master/CHANGELOG.md)
- [Commits](acemir/CSSOM@v0.9.26...v0.9.31)

Updates `@ai-sdk/gateway` from 3.0.25 to 3.0.39
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/compare/@ai-sdk/gateway@3.0.25...@ai-sdk/gateway@3.0.39)

Updates `@ai-sdk/provider` from 3.0.5 to 3.0.8
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/compare/@ai-sdk/provider@3.0.5...@ai-sdk/provider@3.0.8)

Updates `@ai-sdk/provider-utils` from 4.0.10 to 4.0.14
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/compare/@ai-sdk/provider-utils@4.0.10...@ai-sdk/provider-utils@4.0.14)

Updates `@asamuzakjp/dom-selector` from 6.7.6 to 6.7.8
- [Release notes](https://github.com/asamuzaK/domSelector/releases)
- [Commits](asamuzaK/domSelector@v6.7.6...v6.7.8)

Updates `@babel/code-frame` from 7.27.1 to 7.29.0
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.29.0/packages/babel-code-frame)

Updates `@babel/compat-data` from 7.28.5 to 7.29.0
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.29.0/packages/babel-compat-data)

Updates `@babel/core` from 7.28.5 to 7.29.0
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.29.0/packages/babel-core)

Updates `@babel/generator` from 7.28.5 to 7.29.1
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.29.1/packages/babel-generator)

Updates `@babel/helper-compilation-targets` from 7.27.2 to 7.28.6
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.6/packages/babel-helper-compilation-targets)

Updates `@babel/helper-module-imports` from 7.27.1 to 7.28.6
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.6/packages/babel-helper-module-imports)

Updates `@babel/helper-module-transforms` from 7.28.3 to 7.28.6
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.6/packages/babel-helper-module-transforms)

Updates `@babel/helpers` from 7.28.4 to 7.28.6
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.6/packages/babel-helpers)

Updates `@babel/parser` from 7.28.5 to 7.29.0
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.29.0/packages/babel-parser)

Updates `@babel/runtime` from 7.28.4 to 7.28.6
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.6/packages/babel-runtime)

Updates `@babel/template` from 7.27.2 to 7.28.6
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.6/packages/babel-template)

Updates `@babel/traverse` from 7.28.5 to 7.29.0
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.29.0/packages/babel-traverse)

Updates `@babel/types` from 7.28.5 to 7.29.0
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.29.0/packages/babel-types)

Updates `@csstools/css-syntax-patches-for-csstree` from 1.0.20 to 1.0.26
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/packages/css-syntax-patches-for-csstree/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/packages/css-syntax-patches-for-csstree)

Updates `@emnapi/core` from 1.7.1 to 1.8.1
- [Release notes](https://github.com/toyobayashi/emnapi/releases)
- [Commits](toyobayashi/emnapi@v1.7.1...v1.8.1)

Updates `@emnapi/runtime` from 1.7.1 to 1.8.1
- [Release notes](https://github.com/toyobayashi/emnapi/releases)
- [Commits](toyobayashi/emnapi@v1.7.1...v1.8.1)

Updates `@floating-ui/core` from 1.7.3 to 1.7.4
- [Release notes](https://github.com/floating-ui/floating-ui/releases)
- [Changelog](https://github.com/floating-ui/floating-ui/blob/master/packages/core/CHANGELOG.md)
- [Commits](https://github.com/floating-ui/floating-ui/commits/@floating-ui/dom@1.7.4/packages/core)

Updates `@floating-ui/dom` from 1.7.4 to 1.7.5
- [Release notes](https://github.com/floating-ui/floating-ui/releases)
- [Changelog](https://github.com/floating-ui/floating-ui/blob/master/packages/dom/CHANGELOG.md)
- [Commits](https://github.com/floating-ui/floating-ui/commits/HEAD/packages/dom)

Updates `@floating-ui/react-dom` from 2.1.6 to 2.1.7
- [Release notes](https://github.com/floating-ui/floating-ui/releases)
- [Changelog](https://github.com/floating-ui/floating-ui/blob/master/packages/react-dom/CHANGELOG.md)
- [Commits](https://github.com/floating-ui/floating-ui/commits/HEAD/packages/react-dom)

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

Updates `@langchain/langgraph-sdk` from 1.5.4 to 1.6.0
- [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.6.0/libs/sdk)

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

Updates `@mongodb-js/saslprep` from 1.3.2 to 1.4.5
- [Commits](https://github.com/mongodb-js/devtools-shared/compare/@mongodb-js/saslprep@1.3.2...@mongodb-js/saslprep@1.4.5)

Updates `@types/d3-shape` from 3.1.7 to 3.1.8
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/d3-shape)

Updates `axe-core` from 4.11.0 to 4.11.1
- [Release notes](https://github.com/dequelabs/axe-core/releases)
- [Changelog](https://github.com/dequelabs/axe-core/blob/develop/CHANGELOG.md)
- [Commits](dequelabs/axe-core@v4.11.0...v4.11.1)

Updates `baseline-browser-mapping` from 2.8.29 to 2.9.19
- [Release notes](https://github.com/web-platform-dx/baseline-browser-mapping/releases)
- [Commits](web-platform-dx/baseline-browser-mapping@v2.8.29...v2.9.19)

Updates `browserslist` from 4.28.0 to 4.28.1
- [Release notes](https://github.com/browserslist/browserslist/releases)
- [Changelog](https://github.com/browserslist/browserslist/blob/main/CHANGELOG.md)
- [Commits](browserslist/browserslist@4.28.0...4.28.1)

Updates `caniuse-lite` from 1.0.30001755 to 1.0.30001769
- [Commits](browserslist/caniuse-lite@1.0.30001755...1.0.30001769)

Updates `core-js` from 3.47.0 to 3.48.0
- [Release notes](https://github.com/zloirock/core-js/releases)
- [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zloirock/core-js/commits/v3.48.0/packages/core-js)

Updates `d3-format` from 3.1.0 to 3.1.2
- [Release notes](https://github.com/d3/d3-format/releases)
- [Commits](d3/d3-format@v3.1.0...v3.1.2)

Updates `dompurify` from 3.3.0 to 3.3.1
- [Release notes](https://github.com/cure53/DOMPurify/releases)
- [Commits](cure53/DOMPurify@3.3.0...3.3.1)

Updates `electron-to-chromium` from 1.5.256 to 1.5.286
- [Changelog](https://github.com/Kilian/electron-to-chromium/blob/master/CHANGELOG.md)
- [Commits](Kilian/electron-to-chromium@v1.5.256...v1.5.286)

Updates `es-abstract` from 1.24.0 to 1.24.1
- [Changelog](https://github.com/ljharb/es-abstract/blob/main/CHANGELOG.md)
- [Commits](ljharb/es-abstract@v1.24.0...v1.24.1)

Updates `es-iterator-helpers` from 1.2.1 to 1.2.2
- [Changelog](https://github.com/es-shims/iterator-helpers/blob/main/CHANGELOG.md)
- [Commits](es-shims/iterator-helpers@v1.2.1...v1.2.2)

Updates `esquery` from 1.6.0 to 1.7.0
- [Commits](https://github.com/estools/esquery/commits)

Updates `fastq` from 1.19.1 to 1.20.1
- [Release notes](https://github.com/mcollina/fastq/releases)
- [Commits](mcollina/fastq@v1.19.1...v1.20.1)

Updates `fraction.js` from 4.3.7 to 5.3.4
- [Changelog](https://github.com/rawify/Fraction.js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rawify/Fraction.js/commits)

Updates `get-tsconfig` from 4.13.0 to 4.13.6
- [Release notes](https://github.com/privatenumber/get-tsconfig/releases)
- [Commits](privatenumber/get-tsconfig@v4.13.0...v4.13.6)

Updates `langsmith` from 0.4.7 to 0.4.12
- [Release notes](https://github.com/langchain-ai/langsmith-sdk/releases)
- [Commits](langchain-ai/langsmith-sdk@v0.4.7...v0.4.12)

Updates `motion-dom` from 12.23.23 to 12.33.0
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.23.23...v12.33.0)

Updates `motion-utils` from 12.23.6 to 12.29.2
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.23.6...v12.29.2)

Updates `openai` from 6.16.0 to 6.18.0
- [Release notes](https://github.com/openai/openai-node/releases)
- [Changelog](https://github.com/openai/openai-node/blob/master/CHANGELOG.md)
- [Commits](openai/openai-node@v6.16.0...v6.18.0)

Updates `preact` from 10.28.2 to 10.28.3
- [Release notes](https://github.com/preactjs/preact/releases)
- [Commits](preactjs/preact@10.28.2...10.28.3)

Updates `react-remove-scroll` from 2.7.1 to 2.7.2
- [Release notes](https://github.com/theKashey/react-remove-scroll/releases)
- [Changelog](https://github.com/theKashey/react-remove-scroll/blob/master/CHANGELOG.md)
- [Commits](theKashey/react-remove-scroll@v2.7.1...v2.7.2)

Updates `update-browserslist-db` from 1.1.4 to 1.2.3
- [Release notes](https://github.com/browserslist/update-db/releases)
- [Changelog](https://github.com/browserslist/update-db/blob/main/CHANGELOG.md)
- [Commits](browserslist/update-db@1.1.4...1.2.3)

Updates `which-typed-array` from 1.1.19 to 1.1.20
- [Changelog](https://github.com/inspect-js/which-typed-array/blob/main/CHANGELOG.md)
- [Commits](inspect-js/which-typed-array@v1.1.19...v1.1.20)

Updates `yaml` from 2.8.1 to 2.8.2
- [Release notes](https://github.com/eemeli/yaml/releases)
- [Commits](eemeli/yaml@v2.8.1...v2.8.2)

---
updated-dependencies:
- dependency-name: "@langchain/community"
  dependency-version: 1.1.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@langchain/core"
  dependency-version: 1.1.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@langchain/groq"
  dependency-version: 1.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@langchain/langgraph"
  dependency-version: 1.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@tavily/core"
  dependency-version: 0.7.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: ai
  dependency-version: 6.0.77
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: autoprefixer
  dependency-version: 10.4.24
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: axios
  dependency-version: 1.13.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: framer-motion
  dependency-version: 12.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: isomorphic-dompurify
  dependency-version: 2.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: jspdf
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: lightweight-charts
  dependency-version: 5.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: lucide-react
  dependency-version: 0.563.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: postcss
  dependency-version: 8.5.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react
  dependency-version: 19.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.2.13
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-day-picker
  dependency-version: 9.13.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-hook-form
  dependency-version: 7.71.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: swr
  dependency-version: 2.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@acemir/cssom"
  dependency-version: 0.9.31
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@ai-sdk/gateway"
  dependency-version: 3.0.39
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@ai-sdk/provider"
  dependency-version: 3.0.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@ai-sdk/provider-utils"
  dependency-version: 4.0.14
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@asamuzakjp/dom-selector"
  dependency-version: 6.7.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@babel/code-frame"
  dependency-version: 7.29.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@babel/compat-data"
  dependency-version: 7.29.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@babel/core"
  dependency-version: 7.29.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@babel/generator"
  dependency-version: 7.29.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@babel/helper-compilation-targets"
  dependency-version: 7.28.6
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@babel/helper-module-imports"
  dependency-version: 7.28.6
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@babel/helper-module-transforms"
  dependency-version: 7.28.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@babel/helpers"
  dependency-version: 7.28.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@babel/parser"
  dependency-version: 7.29.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@babel/runtime"
  dependency-version: 7.28.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@babel/template"
  dependency-version: 7.28.6
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@babel/traverse"
  dependency-version: 7.29.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@babel/types"
  dependency-version: 7.29.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@csstools/css-syntax-patches-for-csstree"
  dependency-version: 1.0.26
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@emnapi/core"
  dependency-version: 1.8.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@emnapi/runtime"
  dependency-version: 1.8.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@floating-ui/core"
  dependency-version: 1.7.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@floating-ui/dom"
  dependency-version: 1.7.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@floating-ui/react-dom"
  dependency-version: 2.1.7
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@langchain/classic"
  dependency-version: 1.0.15
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@langchain/langgraph-sdk"
  dependency-version: 1.6.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@langchain/openai"
  dependency-version: 1.2.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mongodb-js/saslprep"
  dependency-version: 1.4.5
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@types/d3-shape"
  dependency-version: 3.1.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: axe-core
  dependency-version: 4.11.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: baseline-browser-mapping
  dependency-version: 2.9.19
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: browserslist
  dependency-version: 4.28.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: caniuse-lite
  dependency-version: 1.0.30001769
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: core-js
  dependency-version: 3.48.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: d3-format
  dependency-version: 3.1.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: dompurify
  dependency-version: 3.3.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: electron-to-chromium
  dependency-version: 1.5.286
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: es-abstract
  dependency-version: 1.24.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: es-iterator-helpers
  dependency-version: 1.2.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: esquery
  dependency-version: 1.7.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: fastq
  dependency-version: 1.20.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: fraction.js
  dependency-version: 5.3.4
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: get-tsconfig
  dependency-version: 4.13.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: langsmith
  dependency-version: 0.4.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: motion-dom
  dependency-version: 12.33.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: motion-utils
  dependency-version: 12.29.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: openai
  dependency-version: 6.18.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: preact
  dependency-version: 10.28.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-remove-scroll
  dependency-version: 2.7.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: update-browserslist-db
  dependency-version: 1.2.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: which-typed-array
  dependency-version: 1.1.20
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: yaml
  dependency-version: 2.8.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

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

dependabot bot commented on behalf of github Feb 9, 2026

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.

@github-actions
Copy link

github-actions bot commented Feb 9, 2026

⚠️ This is a major version update. Please review manually before merging.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 16, 2026

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

@dependabot dependabot bot closed this Feb 16, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/main/production-dependencies-daa6a547e6 branch February 16, 2026 10:14
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