Skip to content

chore(deps): bump the minor-and-patch group across 1 directory with 8 updates - #691

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-f0413d55dc
Open

chore(deps): bump the minor-and-patch group across 1 directory with 8 updates#691
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-f0413d55dc

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 21, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor-and-patch group with 8 updates in the / directory:

Package From To
@tanstack/cli 0.69.6 0.70.2
incur 0.4.26 0.5.1
@electric-sql/pglite 0.5.3 0.5.5
@electric-sql/pglite-pgvector 0.0.4 0.0.6
@tanstack/solid-query 5.99.2 5.101.4
@tanstack/devtools-vite 0.7.2 0.8.3
@tanstack/db 0.6.17 0.7.2
@types/chrome 0.1.43 0.2.6

Updates @tanstack/cli from 0.69.6 to 0.70.2

Release notes

Sourced from @​tanstack/cli's releases.

@​tanstack/cli@​0.70.2

Patch Changes

  • Updated dependencies [944f20f]:
    • @​tanstack/create@​0.69.2

@​tanstack/cli@​0.70.1

Patch Changes

  • Updated dependencies [4bb1384]:
    • @​tanstack/create@​0.69.1

@​tanstack/cli@​0.70.0

Minor Changes

  • Add a --blank project preset that creates a production-ready one-route app (#488) without starter UI, Tailwind, devtools, test tooling, Intent setup, or unused public assets. Pass --intent to opt local coding-agent skill mappings back in. Also move integration-specific dependencies to their owning add-ons and stop shipping an unused test stack in standard Start projects. Explicit styling and deployment add-ons remain composable with the blank preset, including when added later.

Patch Changes

Changelog

Sourced from @​tanstack/cli's changelog.

0.70.2

Patch Changes

  • Updated dependencies [944f20f]:
    • @​tanstack/create@​0.69.2

0.70.1

Patch Changes

  • Updated dependencies [4bb1384]:
    • @​tanstack/create@​0.69.1

0.70.0

Minor Changes

  • Add a --blank project preset that creates a production-ready one-route app (#488) without starter UI, Tailwind, devtools, test tooling, Intent setup, or unused public assets. Pass --intent to opt local coding-agent skill mappings back in. Also move integration-specific dependencies to their owning add-ons and stop shipping an unused test stack in standard Start projects. Explicit styling and deployment add-ons remain composable with the blank preset, including when added later.

Patch Changes

Commits

Updates incur from 0.4.26 to 0.5.1

Release notes

Sourced from incur's releases.

incur@0.5.1

Patch Changes

  • 00767da: Changed zero-argument cli.fs() to infer commands from sibling files and folders beside the entrypoint.

    import { Cli } from "incur";
    await Cli.create("my-cli").fs().serve();

incur@0.5.0

Minor Changes

  • f28d63f: Added filesystem command routing through Cli.command() and cli.fs().

    await Cli.create("my-cli").fs().serve();

    Read more.

Changelog

Sourced from incur's changelog.

0.5.1

Patch Changes

  • 00767da: Changed zero-argument cli.fs() to infer commands from sibling files and folders beside the entrypoint.

    import { Cli } from "incur";
    await Cli.create("my-cli").fs().serve();

0.5.0

Minor Changes

  • f28d63f: Added filesystem command routing through Cli.command() and cli.fs().

    await Cli.create("my-cli").fs().serve();

    Read more.

Commits

Updates @electric-sql/pglite from 0.5.3 to 0.5.5

Release notes

Sourced from @​electric-sql/pglite's releases.

@​electric-sql/pglite-prepopulatedfs@​0.5.5

Patch Changes

  • Updated dependencies [a290741]
  • Updated dependencies [6b6f28d]
  • Updated dependencies [354f4ae]
  • Updated dependencies [219af1e]
  • Updated dependencies [20839a7]
  • Updated dependencies [7e784a4]
    • @​electric-sql/pglite@​0.5.5

@​electric-sql/pglite@​0.5.5

Patch Changes

  • a290741: Reset retained protocol parser state after a malformed backend message so later queries can recover.
  • 6b6f28d: Fix PGlite.create({ fs }) on a fresh database calling the provided filesystem's init() twice: the inner initdb instance no longer inherits the user-provided fs and always runs on its own scratch filesystem. Previously any VFS holding exclusive resources (e.g. OPFS sync access handles) failed with a contention error on first create.
  • 354f4ae: Fix formatQuery (used by live.query/live.incrementalQuery to inline parameters) emitting %NL instead of the positional %N$L format specifier. A bare %NL is "min width N" and consumes format() arguments sequentially, so placeholders that are out of textual order silently bound the wrong values, and repeated placeholders failed with too few arguments for format().
  • 219af1e: Expose the fields node-postgres derives from the CommandComplete command tag on Results: command (e.g. SELECT, INSERT, CREATE), and rowCount (the per-statement count from the tag). The tag was already received and parsed internally to compute affectedRows, but these values were not surfaced. Matching node-postgres' command/rowCount result fields lets pg-compatible adapters report them without re-parsing SQL.
  • 20839a7: Preserve the host process.exitCode when closing a PGlite instance. close() calls _emscripten_force_exit(0), whose Emscripten runtime sets process.exitCode = 0, clobbering any exit code the host process had already set. This mirrors the existing save/restore guards in #init() and execProtocolRaw(), so closing a database no longer silently resets the host process's exit code.
  • 7e784a4: Reject operations performed through transaction handles after the transaction has closed.

@​electric-sql/pglite@​0.5.4

Patch Changes

  • 7e0d6d1: Detect the Node environment via process.type instead of process.versions.electron. The previous Electron guard (#951) also treated the Electron main and utility processes as non-Node, which broke PGlite's filesystem code path there. process.type only excludes Electron's web contexts (renderer, web worker, service worker), so PGlite keeps using the Node.js path in the Electron main and utility processes. Follow-up to #951 / #813.

@​electric-sql/pglite-prepopulatedfs@​0.5.4

Patch Changes

  • Updated dependencies [7e0d6d1]
    • @​electric-sql/pglite@​0.5.4
Changelog

Sourced from @​electric-sql/pglite's changelog.

0.5.5

Patch Changes

  • a290741: Reset retained protocol parser state after a malformed backend message so later queries can recover.
  • 6b6f28d: Fix PGlite.create({ fs }) on a fresh database calling the provided filesystem's init() twice: the inner initdb instance no longer inherits the user-provided fs and always runs on its own scratch filesystem. Previously any VFS holding exclusive resources (e.g. OPFS sync access handles) failed with a contention error on first create.
  • 354f4ae: Fix formatQuery (used by live.query/live.incrementalQuery to inline parameters) emitting %NL instead of the positional %N$L format specifier. A bare %NL is "min width N" and consumes format() arguments sequentially, so placeholders that are out of textual order silently bound the wrong values, and repeated placeholders failed with too few arguments for format().
  • 219af1e: Expose the fields node-postgres derives from the CommandComplete command tag on Results: command (e.g. SELECT, INSERT, CREATE), and rowCount (the per-statement count from the tag). The tag was already received and parsed internally to compute affectedRows, but these values were not surfaced. Matching node-postgres' command/rowCount result fields lets pg-compatible adapters report them without re-parsing SQL.
  • 20839a7: Preserve the host process.exitCode when closing a PGlite instance. close() calls _emscripten_force_exit(0), whose Emscripten runtime sets process.exitCode = 0, clobbering any exit code the host process had already set. This mirrors the existing save/restore guards in #init() and execProtocolRaw(), so closing a database no longer silently resets the host process's exit code.
  • 7e784a4: Reject operations performed through transaction handles after the transaction has closed.

0.5.4

Patch Changes

  • 7e0d6d1: Detect the Node environment via process.type instead of process.versions.electron. The previous Electron guard (#951) also treated the Electron main and utility processes as non-Node, which broke PGlite's filesystem code path there. process.type only excludes Electron's web contexts (renderer, web worker, service worker), so PGlite keeps using the Node.js path in the Electron main and utility processes. Follow-up to #951 / #813.
Commits
  • 0ad2901 Version Packages (#1069)
  • 219af1e node-postgres compat: add rowCount and command (#1067)
  • 354f4ae fix: bind formatQuery params by position, not textual order (#1056)
  • 6b6f28d fix: don't leak a user-provided fs into the inner initdb instance (#1060)
  • 7e784a4 fix: reject operations on closed transaction handles (#1062)
  • 20839a7 fix: preserve host process.exitCode when closing PGlite (#1059)
  • 8b33b92 fix(live): resolve variable shadowing in unsubscribe callback filtering (#1051)
  • 9dac42c Add moddatetime extension support (#1061)
  • 25d0a55 Version Packages (#1044)
  • 2dff2d2 fix(types): widen boolean serializer to accept number and string coercions (#...
  • See full diff in compare view

Updates @electric-sql/pglite-pgvector from 0.0.4 to 0.0.6

Release notes

Sourced from @​electric-sql/pglite-pgvector's releases.

@​electric-sql/pglite-pgvector@​0.0.6

Patch Changes

  • Updated dependencies [a290741]
  • Updated dependencies [6b6f28d]
  • Updated dependencies [354f4ae]
  • Updated dependencies [219af1e]
  • Updated dependencies [20839a7]
  • Updated dependencies [7e784a4]
    • @​electric-sql/pglite@​0.5.5

@​electric-sql/pglite-pgvector@​0.0.5

Patch Changes

  • Updated dependencies [7e0d6d1]
    • @​electric-sql/pglite@​0.5.4
Changelog

Sourced from @​electric-sql/pglite-pgvector's changelog.

0.0.6

Patch Changes

  • Updated dependencies [a290741]
  • Updated dependencies [6b6f28d]
  • Updated dependencies [354f4ae]
  • Updated dependencies [219af1e]
  • Updated dependencies [20839a7]
  • Updated dependencies [7e784a4]
    • @​electric-sql/pglite@​0.5.5

0.0.5

Patch Changes

  • Updated dependencies [7e0d6d1]
    • @​electric-sql/pglite@​0.5.4
Commits

Updates @tanstack/solid-query from 5.99.2 to 5.101.4

Release notes

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

@​tanstack/solid-query-devtools@​5.101.4

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.101.4
    • @​tanstack/solid-query@​5.101.4

@​tanstack/solid-query-persist-client@​5.101.4

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.101.4
    • @​tanstack/solid-query@​5.101.4

@​tanstack/solid-query@​5.101.4

Patch Changes

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

@​tanstack/solid-query-devtools@​5.101.3

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.101.3
    • @​tanstack/solid-query@​5.101.3

@​tanstack/solid-query-persist-client@​5.101.3

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.101.3
    • @​tanstack/solid-query@​5.101.3

@​tanstack/solid-query@​5.101.3

Patch Changes

  • Updated dependencies [7e3c822]:
    • @​tanstack/query-core@​5.101.3

@​tanstack/solid-query-devtools@​5.101.2

Patch Changes

@​tanstack/solid-query-persist-client@​5.101.2

Patch Changes

... (truncated)

Changelog

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

5.101.4

Patch Changes

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

5.101.3

Patch Changes

  • Updated dependencies [7e3c822]:
    • @​tanstack/query-core@​5.101.3

5.101.2

Patch Changes

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

5.101.1

Patch Changes

  • Updated dependencies [9eff92e]:
    • @​tanstack/query-core@​5.101.1

5.101.0

Patch Changes

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

5.100.14

Patch Changes

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

5.100.13

Patch Changes

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

5.100.12

... (truncated)

Commits
  • 86bb8a6 ci: Version Packages (#11094)
  • 181ea82 ci: Version Packages (#11089)
  • ff24bf7 test(solid-query): use the '.then()' convention consistently (#11087)
  • 44f38df test({react,preact,solid}-query/useInfiniteQuery): inline the shared 'fetchIt...
  • 79d2384 docs(*): fix 'homogenous', 'stoage', 'supressed', 'compoennts' spelling typos...
  • 0a852e0 test({react,preact,solid}-query/useMutation): improve callback assertions wit...
  • 610e8d1 ci: Version Packages (#10996)
  • b809297 ci: Version Packages (#10977)
  • 18d4504 test(solid-query/useQuery): add type test for generic indexed-access 'TData' ...
  • 84dbefa test(solid-query/useQuery): move type-only test to 'useQuery.test-d.tsx' (#10...
  • Additional commits viewable in compare view

Updates @tanstack/devtools-vite from 0.7.2 to 0.8.3

Release notes

Sourced from @​tanstack/devtools-vite's releases.

@​tanstack/devtools-vite@​0.8.3

Patch Changes

  • Updated dependencies [f4c35d2]:
    • @​tanstack/devtools-bundler-core@​0.1.1

@​tanstack/devtools-vite@​0.8.2

Patch Changes

  • #484 d6e9022 - Internal refactor: consume @tanstack/devtools-bundler-core for shared logic. No public API or behavior change.

  • Updated dependencies [d6e9022, d6e9022]:

    • @​tanstack/devtools-bundler-core@​0.1.0

@​tanstack/devtools-vite@​0.8.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/devtools-client@​0.0.8

@​tanstack/devtools-vite@​0.8.0

Minor Changes

  • #384 958c683 - feat: deliver devtools events from isolated server runtimes over Vite's native HotChannel

    Server code running in an isolated runtime (Nitro v3 worker thread, Cloudflare workerd, or any separate thread/process) does not share globalThis.__TANSTACK_EVENT_TARGET__ with the Vite dev process, so devtools events emitted on the server never reached the panel.

    The Vite plugin now bridges those events over the framework's existing import.meta.hot HotChannel — the same connection the runtime already uses for HMR. It injects a tiny, dev-only bridge into the event client when it runs in a non-client environment and wires each server environment's hot channel to the in-process ServerEventBus. No new WebSocket, no fetch, no reconnect logic, and no new runtime dependencies; the bridge is fully tree-shaken in production.

Changelog

Sourced from @​tanstack/devtools-vite's changelog.

0.8.3

Patch Changes

  • Updated dependencies [f4c35d2]:
    • @​tanstack/devtools-bundler-core@​0.1.1

0.8.2

Patch Changes

  • #484 d6e9022 - Internal refactor: consume @tanstack/devtools-bundler-core for shared logic. No public API or behavior change.

  • Updated dependencies [d6e9022, d6e9022]:

    • @​tanstack/devtools-bundler-core@​0.1.0

0.8.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/devtools-client@​0.0.8

0.8.0

Minor Changes

  • #384 958c683 - feat: deliver devtools events from isolated server runtimes over Vite's native HotChannel

    Server code running in an isolated runtime (Nitro v3 worker thread, Cloudflare workerd, or any separate thread/process) does not share globalThis.__TANSTACK_EVENT_TARGET__ with the Vite dev process, so devtools events emitted on the server never reached the panel.

    The Vite plugin now bridges those events over the framework's existing import.meta.hot HotChannel — the same connection the runtime already uses for HMR. It injects a tiny, dev-only bridge into the event client when it runs in a non-client environment and wires each server environment's hot channel to the in-process ServerEventBus. No new WebSocket, no fetch, no reconnect logic, and no new runtime dependencies; the bridge is fully tree-shaken in production.

Commits
  • 0600635 ci: Version Packages (#487)
  • f9553f5 ci: Version Packages (#486)
  • d6e9022 feat: add @​tanstack/devtools-rspack (1:1 Vite parity) + shared @​tanstack/devt...
  • e026667 ci: Version Packages (#475)
  • 7114ecd test: e2e suite (8 apps + server↔client probe) + unit/component coverage (#472)
  • f17d7e8 chore: add bugs.url metadata to all published packages (#470)
  • d9f2b37 ci: Version Packages (#468)
  • 958c683 feat: deliver devtools events from isolated server runtimes via Vite HotChann...
  • See full diff in compare view

Updates @tanstack/db from 0.6.17 to 0.7.2

Release notes

Sourced from @​tanstack/db's releases.

@​tanstack/db@​0.7.2

Patch Changes

  • Update agent skills to match current APIs and behavior. (#1696)

@​tanstack/db@​0.7.1

Patch Changes

  • Add useLiveInfiniteQuery as a Vue binding over the shared live-query window controller. Align infinite-query behavior across React, Vue, and Svelte, including awaitable page fetches, safe page sizes, reactive page-depth preservation, ordered collection validation, shared input resolution, and shared-window cleanup. (#1724)

@​tanstack/db@​0.7.0

Minor Changes

  • Add an internal shared live-query observer and migrate all five framework adapters to it (#1642)

    Introduces createLiveQueryObserver in @tanstack/db: given a resolved live-query collection (or null for a disabled query) it owns the subscription lifecycle every adapter used to re-implement — change and status subscriptions, a snapshot with stable identity per state revision for wholesale consumers, and delivery of the raw ChangeMessage[] for granular consumers. React, Vue, Svelte, Solid, and Angular's live-query hooks now materialize from the observer instead of their own hand-rolled subscription/status/snapshot machinery, keeping each adapter's native reactivity and each adapter's data-loading policy (wholesale adapters subscribe without initial state; granular adapters seed from it).

    The observer is an internal, unstable contract for TanStack DB's official adapters — it is exported so the adapter packages can consume it, but it is not a public extension point yet and its API may change in any release.

    The migration also fixes several live-query lifecycle defects: status-only transitions (error, cleaned-up) now reach mounted consumers; snapshot identity is stable across unsubscribe/resubscribe and stays fresh while detached; dispatch is FIFO and non-reentrant with subscriptions identified by record rather than callback; disposing during the synchronous initial replay no longer leaks the collection subscription; subscribing after dispose throws instead of registering a dead listener; Solid guards its async resource continuations against superseded collections; and constructing an observer no longer activates sync. Observers activate on their first committed subscription unless an adapter has already started a pre-created collection supplied directly or returned from a callback.

Patch Changes

  • fix(db): republish ordered live queries on an order-only move (#1669)

    An orderBy live query that reordered its rows without changing any projected row value (an "order-only move") previously emitted nothing, so useLiveQuery kept rendering the stale order. The live-query collection now publishes an explicit layout-change notification when this happens, and the shared live-query observer snapshot exposes a layoutRevision that increments on any visible membership, ordering, or order-only-move change. All five framework adapters pick this up via their existing wholesale re-read.

  • Add the unstable, internal createLiveQueryWindowController primitive for (#1675) forward pagination. It coordinates collection-scoped window leases, commits pages only after subset loads succeed, restores windows after failures and cleanup, and lets React's useLiveInfiniteQuery become a thin binding without changing its public API or resetting pages for structurally equal dependencies.

Changelog

Sourced from @​tanstack/db's changelog.

0.7.2

Patch Changes

  • Update agent skills to match current APIs and behavior. (#1696)

0.7.1

Patch Changes

  • Add useLiveInfiniteQuery as a Vue binding over the shared live-query window controller. Align infinite-query behavior across React, Vue, and Svelte, including awaitable page fetches, safe page sizes, reactive page-depth preservation, ordered collection validation, shared input resolution, and shared-window cleanup. (#1724)

0.7.0

Minor Changes

  • Add an internal shared live-query observer and migrate all five framework adapters to it (#1642)

    Introduces createLiveQueryObserver in @tanstack/db: given a resolved live-query collection (or null for a disabled query) it owns the subscription lifecycle every adapter used to re-implement — change and status subscriptions, a snapshot with stable identity per state revision for wholesale consumers, and delivery of the raw ChangeMessage[] for granular consumers. React, Vue, Svelte, Solid, and Angular's live-query hooks now materialize from the observer instead of their own hand-rolled subscription/status/snapshot machinery, keeping each adapter's native reactivity and each adapter's data-loading policy (wholesale adapters subscribe without initial state; granular adapters seed from it).

    The observer is an internal, unstable contract for TanStack DB's official adapters — it is exported so the adapter packages can consume it, but it is not a public extension point yet and its API may change in any release.

    The migration also fixes several live-query lifecycle defects: status-only transitions (error, cleaned-up) now reach mounted consumers; snapshot identity is stable across unsubscribe/resubscribe and stays fresh while detached; dispatch is FIFO and non-reentrant with subscriptions identified by record rather than callback; disposing during the synchronous initial replay no longer leaks the collection subscription; subscribing after dispose throws instead of registering a dead listener; Solid guards its async resource continuations against superseded collections; and constructing an observer no longer activates sync. Observers activate on their first committed subscription unless an adapter has already started a pre-created collection supplied directly or returned from a callback.

Patch Changes

  • fix(db): republish ordered live queries on an order-only move (#1669)

    An orderBy live query that reordered its rows without changing any projected row value (an "order-only move") previously emitted nothing, so useLiveQuery kept rendering the stale order. The live-query collection now publishes an explicit layout-change notification when this happens, and the shared live-query observer snapshot exposes a layoutRevision that increments on any visible membership, ordering, or order-only-move change. All five framework adapters pick this up via their existing wholesale re-read.

  • Add the unstable, internal createLiveQueryWindowController primitive for (#1675) forward pagination. It coordinates collection-scoped window leases, commits pages only after subset loads succeed, restores windows after failures and cleanup, and lets React's useLiveInfiniteQuery become a thin binding without changing its public API or resetting pages for structurally equal dependencies.

Commits

Updates @types/chrome from 0.1.43 to 0.2.6

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

… updates

Bumps the minor-and-patch group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@tanstack/cli](https://github.com/TanStack/cli/tree/HEAD/packages/cli) | `0.69.6` | `0.70.2` |
| [incur](https://github.com/wevm/incur) | `0.4.26` | `0.5.1` |
| [@electric-sql/pglite](https://github.com/electric-sql/pglite/tree/HEAD/packages/pglite) | `0.5.3` | `0.5.5` |
| [@electric-sql/pglite-pgvector](https://github.com/electric-sql/pglite/tree/HEAD/packages/pglite-pgvector) | `0.0.4` | `0.0.6` |
| [@tanstack/solid-query](https://github.com/TanStack/query/tree/HEAD/packages/solid-query) | `5.99.2` | `5.101.4` |
| [@tanstack/devtools-vite](https://github.com/TanStack/devtools/tree/HEAD/packages/devtools-vite) | `0.7.2` | `0.8.3` |
| [@tanstack/db](https://github.com/TanStack/db/tree/HEAD/packages/db) | `0.6.17` | `0.7.2` |
| [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) | `0.1.43` | `0.2.6` |



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

Updates `incur` from 0.4.26 to 0.5.1
- [Release notes](https://github.com/wevm/incur/releases)
- [Changelog](https://github.com/wevm/incur/blob/main/CHANGELOG.md)
- [Commits](https://github.com/wevm/incur/compare/incur@0.4.26...incur@0.5.1)

Updates `@electric-sql/pglite` from 0.5.3 to 0.5.5
- [Release notes](https://github.com/electric-sql/pglite/releases)
- [Changelog](https://github.com/electric-sql/pglite/blob/main/packages/pglite/CHANGELOG.md)
- [Commits](https://github.com/electric-sql/pglite/commits/@electric-sql/pglite@0.5.5/packages/pglite)

Updates `@electric-sql/pglite-pgvector` from 0.0.4 to 0.0.6
- [Release notes](https://github.com/electric-sql/pglite/releases)
- [Changelog](https://github.com/electric-sql/pglite/blob/main/packages/pglite-pgvector/CHANGELOG.md)
- [Commits](https://github.com/electric-sql/pglite/commits/@electric-sql/pglite-pgvector@0.0.6/packages/pglite-pgvector)

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

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

Updates `@tanstack/db` from 0.6.17 to 0.7.2
- [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.7.2/packages/db)

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

---
updated-dependencies:
- dependency-name: "@tanstack/cli"
  dependency-version: 0.70.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: incur
  dependency-version: 0.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@electric-sql/pglite"
  dependency-version: 0.5.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@electric-sql/pglite-pgvector"
  dependency-version: 0.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@tanstack/solid-query"
  dependency-version: 5.101.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tanstack/devtools-vite"
  dependency-version: 0.8.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tanstack/db"
  dependency-version: 0.7.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/chrome"
  dependency-version: 0.2.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 21, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants