Skip to content

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

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

chore(deps): bump the npm-dependencies group across 1 directory with 20 updates#78
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/web/npm-dependencies-7a9fcb8cde

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github May 1, 2026

Bumps the npm-dependencies group with 20 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.5
@tanstack/query-db-collection 1.0.25 1.0.36
@tanstack/react-db 0.1.72 0.1.83
@tanstack/react-form 1.28.1 1.29.1
@tanstack/react-query 5.90.21 5.100.6
@tanstack/react-router 1.159.5 1.169.1
@tauri-apps/api 2.10.1 2.11.0
@tauri-apps/plugin-dialog 2.6.0 2.7.0
@tauri-apps/plugin-fs 2.4.5 2.5.0
@tauri-apps/plugin-sql 2.3.2 2.4.0
@tauri-apps/plugin-updater 2.10.0 2.10.1
@uiw/react-codemirror 4.25.4 4.25.9
lucide-react 0.563.0 1.14.0
react 18.3.1 19.2.5
react-dom 18.3.1 19.2.5
recharts 3.7.0 3.8.1
tailwind-merge 2.6.1 3.5.0
zod 3.25.76 4.4.1

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

Release notes

Sourced from @​tanstack/db's releases.

@​tanstack/db@​0.6.5

Patch Changes

  • fix: pass child where clauses to loadSubset in includes (#1471)

    Pure-child WHERE clauses on includes subqueries (e.g., .where(({ item }) => eq(item.status, 'active'))) are now passed through to the child collection's loadSubset/queryFn, enabling server-side filtering. Previously only the correlation filter reached the sync layer; additional child filters were applied client-side only.

  • fix: lazy load includes child collections in on-demand sync mode (#1471)

    Includes child collections now use the same lazy loading mechanism as regular joins. When a query uses includes with a correlation WHERE clause (e.g., .where(({ item }) => eq(item.rootId, r.id))), only matching child rows are loaded on-demand via requestSnapshot({ where: inArray(field, keys) }) instead of loading all data upfront. This ensures the sync layer's queryFn receives the correlation filter in loadSubsetOptions, enabling efficient server-side filtering.

@​tanstack/db@​0.6.4

Patch Changes

  • Add includes (hierarchical data) documentation to all framework SKILL.md files and fix inaccurate toArray scalar select constraint in db-core/live-queries skill. (#1361)

@​tanstack/db@​0.6.3

Patch Changes

  • Fix nested toArray() includes not propagating changes at depth 3+. When a query used nested includes like toArray(runs) → toArray(texts) → concat(toArray(textDeltas)), changes to the deepest level (e.g., inserting a textDelta) were silently lost because flushIncludesState only drained one level of nested buffers. Also throw a clear error when toArray() or concat(toArray()) is used inside expressions like coalesce(), instead of silently producing incorrect results. (#1457)

  • fix: orderBy + limit queries crash when no index exists (#1437)

    When auto-indexing is disabled (the default), queries with orderBy and limit where the limit exceeds the available data would crash with "Ordered snapshot was requested but no index was found". The on-demand loader now correctly skips cursor-based loading when no index is available.

@​tanstack/db@​0.6.2

Patch Changes

  • Deduplicate and filter null join keys in lazy join subset queries. Previously, when multiple rows referenced the same foreign key or had null foreign keys, the full unfiltered array was passed to inArray(), producing bloated ANY() SQL params with repeated IDs and NULLs. (#1448)

  • fix: default getKey on live query collections fails when used as a source in chained collections (#1432)

    The default WeakMap-based getKey breaks when enriched change values (with virtual props like $synced, $origin, $key) are passed through chained live query collections. The enriched objects are new references not found in the WeakMap, causing all items to resolve to key undefined and collapse into a single item. Falls back to item.$key when the WeakMap lookup misses.

@​tanstack/db@​0.6.1

Patch Changes

  • Update all SKILL.md files to v0.6.0 with new documentation for persistence, virtual properties, queryOnce, createEffect, includes, indexing, and sync metadata. Add tanstack-intent keyword to all packages with skills. (#1421)
Changelog

Sourced from @​tanstack/db's changelog.

0.6.5

Patch Changes

  • fix: pass child where clauses to loadSubset in includes (#1471)

    Pure-child WHERE clauses on includes subqueries (e.g., .where(({ item }) => eq(item.status, 'active'))) are now passed through to the child collection's loadSubset/queryFn, enabling server-side filtering. Previously only the correlation filter reached the sync layer; additional child filters were applied client-side only.

  • fix: lazy load includes child collections in on-demand sync mode (#1471)

    Includes child collections now use the same lazy loading mechanism as regular joins. When a query uses includes with a correlation WHERE clause (e.g., .where(({ item }) => eq(item.rootId, r.id))), only matching child rows are loaded on-demand via requestSnapshot({ where: inArray(field, keys) }) instead of loading all data upfront. This ensures the sync layer's queryFn receives the correlation filter in loadSubsetOptions, enabling efficient server-side filtering.

0.6.4

Patch Changes

  • Add includes (hierarchical data) documentation to all framework SKILL.md files and fix inaccurate toArray scalar select constraint in db-core/live-queries skill. (#1361)

0.6.3

Patch Changes

  • Fix nested toArray() includes not propagating changes at depth 3+. When a query used nested includes like toArray(runs) → toArray(texts) → concat(toArray(textDeltas)), changes to the deepest level (e.g., inserting a textDelta) were silently lost because flushIncludesState only drained one level of nested buffers. Also throw a clear error when toArray() or concat(toArray()) is used inside expressions like coalesce(), instead of silently producing incorrect results. (#1457)

  • fix: orderBy + limit queries crash when no index exists (#1437)

    When auto-indexing is disabled (the default), queries with orderBy and limit where the limit exceeds the available data would crash with "Ordered snapshot was requested but no index was found". The on-demand loader now correctly skips cursor-based loading when no index is available.

0.6.2

Patch Changes

  • Deduplicate and filter null join keys in lazy join subset queries. Previously, when multiple rows referenced the same foreign key or had null foreign keys, the full unfiltered array was passed to inArray(), producing bloated ANY() SQL params with repeated IDs and NULLs. (#1448)

  • fix: default getKey on live query collections fails when used as a source in chained collections (#1432)

    The default WeakMap-based getKey breaks when enriched change values (with virtual props like $synced, $origin, $key) are passed through chained live query collections. The enriched objects are new references not found in the WeakMap, causing all items to resolve to key undefined and collapse into a single item. Falls back to item.$key when the WeakMap lookup misses.

0.6.1

Patch Changes

  • Update all SKILL.md files to v0.6.0 with new documentation for persistence, virtual properties, queryOnce, createEffect, includes, indexing, and sync metadata. Add tanstack-intent keyword to all packages with skills. (#1421)

0.6.0

Minor Changes

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

... (truncated)

Commits
  • 29cf7ce ci: Version Packages (#1475)
  • 232f228 fix: lazy load includes child collections in on-demand sync mode (#1471)
  • 7ea2020 ci: Version Packages (#1462)
  • 1e69dd6 Docs for includes (#1361)
  • c336aae ci: Version Packages (#1459)
  • e29aab3 fix(db): propagate changes through nested toArray includes at depth 3+ (#1457)
  • f4a9bd2 fix: skip on-demand loading when no index exists for orderBy + limit queries ...
  • e8e029e ci: Version Packages (#1433)
  • 3fe689a fix: deduplicate and filter null join keys in lazy join subset queries (#1448)
  • c314c36 fix: default getKey on live query collections fails on enriched objects (#1432)
  • Additional commits viewable in compare view

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

Release notes

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

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

Patch Changes

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

Patch Changes

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

Patch Changes

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

Patch Changes

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

Patch Changes

Changelog

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

1.0.36

Patch Changes

1.0.35

Patch Changes

1.0.34

Patch Changes

1.0.33

Patch Changes

1.0.32

Patch Changes

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

... (truncated)

Commits

Updates @tanstack/react-db from 0.1.72 to 0.1.83

Release notes

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

@​tanstack/react-db@​0.1.83

Patch Changes

@​tanstack/react-db@​0.1.82

Patch Changes

  • Add includes (hierarchical data) documentation to all framework SKILL.md files and fix inaccurate toArray scalar select constraint in db-core/live-queries skill. (#1361)

  • Updated dependencies [1e69dd6]:

    • @​tanstack/db@​0.6.4

@​tanstack/react-db@​0.1.81

Patch Changes

@​tanstack/react-db@​0.1.80

Patch Changes

  • Fix stale status mismatch in useLiveSuspenseQuery causing infinite suspense fallback. (#1427)

  • Updated dependencies [3fe689a, c314c36]:

    • @​tanstack/db@​0.6.2

@​tanstack/react-db@​0.1.79

Patch Changes

  • Update all SKILL.md files to v0.6.0 with new documentation for persistence, virtual properties, queryOnce, createEffect, includes, indexing, and sync metadata. Add tanstack-intent keyword to all packages with skills. (#1421)

  • Updated dependencies [8b7fb1a]:

    • @​tanstack/db@​0.6.1
Changelog

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

0.1.83

Patch Changes

0.1.82

Patch Changes

  • Add includes (hierarchical data) documentation to all framework SKILL.md files and fix inaccurate toArray scalar select constraint in db-core/live-queries skill. (#1361)

  • Updated dependencies [1e69dd6]:

    • @​tanstack/db@​0.6.4

0.1.81

Patch Changes

0.1.80

Patch Changes

  • Fix stale status mismatch in useLiveSuspenseQuery causing infinite suspense fallback. (#1427)

  • Updated dependencies [3fe689a, c314c36]:

    • @​tanstack/db@​0.6.2

0.1.79

Patch Changes

  • Update all SKILL.md files to v0.6.0 with new documentation for persistence, virtual properties, queryOnce, createEffect, includes, indexing, and sync metadata. Add tanstack-intent keyword to all packages with skills. (#1421)

  • Updated dependencies [8b7fb1a]:

    • @​tanstack/db@​0.6.1

0.1.78

Patch Changes

... (truncated)

Commits

Updates @tanstack/react-form from 1.28.1 to 1.29.1

Release notes

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

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

Patch Changes

  • Updated dependencies []:
    • @​tanstack/react-form@​1.29.1

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

Patch Changes

  • Updated dependencies []:
    • @​tanstack/react-form@​1.29.1

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

Patch Changes

  • Updated dependencies []:
    • @​tanstack/react-form@​1.29.1

@​tanstack/react-form@​1.29.1

Patch Changes

  • Updated dependencies [6b8aa1e]:
    • @​tanstack/form-core@​1.29.1

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

Patch Changes

  • Updated dependencies [d6ab662]:
    • @​tanstack/react-form@​1.29.0

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

Patch Changes

  • Updated dependencies [d6ab662]:
    • @​tanstack/react-form@​1.29.0

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

Patch Changes

  • Updated dependencies [d6ab662]:
    • @​tanstack/react-form@​1.29.0

@​tanstack/react-form@​1.29.0

Minor Changes

  • Adds extension method to AppForm allowing for teams to extend upstream AppForms (#2106)

Patch Changes

  • Updated dependencies []:

... (truncated)

Changelog

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

1.29.1

Patch Changes

  • Updated dependencies [6b8aa1e]:
    • @​tanstack/form-core@​1.29.1

1.29.0

Minor Changes

  • Adds extension method to AppForm allowing for teams to extend upstream AppForms (#2106)

Patch Changes

  • Updated dependencies []:
    • @​tanstack/form-core@​1.29.0

1.28.6

Patch Changes

  • fix(core): field unmount (#2068)

  • Updated dependencies [7a1428d]:

    • @​tanstack/form-core@​1.28.6

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

... (truncated)

Commits

Updates @tanstack/react-query from 5.90.21 to 5.100.6

Release notes

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

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

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

@​tanstack/react-query@​5.100.6

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

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

@​tanstack/react-query@​5.100.5

Patch Changes

... (truncated)

Changelog

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

5.100.6

Patch Changes

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

5.100.5

Patch Changes

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

5.100.4

Patch Changes

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

5.100.3

Patch Changes

  • fix(suspense): skip calling combine when queries would suspend (#10576)

  • Updated dependencies [f85d825]:

    • @​tanstack/query-core@​5.100.3

5.100.2

Patch Changes

5.100.1

Patch Changes

  • Updated dependencies [1bb0d23]:
    • @​tanstack/query-core@​5.100.1

5.100.0

Patch Changes

  • Updated dependencies [6540a41]:
    • @​tanstack/query-core@​5.100.0

... (truncated)

Commits

Updates @tanstack/react-router from 1.159.5 to 1.169.1

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

Patch Changes

  • Updated dependencies [4a1e63f]:
    • @​tanstack/router-core@​1.169.1

1.169.0

Minor Changes

  • Allow params.parse to experimentally return false to skip an incoming route candidate during path matching. Thrown parse errors still surface on the selected match instead of falling through, and outgoing typed route-template links continue to use exact route lookup followed by params.stringify for URL generation. (#7263)

Patch Changes

  • Updated dependencies [c992495]:
    • @​tanstack/router-core@​1.169.0

1.168.26

Patch Changes

  • Updated dependencies [b5c4183]:
    • @​tanstack/router-core@​1.168.18

1.168.25

Patch Changes

  • Updated dependencies [493148b]:
    • @​tanstack/router-core@​1.168.17

1.168.24

Patch Changes

  • Add TanStack Start inline CSS manifest support for SSR so route styles can be embedded in the HTML response and hydrated without duplicate stylesheet links. (#7253)

  • Updated dependencies [4d864ee]:

    • @​tanstack/router-core@​1.168.16

1.168.23

Patch Changes

  • fix(react-router): prevent webpack static analysis of React.use with let binding (#7182)

1.168.22

Patch Changes

... (truncated)

Commits

…20 updates

Bumps the npm-dependencies group with 20 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.5` |
| [@tanstack/query-db-collection](https://github.com/TanStack/db/tree/HEAD/packages/query-db-collection) | `1.0.25` | `1.0.36` |
| [@tanstack/react-db](https://github.com/TanStack/db/tree/HEAD/packages/react-db) | `0.1.72` | `0.1.83` |
| [@tanstack/react-form](https://github.com/TanStack/form/tree/HEAD/packages/react-form) | `1.28.1` | `1.29.1` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.90.21` | `5.100.6` |
| [@tanstack/react-router](https://github.com/TanStack/router/tree/HEAD/packages/react-router) | `1.159.5` | `1.169.1` |
| [@tauri-apps/api](https://github.com/tauri-apps/tauri) | `2.10.1` | `2.11.0` |
| [@tauri-apps/plugin-dialog](https://github.com/tauri-apps/plugins-workspace) | `2.6.0` | `2.7.0` |
| [@tauri-apps/plugin-fs](https://github.com/tauri-apps/plugins-workspace) | `2.4.5` | `2.5.0` |
| [@tauri-apps/plugin-sql](https://github.com/tauri-apps/plugins-workspace) | `2.3.2` | `2.4.0` |
| [@tauri-apps/plugin-updater](https://github.com/tauri-apps/plugins-workspace) | `2.10.0` | `2.10.1` |
| [@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.14.0` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.3.1` | `19.2.5` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.3.1` | `19.2.5` |
| [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.4.1` |



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.5
- [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.6.5/packages/db)

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

Updates `@tanstack/react-db` from 0.1.72 to 0.1.83
- [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.83/packages/react-db)

Updates `@tanstack/react-form` from 1.28.1 to 1.29.1
- [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.29.1/packages/react-form)

Updates `@tanstack/react-query` from 5.90.21 to 5.100.6
- [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.100.6/packages/react-query)

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

Updates `@tauri-apps/api` from 2.10.1 to 2.11.0
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](https://github.com/tauri-apps/tauri/compare/@tauri-apps/api-v2.10.1...@tauri-apps/api-v2.11.0)

Updates `@tauri-apps/plugin-dialog` from 2.6.0 to 2.7.0
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@log-v2.6.0...log-v2.7.0)

Updates `@tauri-apps/plugin-fs` from 2.4.5 to 2.5.0
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@fs-v2.4.5...fs-v2.5.0)

Updates `@tauri-apps/plugin-sql` from 2.3.2 to 2.4.0
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.3.2...fs-v2.4.0)

Updates `@tauri-apps/plugin-updater` from 2.10.0 to 2.10.1
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@updater-v2.10.0...updater-v2.10.1)

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.14.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/1.14.0/packages/lucide-react)

Updates `react` from 18.3.1 to 19.2.5
- [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.5/packages/react)

Updates `react-dom` from 18.3.1 to 19.2.5
- [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.5/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.4.1
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v3.25.76...v4.4.1)

---
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.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@tanstack/query-db-collection"
  dependency-version: 1.0.36
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@tanstack/react-db"
  dependency-version: 0.1.83
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@tanstack/react-form"
  dependency-version: 1.29.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.100.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@tanstack/react-router"
  dependency-version: 1.169.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@tauri-apps/api"
  dependency-version: 2.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@tauri-apps/plugin-dialog"
  dependency-version: 2.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@tauri-apps/plugin-fs"
  dependency-version: 2.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@tauri-apps/plugin-sql"
  dependency-version: 2.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@tauri-apps/plugin-updater"
  dependency-version: 2.10.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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.14.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: react
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.5
  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.4.1
  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 May 1, 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