Skip to content

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

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/web/npm-dependencies-822485d5f2
Open

chore(deps): bump the npm-dependencies group across 1 directory with 15 updates#69
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/web/npm-dependencies-822485d5f2

Conversation

@dependabot
Copy link
Copy Markdown

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

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

Package From To
@codemirror/lang-yaml 6.1.2 6.1.3
@dnd-kit/sortable 8.0.0 10.0.0
@tanstack/db 0.5.28 0.6.0
@tanstack/query-db-collection 1.0.25 1.0.31
@tanstack/react-db 0.1.72 0.1.78
@tanstack/react-form 1.28.1 1.28.5
@tanstack/react-query 5.90.21 5.95.2
@tanstack/react-router 1.159.5 1.168.7
@uiw/react-codemirror 4.25.4 4.25.9
lucide-react 0.563.0 1.7.0
react 18.3.1 19.2.4
react-dom 18.3.1 19.2.4
recharts 3.7.0 3.8.1
tailwind-merge 2.6.1 3.5.0
zod 3.25.76 4.3.6

Updates @codemirror/lang-yaml from 6.1.2 to 6.1.3

Changelog

Sourced from @​codemirror/lang-yaml's changelog.

6.1.3 (2026-03-24)

Bug fixes

Fix a regression in indentation caused by a bugfix in @​lezer/lr 1.4.7.

Commits
  • 1a5b4f7 Mark version 6.1.3
  • eda1a0d Use start of first pair, rather than start of block node, in indent
  • 7ecebaa Remove duplicated slash in forum url in README
  • d5a487a Fix forum link in readme
  • 721f1f1 Add a usage section to readme
  • See full diff in compare view

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

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

Minor Changes

  • Make indexing explicit with two index types for different use cases (#1353)

    Breaking Changes:

    • autoIndex now defaults to off instead of eager
    • BTreeIndex is no longer exported from @tanstack/db main entry point
    • To use createIndex() or autoIndex: 'eager', you must set defaultIndexType on the collection

    Changes:

    • New @tanstack/db/indexing entry point for tree-shakeable indexing
    • BasicIndex - Lightweight index using Map + sorted Array for both equality and range queries (eq, in, gt, gte, lt, lte). O(n) updates but fast reads.
    • BTreeIndex - Full-featured index with O(log n) updates and sorted iteration for ORDER BY optimization on large collections (10k+ items)
    • Dev mode suggestions (ON by default) warn when indexes would help

    Migration:

    If you were relying on auto-indexing, set defaultIndexType on your collections:

    1. Lightweight indexing (good for most use cases):
    import { BasicIndex } from '@tanstack/db/indexing'
    const collection = createCollection({
    defaultIndexType: BasicIndex,
    autoIndex: 'eager',
    // ...
    })

    1. Full BTree indexing (for ORDER BY optimization on large collections):
    import { BTreeIndex } from '@tanstack/db/indexing'
    const collection = createCollection({
    defaultIndexType: BTreeIndex,
    autoIndex: 'eager',
    // ...
    })

    1. Per-index explicit type (mix index types):
    import { BasicIndex, BTreeIndex } from '@tanstack/db/indexing'
    const collection = createCollection({

... (truncated)

Commits

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

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

Patch Changes

  • fix: prevent stale query refreshes from overwriting optimistic offline changes on reconnect (#1390)

    When reconnecting with pending offline transactions, query-backed collections now defer processing query refreshes until queued writes finish replaying, avoiding temporary reverts to stale server data.

  • fix: default persisted query retention to gcTime when omitted (#1400)

    When persistedGcTime is not provided, query collections now use the query's effective gcTime as the persisted retention TTL. This prevents unexpectedly early cleanup of persisted rows.

  • fix: Prevent stale query cache from re-inserting deleted items when a destroyed observer is recreated with gcTime > 0. (#1387)

  • Updated dependencies [f60384b, b8abc02, 09c7afc, bb09eb1, 179d666, 43ecbfa, 055fd94, 055fd94, 055fd94, 055fd94, 85f5435, b65d8f7, e0df07e, 9952921, d351c67]:

    • @​tanstack/db@​0.6.0

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)

... (truncated)

Commits

Updates @tanstack/react-db from 0.1.72 to 0.1.78

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

Patch Changes

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

... (truncated)

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

Release notes

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

@​tanstack/react-query-devtools@​5.95.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.95.2
    • @​tanstack/react-query@​5.95.2

@​tanstack/react-query-next-experimental@​5.95.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/react-query@​5.95.2

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

Patch Changes

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

@​tanstack/react-query@​5.95.2

Patch Changes

  • Updated dependencies [cd5a35b]:
    • @​tanstack/query-core@​5.95.2

@​tanstack/react-query-devtools@​5.95.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.95.1
    • @​tanstack/react-query@​5.95.1

@​tanstack/react-query-next-experimental@​5.95.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/react-query@​5.95.1

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

Patch Changes

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

@​tanstack/react-query@​5.95.1

Patch Changes

... (truncated)

Changelog

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

5.95.2

Patch Changes

  • Updated dependencies [cd5a35b]:
    • @​tanstack/query-core@​5.95.2

5.95.1

Patch Changes

  • Updated dependencies [1f1775c]:
    • @​tanstack/query-core@​5.95.1

5.95.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.95.0

5.94.5

Patch Changes

  • fix(*): resolve issue about excluded build directory (#10312)

  • Updated dependencies [4b6536d]:

    • @​tanstack/query-core@​5.94.5

5.94.4

Patch Changes

  • chore: fixed version (#10064)

  • Updated dependencies [4c75210]:

    • @​tanstack/query-core@​5.94.4

5.91.3

Patch Changes

  • fix: stop node types from leaking into browser (#10302)

5.91.2

Patch Changes

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

... (truncated)

Commits

Updates @tanstack/react-router from 1.159.5 to 1.168.7

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

Patch Changes

  • Updated dependencies [42c3f3b]:
    • @​tanstack/router-core@​1.168.6

1.168.6

Patch Changes

  • Remove the extra SSR sentinel tag used for onRendered in React Router while (#7054) preserving the client-side render timing needed for scroll restoration and onRendered subscribers.

1.168.5

Patch Changes

  • fix: scroll restoration without throttling (#7042)

  • Updated dependencies [cf5f554]:

    • @​tanstack/router-core@​1.168.5

1.168.4

Patch Changes

  • tanstack/store 0.9.3 (#7041)

  • Updated dependencies [71a8b68]:

    • @​tanstack/router-core@​1.168.4

1.168.3

Patch Changes

  • feat: transformAssets (#7023)

  • Updated dependencies [d81d21a]:

    • @​tanstack/router-core@​1.168.3

1.168.2

Patch Changes

  • Replace tiny-invariant and tiny-warning with in-house solution for bundle-size (#7007)

  • Updated dependencies [c9e1855]:

    • @​tanstack/router-core@​1.168.2

... (truncated)

Commits

Updates @uiw/react-codemirror from 4.25.4 to 4.25.9

Release notes

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

v4.25.9

Buy me a coffee

Documentation v4.25.9: https://raw.githack.com/uiwjs/react-codemirror/6b3db64/index.html
Comparing Changes: uiwjs/react-codemirror@v4.25.8...v4.25.9

npm i @uiw/react-codemirror@4.25.9

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

... (truncated)

Commits

…15 updates

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

| Package | From | To |
| --- | --- | --- |
| [@codemirror/lang-yaml](https://github.com/codemirror/lang-yaml) | `6.1.2` | `6.1.3` |
| [@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.6.0` |
| [@tanstack/query-db-collection](https://github.com/TanStack/db/tree/HEAD/packages/query-db-collection) | `1.0.25` | `1.0.31` |
| [@tanstack/react-db](https://github.com/TanStack/db/tree/HEAD/packages/react-db) | `0.1.72` | `0.1.78` |
| [@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.95.2` |
| [@tanstack/react-router](https://github.com/TanStack/router/tree/HEAD/packages/react-router) | `1.159.5` | `1.168.7` |
| [@uiw/react-codemirror](https://github.com/uiwjs/react-codemirror) | `4.25.4` | `4.25.9` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.563.0` | `1.7.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.1` |
| [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 `@codemirror/lang-yaml` from 6.1.2 to 6.1.3
- [Changelog](https://github.com/codemirror/lang-yaml/blob/main/CHANGELOG.md)
- [Commits](codemirror/lang-yaml@6.1.2...6.1.3)

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.6.0
- [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/HEAD/packages/db)

Updates `@tanstack/query-db-collection` from 1.0.25 to 1.0.31
- [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/HEAD/packages/query-db-collection)

Updates `@tanstack/react-db` from 0.1.72 to 0.1.78
- [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/HEAD/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.95.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.95.2/packages/react-query)

Updates `@tanstack/react-router` from 1.159.5 to 1.168.7
- [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.168.7/packages/react-router)

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

Updates `lucide-react` from 0.563.0 to 1.7.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/1.7.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.1
- [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.1)

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: "@codemirror/lang-yaml"
  dependency-version: 6.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-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.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@tanstack/query-db-collection"
  dependency-version: 1.0.31
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@tanstack/react-db"
  dependency-version: 0.1.78
  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.95.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@tanstack/react-router"
  dependency-version: 1.168.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@uiw/react-codemirror"
  dependency-version: 4.25.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: lucide-react
  dependency-version: 1.7.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  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.1
  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 27, 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.

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