Skip to content

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

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/web/npm-dependencies-6d89af4043
Closed

chore(deps): bump the npm-dependencies group across 1 directory with 14 updates#63
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/web/npm-dependencies-6d89af4043

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot bot commented on behalf of github Mar 20, 2026

Bumps the npm-dependencies group with 14 updates in the /web directory:

Package From To
@dnd-kit/sortable 8.0.0 10.0.0
@tanstack/db 0.5.28 0.5.33
@tanstack/query-db-collection 1.0.25 1.0.30
@tanstack/react-db 0.1.72 0.1.77
@tanstack/react-form 1.28.1 1.28.5
@tanstack/react-query 5.90.21 5.91.2
@tanstack/react-router 1.159.5 1.167.5
@uiw/react-codemirror 4.25.4 4.25.8
lucide-react 0.563.0 0.577.0
react 18.3.1 19.2.4
react-dom 18.3.1 19.2.4
recharts 3.7.0 3.8.0
tailwind-merge 2.6.1 3.5.0
zod 3.25.76 4.3.6

Updates @dnd-kit/sortable from 8.0.0 to 10.0.0

Changelog

Sourced from @​dnd-kit/sortable's changelog.

10.0.0

Patch Changes

9.0.0

Patch Changes

Commits

Updates @tanstack/db from 0.5.28 to 0.5.33

Release notes

Sourced from @​tanstack/db's releases.

@​tanstack/db@​0.5.33

Patch Changes

  • Add createEffect API for reactive delta-driven effects and useLiveQueryEffect React hook. (#1221)

    createEffect attaches callbacks to a live query's delta stream — firing onEnter, onExit, and onUpdate for row-level query-result transitions and onBatch for the full delta batch from each graph run — without materialising the full result set. Supports skipInitial, orderBy + limit (top-K window), joins, lazy loading, transaction coalescing, async disposal with AbortSignal, and onSourceError / onError callbacks.

    useLiveQueryEffect is the React hook wrapper that manages the effect lifecycle (create on mount, dispose on unmount, recreate on dependency change).

@​tanstack/db@​0.5.32

Patch Changes

  • fix(db): use Ref<T, Nullable> brand instead of Ref<T> | undefined for nullable join refs in declarative select (#1262)

    The declarative select() callback receives proxy objects that record property accesses. These proxies are always truthy at build time, but nullable join sides (left/right/full) were typed as Ref<T> | undefined, misleading users into using ?. and ?? operators that have no effect at runtime. Nullable join refs are now typed as Ref<T, true>, which allows direct property access without optional chaining while correctly producing T | undefined in the result type.

  • Fix unbounded WHERE expression growth in DeduplicatedLoadSubset when loading all data after accumulating specific predicates. The deduplication layer now correctly tracks the original request predicate (e.g., where: undefined for "load all") instead of the optimized difference query sent to the backend, ensuring hasLoadedAllData is properly set and subsequent requests are deduplicated. (#1348)

  • fix(db): throw error when fn.select() is used with groupBy() (#1324)

  • Add queryOnce helper for one-shot query execution, including findOne() support and optional QueryBuilder configs. (#1211)

@​tanstack/db@​0.5.31

Patch Changes

  • Add Intent agent skills (SKILL.md files) to guide AI coding agents. Include skills for core DB concepts, all 5 framework bindings, meta-framework integration, and offline transactions. Also add export * from '@tanstack/db' to angular-db for consistency with other framework packages. (#1330)

@​tanstack/db@​0.5.30

Patch Changes

  • Support bare boolean column references in where() and having() clauses. Previously, filtering on a boolean column required eq(col.active, true). Now you can write .where(({ u }) => u.active) and .where(({ u }) => not(u.active)) directly. (#1304)

@​tanstack/db@​0.5.29

Patch Changes

  • fix: avoid DuplicateKeySyncError in join live queries when custom getKey only considers the identity of one of the joined collections (#1290)

  • fix: support aggregates nested inside expressions (e.g. coalesce(count(...), 0)) (#1274)

Changelog

Sourced from @​tanstack/db's changelog.

0.5.33

Patch Changes

  • Add createEffect API for reactive delta-driven effects and useLiveQueryEffect React hook. (#1221)

    createEffect attaches callbacks to a live query's delta stream — firing onEnter, onExit, and onUpdate for row-level query-result transitions and onBatch for the full delta batch from each graph run — without materialising the full result set. Supports skipInitial, orderBy + limit (top-K window), joins, lazy loading, transaction coalescing, async disposal with AbortSignal, and onSourceError / onError callbacks.

    useLiveQueryEffect is the React hook wrapper that manages the effect lifecycle (create on mount, dispose on unmount, recreate on dependency change).

0.5.32

Patch Changes

  • fix(db): use Ref<T, Nullable> brand instead of Ref<T> | undefined for nullable join refs in declarative select (#1262)

    The declarative select() callback receives proxy objects that record property accesses. These proxies are always truthy at build time, but nullable join sides (left/right/full) were typed as Ref<T> | undefined, misleading users into using ?. and ?? operators that have no effect at runtime. Nullable join refs are now typed as Ref<T, true>, which allows direct property access without optional chaining while correctly producing T | undefined in the result type.

  • Fix unbounded WHERE expression growth in DeduplicatedLoadSubset when loading all data after accumulating specific predicates. The deduplication layer now correctly tracks the original request predicate (e.g., where: undefined for "load all") instead of the optimized difference query sent to the backend, ensuring hasLoadedAllData is properly set and subsequent requests are deduplicated. (#1348)

  • fix(db): throw error when fn.select() is used with groupBy() (#1324)

  • Add queryOnce helper for one-shot query execution, including findOne() support and optional QueryBuilder configs. (#1211)

0.5.31

Patch Changes

  • Add Intent agent skills (SKILL.md files) to guide AI coding agents. Include skills for core DB concepts, all 5 framework bindings, meta-framework integration, and offline transactions. Also add export * from '@tanstack/db' to angular-db for consistency with other framework packages. (#1330)

0.5.30

Patch Changes

  • Support bare boolean column references in where() and having() clauses. Previously, filtering on a boolean column required eq(col.active, true). Now you can write .where(({ u }) => u.active) and .where(({ u }) => not(u.active)) directly. (#1304)

0.5.29

Patch Changes

  • fix: avoid DuplicateKeySyncError in join live queries when custom getKey only considers the identity of one of the joined collections (#1290)

  • fix: support aggregates nested inside expressions (e.g. coalesce(count(...), 0)) (#1274)

Commits

Updates @tanstack/query-db-collection from 1.0.25 to 1.0.30

Release notes

Sourced from @​tanstack/query-db-collection's releases.

@​tanstack/query-db-collection@​1.0.30

Patch Changes

@​tanstack/query-db-collection@​1.0.29

Patch Changes

@​tanstack/query-db-collection@​1.0.28

Patch Changes

@​tanstack/query-db-collection@​1.0.27

Patch Changes

@​tanstack/query-db-collection@​1.0.26

Patch Changes

  • Improve queryCollectionOptions type compatibility with TanStack Query option objects. (#1289)

    • Accept queryFn return types of T | Promise<T> instead of requiring Promise<T>.
    • Align enabled, staleTime, refetchInterval, retry, and retryDelay with QueryObserverOptions typing.
    • Support tagged queryKey values (DataTag) from queryOptions(...) spread usage.
    • Preserve runtime safety: query collections still require an executable queryFn, and wrapped responses still require select.
  • Updated dependencies [77b815e, ac4ce67]:

    • @​tanstack/db@​0.5.29
Changelog

Sourced from @​tanstack/query-db-collection's changelog.

1.0.30

Patch Changes

1.0.29

Patch Changes

1.0.28

Patch Changes

1.0.27

Patch Changes

1.0.26

Patch Changes

  • Improve queryCollectionOptions type compatibility with TanStack Query option objects. (#1289)

    • Accept queryFn return types of T | Promise<T> instead of requiring Promise<T>.
    • Align enabled, staleTime, refetchInterval, retry, and retryDelay with QueryObserverOptions typing.
    • Support tagged queryKey values (DataTag) from queryOptions(...) spread usage.
    • Preserve runtime safety: query collections still require an executable queryFn, and wrapped responses still require select.
  • Updated dependencies [77b815e, ac4ce67]:

    • @​tanstack/db@​0.5.29
Commits

Updates @tanstack/react-db from 0.1.72 to 0.1.77

Release notes

Sourced from @​tanstack/react-db's releases.

@​tanstack/react-db@​0.1.77

Patch Changes

  • Add createEffect API for reactive delta-driven effects and useLiveQueryEffect React hook. (#1221)

    createEffect attaches callbacks to a live query's delta stream — firing onEnter, onExit, and onUpdate for row-level query-result transitions and onBatch for the full delta batch from each graph run — without materialising the full result set. Supports skipInitial, orderBy + limit (top-K window), joins, lazy loading, transaction coalescing, async disposal with AbortSignal, and onSourceError / onError callbacks.

    useLiveQueryEffect is the React hook wrapper that manages the effect lifecycle (create on mount, dispose on unmount, recreate on dependency change).

  • Updated dependencies [c3e6a96]:

    • @​tanstack/db@​0.5.33

@​tanstack/react-db@​0.1.76

Patch Changes

@​tanstack/react-db@​0.1.75

Patch Changes

  • Add Intent agent skills (SKILL.md files) to guide AI coding agents. Include skills for core DB concepts, all 5 framework bindings, meta-framework integration, and offline transactions. Also add export * from '@tanstack/db' to angular-db for consistency with other framework packages. (#1330)

  • fix(react-db): make getNextPageParam optional in useLiveInfiniteQuery (#1268)

  • fix(react-db): handle rejected/stale setWindow promises in useLiveInfiniteQuery (#1269)

  • Updated dependencies [bf1d078]:

    • @​tanstack/db@​0.5.31

@​tanstack/react-db@​0.1.74

Patch Changes

@​tanstack/react-db@​0.1.73

Patch Changes

Changelog

Sourced from @​tanstack/react-db's changelog.

0.1.77

Patch Changes

  • Add createEffect API for reactive delta-driven effects and useLiveQueryEffect React hook. (#1221)

    createEffect attaches callbacks to a live query's delta stream — firing onEnter, onExit, and onUpdate for row-level query-result transitions and onBatch for the full delta batch from each graph run — without materialising the full result set. Supports skipInitial, orderBy + limit (top-K window), joins, lazy loading, transaction coalescing, async disposal with AbortSignal, and onSourceError / onError callbacks.

    useLiveQueryEffect is the React hook wrapper that manages the effect lifecycle (create on mount, dispose on unmount, recreate on dependency change).

  • Updated dependencies [c3e6a96]:

    • @​tanstack/db@​0.5.33

0.1.76

Patch Changes

0.1.75

Patch Changes

  • Add Intent agent skills (SKILL.md files) to guide AI coding agents. Include skills for core DB concepts, all 5 framework bindings, meta-framework integration, and offline transactions. Also add export * from '@tanstack/db' to angular-db for consistency with other framework packages. (#1330)

  • fix(react-db): make getNextPageParam optional in useLiveInfiniteQuery (#1268)

  • fix(react-db): handle rejected/stale setWindow promises in useLiveInfiniteQuery (#1269)

  • Updated dependencies [bf1d078]:

    • @​tanstack/db@​0.5.31

0.1.74

Patch Changes

0.1.73

Patch Changes

Commits

Updates @tanstack/react-form from 1.28.1 to 1.28.5

Release notes

Sourced from @​tanstack/react-form's releases.

@​tanstack/react-form-nextjs@​1.28.5

Patch Changes

@​tanstack/react-form-remix@​1.28.5

Patch Changes

@​tanstack/react-form-start@​1.28.5

Patch Changes

@​tanstack/react-form@​1.28.5

Patch Changes

  • Reimplement fallback selector for Subscribe component (#2071)

  • Use a named function for the withForm HOC return to enable Fast Refresh. (#2067)

  • Updated dependencies [39932c1]:

    • @​tanstack/form-core@​1.28.5

@​tanstack/react-form-nextjs@​1.28.4

Patch Changes

  • Fixes bad inference from decode-formdata's weird typing of the decode function, including handling how it incorrectly doesn't handle undefined values for the form info object. (#2052)

  • Updated dependencies [f88faaf]:

    • @​tanstack/react-form@​1.28.4

@​tanstack/react-form-remix@​1.28.4

Patch Changes

  • Fixes bad inference from decode-formdata's weird typing of the decode function, including handling how it incorrectly doesn't handle undefined values for the form info object. (#2052)

  • Updated dependencies [f88faaf]:

    • @​tanstack/react-form@​1.28.4

@​tanstack/react-form-start@​1.28.4

Patch Changes

  • Fixes bad inference from decode-formdata's weird typing of the decode function, including handling how it incorrectly doesn't handle undefined values for the form info object. (#2052)

  • Updated dependencies [f88faaf]:

... (truncated)

Changelog

Sourced from @​tanstack/react-form's changelog.

1.28.5

Patch Changes

  • Reimplement fallback selector for Subscribe component (#2071)

  • Use a named function for the withForm HOC return to enable Fast Refresh. (#2067)

  • Updated dependencies [39932c1]:

    • @​tanstack/form-core@​1.28.5

1.28.4

Patch Changes

  • Refactor internals for substancially faster performance (#2035)

  • Updated dependencies [f88faaf]:

    • @​tanstack/form-core@​1.28.4

1.28.3

Patch Changes

  • form arrays now work again (#2041)

  • Updated dependencies [0b3952d]:

    • @​tanstack/form-core@​1.28.3

1.28.2

Patch Changes

  • Updated dependencies [a07862d]:
    • @​tanstack/form-core@​1.28.2
Commits

Updates @tanstack/react-query from 5.90.21 to 5.91.2

Release notes

Sourced from @​tanstack/react-query's releases.

@​tanstack/react-query@​5.91.2

Patch Changes

  • fix(streamedQuery): maintain error state on reset refetch with initialData defined (#10287)

  • Updated dependencies [248975e]:

    • @​tanstack/query-core@​5.91.2

@​tanstack/react-query@​5.91.0

Minor Changes

  • feat: environmentManager (#10199)

Patch Changes

  • Updated dependencies [6fa901b]:
    • @​tanstack/query-core@​5.91.0

@​tanstack/react-query-persist-client@​5.90.27

Patch Changes

  • fix(streamedQuery): maintain error state on reset refetch with initialData defined (#10287)

  • Updated dependencies [248975e]:

    • @​tanstack/query-persist-client-core@​5.92.4
    • @​tanstack/react-query@​5.91.2

@​tanstack/react-query-persist-client@​5.90.25

Patch Changes

  • Updated dependencies [6fa901b]:
    • @​tanstack/react-query@​5.91.0
    • @​tanstack/query-persist-client-core@​5.92.2

@​tanstack/react-query-persist-client@​5.90.23

Patch Changes

  • Updated dependencies [978fc52]:
    • @​tanstack/query-persist-client-core@​5.92.0
    • @​tanstack/react-query@​5.90.21

@​tanstack/react-query-persist-client@​5.90.22

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.91.19
    • @​tanstack/react-query@​5.90.20
Changelog

Sourced from @​tanstack/react-query's changelog.

5.91.2

Patch Changes

  • fix(streamedQuery): maintain error state on reset refetch with initialData defined (#10287)

  • Updated dependencies [248975e]:

    • @​tanstack/query-core@​5.91.2

5.91.1

Patch Changes

  • fix(core): cancel paused initial fetch when last observer unsubscribes (#10291)

  • Updated dependencies [a89aab9]:

    • @​tanstack/query-core@​5.91.1

5.91.0

Minor Changes

  • feat: environmentManager (#10199)

Patch Changes

  • Updated dependencies [6fa901b]:
    • @​tanstack/query-core@​5.91.0
Commits
  • b6fd86b ci: Version Packages (#10297)
  • 79e37cb ci: Version Packages (#10296)
  • a89aab9 fix(core): cancel paused initial fetch when last observer unsubscribes (#10291)
  • 3761d2b ci: Version Packages (#10290)
  • 6fa901b feat/environmentManager (#10199)
  • 3fac499 test(react-query/useSuspenseInfiniteQuery): add test for basic suspend and re...
  • 6d0a2a9 test(react-query/useSuspenseQuery): remove unnecessary 'act' from background ...
  • 9ec0fc6 test(react-query/useSuspenseQueries): remove unnecessary 'act' from backgroun...
  • 67cf8b6 ref: ts cutoff (#10253)
  • 8a59b2d test({react,preact}-query/useSuspenseQueries): add test for suspending when t...
  • Additional commits viewable in compare view

Updates @tanstack/react-router from 1.159.5 to 1.167.5

Release notes

Sourced from @​tanstack/react-router's releases.

v1.166.7

Version 1.166.7 - 3/10/26, 7:24 PM

Changes

Fix

  • router-core: null prototype input/output objects (#6882) (dadf7e9) by @​Sheraff

Chore

  • eslint: remove package-level unused-vars overrides (#6782) (d306d58) by @​Sheraff

Packages

  • @​tanstack/router-core@​1.166.7
  • @​tanstack/solid-router@​1.166.7
  • @​tanstack/react-router@​1.166.7
  • @​tanstack/vue-router@​1.166.7
  • @​tanstack/solid-router-ssr-query@​1.166.7
  • @​tanstack/react-router-ssr-query@​1.166.7
  • @​tanstack/vue-router-ssr-query@​1.166.7
  • @​tanstack/router-ssr-query-core@​1.166.7
  • @​tanstack/zod-adapter@​1.166.7
  • @​tanstack/valibot-adapter@​1.166.7
  • @​tanstack/arktype-adapter@​1.166.7
  • @​tanstack/router-devtools@​1.166.7
  • @​tanstack/solid-router-devtools@​1.166.7
  • @​tanstack/react-router-devtools@​1.166.7
  • @​tanstack/vue-router-devtools@​1.166.7
  • @​tanstack/router-devtools-core@​1.166.7
  • @​tanstack/router-generator@​1.166.7
  • @​tanstack/router-cli@​1.166.7
  • @​tanstack/router-plugin@​1.166.7
  • @​tanstack/router-vite-plugin@​1.166.7
  • @​tanstack/solid-start@​1.166.7
  • @​tanstack/solid-start-client@​1.166.7
  • @​tanstack/solid-start-server@​1.166.7
  • @​tanstack/vue-start@​1.166.7
  • @​tanstack/vue-start-client@​1.166.7
  • @​tanstack/vue-start-server@​1.166.7
  • @​tanstack/start-client-core@​1.166.7
  • @​tanstack/start-server-core@​1.166.7
  • @​tanstack/start-storage-context@​1.166.7
  • @​tanstack/react-start@​1.166.7
  • @​tanstack/react-start-client@​1.166.7
  • @​tanstack/react-start-server@​1.166.7
  • @​tanstack/start-plugin-core@​1.166.7
  • @​tanstack/start-static-server-functions@​1.166.7

... (truncated)

Changelog

Sourced from @​tanstack/react-router's changelog.

1.167.5

Patch Changes

  • Updated dependencies [5ff4f0b]:
    • @​tanstack/router-core@​1.167.5

1.167.4

Patch Changes

  • Add @​tanstack/intent AI agent skills and CLI entry points for Router and Start packages (#6866)

  • Updated dependencies [940151c]:

    • @​tanstack/router-core@​1.167.4

1.167.3

Patch Changes

  • Updated dependencies [32fcba7]:
    • @​tanstack/router-core@​1.167.3

1.167.2

Patch Changes

  • build: update to vite-config 5.x (rolldown) (#6926)

  • Updated dependencies [838b0eb]:

    • @​tanstack/history@​1.161.6
    • @​tanstack/router-core@​1.167.2

1.167.1

Patch Changes

  • fix: build with @​tanstack/vite-config 0.4.3 (#6923)

  • Updated dependencies [ef9b241]:

    • @​tanstack/router-core@​1.167.1
    • @​tanstack/history@​1.161.5

1.167.0

Minor Changes

  • feat: add staleReloadMode (#6921)

Patch Changes

... (truncated)

Commits

Updates @uiw/react-codemirror from 4.25.4 to 4.25.8

Release notes

Sourced from @​uiw/react-codemirror's releases.

v4.25.8

Buy me a coffee

Documentation v4.25.8: https://raw.githack.com/uiwjs/react-codemirror/03129ff/index.html
Comparing Changes: uiwjs/react-codemirror@v4.25.7...v4.25.8

npm i @uiw/react-codemirror@4.25.8

v4.25.7

Buy me a coffee

Documentation v4.25.7: https://raw.githack.com/uiwjs/react-codemirror/f3d65ee/index.html
Comparing Changes: uiwjs/react-codemirror@v4.25.6...v4.25.7

npm i @uiw/react-codemirror@4.25.7
  • 🐞 fix(langs): remove unused imports in generated index.ts #761 d052ce2 @​jaywcjlove

v4.25.6

Buy me a coffee

Documentation v4.25.6: https://raw.githack.com/uiwjs/react-codemirror/b4c8595/index.html
Comparing Changes: uiwjs/react-codemirror@v4.25.5...v4.25.6

npm i @uiw/react-codemirror@4.25.6
  • 🐞 fix(langs): declare all language packages as explicit dependencies (#760) dddf539 @​EurFelux

v4.25.5

…14 updates

Bumps the npm-dependencies group with 14 updates in the /web directory:

| Package | From | To |
| --- | --- | --- |
| [@dnd-kit/sortable](https://github.com/clauderic/dnd-kit/tree/HEAD/packages/sortable) | `8.0.0` | `10.0.0` |
| [@tanstack/db](https://github.com/TanStack/db/tree/HEAD/packages/db) | `0.5.28` | `0.5.33` |
| [@tanstack/query-db-collection](https://github.com/TanStack/db/tree/HEAD/packages/query-db-collection) | `1.0.25` | `1.0.30` |
| [@tanstack/react-db](https://github.com/TanStack/db/tree/HEAD/packages/react-db) | `0.1.72` | `0.1.77` |
| [@tanstack/react-form](https://github.com/TanStack/form/tree/HEAD/packages/react-form) | `1.28.1` | `1.28.5` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.90.21` | `5.91.2` |
| [@tanstack/react-router](https://github.com/TanStack/router/tree/HEAD/packages/react-router) | `1.159.5` | `1.167.5` |
| [@uiw/react-codemirror](https://github.com/uiwjs/react-codemirror) | `4.25.4` | `4.25.8` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.563.0` | `0.577.0` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.3.1` | `19.2.4` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.3.1` | `19.2.4` |
| [recharts](https://github.com/recharts/recharts) | `3.7.0` | `3.8.0` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `2.6.1` | `3.5.0` |
| [zod](https://github.com/colinhacks/zod) | `3.25.76` | `4.3.6` |



Updates `@dnd-kit/sortable` from 8.0.0 to 10.0.0
- [Release notes](https://github.com/clauderic/dnd-kit/releases)
- [Changelog](https://github.com/clauderic/dnd-kit/blob/@dnd-kit/sortable@10.0.0/packages/sortable/CHANGELOG.md)
- [Commits](https://github.com/clauderic/dnd-kit/commits/@dnd-kit/sortable@10.0.0/packages/sortable)

Updates `@tanstack/db` from 0.5.28 to 0.5.33
- [Release notes](https://github.com/TanStack/db/releases)
- [Changelog](https://github.com/TanStack/db/blob/main/packages/db/CHANGELOG.md)
- [Commits](https://github.com/TanStack/db/commits/@tanstack/db@0.5.33/packages/db)

Updates `@tanstack/query-db-collection` from 1.0.25 to 1.0.30
- [Release notes](https://github.com/TanStack/db/releases)
- [Changelog](https://github.com/TanStack/db/blob/main/packages/query-db-collection/CHANGELOG.md)
- [Commits](https://github.com/TanStack/db/commits/@tanstack/query-db-collection@1.0.30/packages/query-db-collection)

Updates `@tanstack/react-db` from 0.1.72 to 0.1.77
- [Release notes](https://github.com/TanStack/db/releases)
- [Changelog](https://github.com/TanStack/db/blob/main/packages/react-db/CHANGELOG.md)
- [Commits](https://github.com/TanStack/db/commits/@tanstack/react-db@0.1.77/packages/react-db)

Updates `@tanstack/react-form` from 1.28.1 to 1.28.5
- [Release notes](https://github.com/TanStack/form/releases)
- [Changelog](https://github.com/TanStack/form/blob/main/packages/react-form/CHANGELOG.md)
- [Commits](https://github.com/TanStack/form/commits/@tanstack/react-form@1.28.5/packages/react-form)

Updates `@tanstack/react-query` from 5.90.21 to 5.91.2
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query@5.91.2/packages/react-query)

Updates `@tanstack/react-router` from 1.159.5 to 1.167.5
- [Release notes](https://github.com/TanStack/router/releases)
- [Changelog](https://github.com/TanStack/router/blob/main/packages/react-router/CHANGELOG.md)
- [Commits](https://github.com/TanStack/router/commits/@tanstack/react-router@1.167.5/packages/react-router)

Updates `@uiw/react-codemirror` from 4.25.4 to 4.25.8
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.25.4...v4.25.8)

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

Updates `react` from 18.3.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 `react-dom` from 18.3.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 `recharts` from 3.7.0 to 3.8.0
- [Release notes](https://github.com/recharts/recharts/releases)
- [Changelog](https://github.com/recharts/recharts/blob/main/CHANGELOG.md)
- [Commits](recharts/recharts@v3.7.0...v3.8.0)

Updates `tailwind-merge` from 2.6.1 to 3.5.0
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v2.6.1...v3.5.0)

Updates `zod` from 3.25.76 to 4.3.6
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v3.25.76...v4.3.6)

---
updated-dependencies:
- dependency-name: "@dnd-kit/sortable"
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@tanstack/db"
  dependency-version: 0.5.33
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@tanstack/query-db-collection"
  dependency-version: 1.0.30
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@tanstack/react-db"
  dependency-version: 0.1.77
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@tanstack/react-form"
  dependency-version: 1.28.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.91.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@tanstack/react-router"
  dependency-version: 1.167.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@uiw/react-codemirror"
  dependency-version: 4.25.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: lucide-react
  dependency-version: 0.577.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: react
  dependency-version: 19.2.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: recharts
  dependency-version: 3.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: tailwind-merge
  dependency-version: 3.5.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: zod
  dependency-version: 4.3.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
...

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

dependabot bot commented on behalf of github Mar 20, 2026

Labels

The following labels could not be found: dependencies, javascript. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot @github
Copy link
Copy Markdown
Author

dependabot bot commented on behalf of github Mar 27, 2026

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

@dependabot dependabot bot closed this Mar 27, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/web/npm-dependencies-6d89af4043 branch March 27, 2026 05:34
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