Skip to content

Comments

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

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

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

Conversation

@dependabot
Copy link
Contributor

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

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

Package From To
@langchain/community 1.1.4 1.1.10
@langchain/core 1.1.15 1.1.18
@langchain/groq 1.0.1 1.0.4
@langchain/langgraph 1.1.0 1.1.2
@tavily/core 0.5.13 0.7.1
ai 6.0.57 6.0.67
autoprefixer 10.4.15 10.4.24
axios 1.13.2 1.13.4
framer-motion 12.23.24 12.29.2
isomorphic-dompurify 2.33.0 2.35.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.10
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.1
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.10

Release notes

Sourced from @​langchain/community's releases.

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

@​langchain/community@​1.1.5

Patch Changes

  • #9822 ff69e1e Thanks @​HarshVz! - Add multi-region support for Alibaba Tongyi chat models. Users can now specify their region (China, Singapore, or US) when initializing ChatAlibabaTongyi. This enables proper API endpoint routing for users with region-specific API keys.

    • Added region parameter to ChatAlibabaTongyi constructor
    • Supported regions: "china" (default), "singapore", "us"
    • Maintains backward compatibility by defaulting to China region
  • Updated dependencies [a7c6ec5, 04923f9, e16c218]:

    • @​langchain/openai@​1.2.3
    • @​langchain/classic@​1.0.10
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

Updates @langchain/core from 1.1.15 to 1.1.18

Release notes

Sourced from @​langchain/core's releases.

@​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
  • 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

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.2

Release notes

Sourced from @​langchain/langgraph's releases.

@​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"> = ...
    2. Type bag pattern (new):

      const node: GraphNode<{
        InputSchema: typeof InputSchema;
        OutputSchema: typeof OutputSchema;
        ContextSchema: typeof ContextSchema;
        Nodes: "agent" | "tool";
      }> = (state, runtime) => {
        // state type inferred from InputSchema
        // return type validated against OutputSchema
        // runtime.configurable type inferred from ContextSchema
        return { answer: "response" };
      };

    The type bag pattern enables nodes that receive a subset of state fields and return different fields, with full type safety.

@​langchain/langgraph@​1.1.1

Patch Changes

... (truncated)

Changelog

Sourced from @​langchain/langgraph's changelog.

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):

      const node: GraphNode<{
        InputSchema: typeof InputSchema;
        OutputSchema: typeof OutputSchema;
        ContextSchema: typeof ContextSchema;
        Nodes: "agent" | "tool";
      }> = (state, runtime) => {
        // state type inferred from InputSchema
        // return type validated against OutputSchema
        // runtime.configurable type inferred from ContextSchema
        return { answer: "response" };
      };

    The type bag pattern enables nodes that receive a subset of state fields and return different fields, with full type safety.

1.1.1

... (truncated)

Commits
  • 990040d chore: version packages (#1921)
  • 160f2e0 chore: version packages (#1915)
  • cc12263 feat(langgraph): add type bag pattern for GraphNode and ConditionalEdgeRouter...
  • 9f34c8c feat(langgraph): add mixed schema support for StateGraph input/output (#1916)
  • e60ec1b fix(langgraph): fix ConditionalEdgeRouter type rejection (#1914)
  • 0812242 chore: version packages (#1905)
  • 4b2e448 fix(langgraph): StateSchema type inference (#1912)
  • See full diff in compare view

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.67

Release notes

Sourced from ai's releases.

ai@6.0.67

Patch Changes

  • 53f6731: feat (ai, provider): experimental generate video support
  • Updated dependencies [53f6731]
    • @​ai-sdk/provider@​3.0.7
    • @​ai-sdk/gateway@​3.0.32
    • @​ai-sdk/provider-utils@​4.0.13

ai@6.0.66

Patch Changes

  • Updated dependencies [96936e5]
    • @​ai-sdk/provider-utils@​4.0.12
    • @​ai-sdk/gateway@​3.0.31

ai@6.0.65

Patch Changes

  • Updated dependencies [1a74972]
    • @​ai-sdk/gateway@​3.0.30

ai@6.0.64

Patch Changes

  • ce9daa3: Fixed 'reasoning part reasoning-0 not found' error by ensuring 'reasoning-start' event is emitted for empty thinking blocks (eg. )
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.4

Release notes

Sourced from axios's releases.

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
    • Cleaned up interceptor test files
    • Improved workflow configurations

Infrastructure & CI/CD

  • refactor: ci and build (#7340) (8ff6c19)

    • Major refactoring of CI/CD workflows
    • Consolidated workflow files for better maintainability
    • Added mise configuration for the development environment
    • Improved sponsor block update automation
    • Enhanced issue and PR templates
    • Added automatic release notes generation
    • Implemented workflow cancellation for concurrent runs
  • chore: codegen and some updates to workflows (76cf77b)

    • Code generation improvements
    • Workflow optimisations

Migration Notes

Breaking Changes

None in this release.

Deprecations

None in this release.

Contributors

Thank you to all contributors who made this release possible! Special thanks to:

Release v1.13.3

Release notes:

Bug Fixes

... (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
  • 9336cf9 chore(release): prepare release 1.13.4 (#7353)
  • ee90dfc fix: issues with version 1.13.3 (#7352)
  • af4f6d9 fix: release branch yml
  • 253e3ad fix: all merge configs
  • 8ff6c19 refactor: ci and build (#7340)
  • ab06109 chore(release): v1.13.3 (#7335)
  • 2d6ad5e revert(deps): bump peter-evans/create-pull-request from 7 to 8 in the github-...
  • cb49a6f chore(sponsor): update sponsor block (#7330)
  • d8233d9 fix(types): restore AxiosError.cause type from unknown to Error (#7327)
  • 5945e40 fix(interceptor): handle the error in the same interceptor (#6269)
  • 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.29.2

Changelog

Sourced from framer-motion's changelog.

[12.29.2] 2026-01-26

Fixed

  • Updates to layout animations.

[12.29.1] 2026-01-22

Fixed

  • useAnimate: Now respects reduced motion settings set via MotionConfig.

[12.29.0] 2026-01-22

Added

  • transformViewBoxPoint: Scale drag gestures within <svg> elements where viewBox and rendered width/height are mismatched.
  • trackContentSize: New scroll and useScroll option for tracking changes to content size.

Fixed

  • Add React 19 test suite to CI.
  • Fix types with motion.create().
  • Shared element animations now respect layoutDependency.

[12.28.2] 2026-01-22

Added

  • Add default value type px for fontSize.

Fixed

  • Removed default value type from radius.
  • Ensure LazyMotion animates initial state even when state has changed before Motion is loaded.

[12.28.1] 2026-01-21

Fixed

  • Ensure scale: "0%" isn't treated as default value.

[12.28.0] 2026-01-20

Added

  • useFollowValue and followValue: useSpring-style motion values that can accept any transition.

Fixed

... (truncated)

Commits

Updates isomorphic-dompurify from 2.33.0 to 2.35.0

Release notes

Sourced from isomorphic-dompurify's releases.

2.35.0: Updated jsdom

Changelog

  • Updated jsdom.
  • Updated dev dependencies.

See the complete changelog for more details.

Release

2.35.0

2.34.0: Updated dependencies

Changelog

  • Updated dompurify and jsdom.
  • Updated dev dependencies.

See the complete changelog for more details.

Release

2.34.0

Commits
  • 2cc5a03 Updated deps. Incremented project version.
  • d40fcf0 Merge pull request #382 from kkomelin/dependabot/npm_and_yarn/jsdom-27.4.0
  • e45ecf5 chore(deps): bump jsdom from 27.3.0 to 27.4.0
  • 0c612e6 Merge pull request #381 from kkomelin/dependabot/npm_and_yarn/vitest-4.0.16
  • 16ca947 chore(deps-dev): bump vitest from 4.0.15 to 4.0.16
  • dded60d chore: Incremented project version.
  • 044f7b2 Updated deps.
  • 895d5cd Merge pull request #379 from kkomelin/dependabot/npm_and_yarn/dompurify-3.3.1

…y with 72 updates

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

| Package | From | To |
| --- | --- | --- |
| [@langchain/community](https://github.com/langchain-ai/langchainjs) | `1.1.4` | `1.1.10` |
| [@langchain/core](https://github.com/langchain-ai/langchainjs) | `1.1.15` | `1.1.18` |
| [@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.2` |
| [@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.67` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.15` | `10.4.24` |
| [axios](https://github.com/axios/axios) | `1.13.2` | `1.13.4` |
| [framer-motion](https://github.com/motiondivision/motion) | `12.23.24` | `12.29.2` |
| [isomorphic-dompurify](https://github.com/kkomelin/isomorphic-dompurify) | `2.33.0` | `2.35.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.10` |
| [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.1` |
| [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.10
- [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.10)

Updates `@langchain/core` from 1.1.15 to 1.1.18
- [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.18)

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.2
- [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.2/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.67
- [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.67)

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.4
- [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.4)

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

Updates `isomorphic-dompurify` from 2.33.0 to 2.35.0
- [Release notes](https://github.com/kkomelin/isomorphic-dompurify/releases)
- [Commits](kkomelin/isomorphic-dompurify@2.33.0...2.35.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.10
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

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.32
- [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.32)

Updates `@ai-sdk/provider` from 3.0.5 to 3.0.7
- [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.7)

Updates `@ai-sdk/provider-utils` from 4.0.10 to 4.0.13
- [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.13)

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

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.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-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.13
- [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.13)

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

Updates `@langchain/openai` from 1.2.2 to 1.2.4
- [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.4)

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.30001767
- [Commits](browserslist/caniuse-lite@1.0.30001755...1.0.30001767)

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.283
- [Changelog](https://github.com/Kilian/electron-to-chromium/blob/master/CHANGELOG.md)
- [Commits](Kilian/electron-to-chromium@v1.5.256...v1.5.283)

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.1
- [Release notes](https://github.com/privatenumber/get-tsconfig/releases)
- [Commits](privatenumber/get-tsconfig@v4.13.0...v4.13.1)

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.29.2
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.23.23...v12.29.2)

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.17.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.17.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.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@langchain/core"
  dependency-version: 1.1.18
  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.2
  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.67
  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.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: framer-motion
  dependency-version: 12.29.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: isomorphic-dompurify
  dependency-version: 2.35.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.10
  dependency-type: direct:production
  update-type: version-update:semver-major
  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.32
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@ai-sdk/provider"
  dependency-version: 3.0.7
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@ai-sdk/provider-utils"
  dependency-version: 4.0.13
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@asamuzakjp/dom-selector"
  dependency-version: 6.7.7
  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.0
  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.13
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@langchain/langgraph-sdk"
  dependency-version: 1.5.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@langchain/openai"
  dependency-version: 1.2.4
  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.30001767
  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.283
  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.1
  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.29.2
  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.17.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 2, 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 2, 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 9, 2026

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

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