Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 8, 2025

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@electric-sql/client (source) ^1.3.0 -> ^1.3.1 age confidence
@eslint/js (source) ^9.39.1 -> ^9.39.2 age confidence
@eslint/js (source) ^9.39.1 -> ^9.39.2 age confidence
@eslint/js (source) ^9.39.1 -> ^9.39.2 age confidence
@powersync/common (source) ^1.43.1 -> ^1.44.0 age confidence
@powersync/node (source) ^0.14.3 -> ^0.15.1 age confidence
@standard-schema/spec (source) ^1.0.0 -> ^1.1.0 age confidence
@tailwindcss/postcss (source) ^4.1.17 -> ^4.1.18 age confidence
@tailwindcss/vite (source) ^4.1.17 -> ^4.1.18 age confidence
@tailwindcss/vite (source) ^4.1.17 -> ^4.1.18 age confidence
@tailwindcss/vite (source) ^4.1.17 -> ^4.1.18 age confidence
@tanstack/pacer-lite (source) ^0.1.1 -> ^0.2.0 age confidence
@tanstack/query-core (source) ^5.90.12 -> ^5.90.15 age confidence
@tanstack/react-query (source) ^5.90.12 -> ^5.90.15 age confidence
@tanstack/react-router (source) ^1.140.0 -> ^1.144.0 age confidence
@tanstack/react-router (source) ^1.140.0 -> ^1.144.0 age confidence
@tanstack/react-router-devtools (source) ^1.140.0 -> ^1.144.0 age confidence
@tanstack/react-router-devtools (source) ^1.140.0 -> ^1.144.0 age confidence
@tanstack/react-start (source) ^1.140.0 -> ^1.145.0 age confidence
@tanstack/react-start (source) ^1.140.0 -> ^1.145.0 age confidence
@tanstack/router-plugin (source) ^1.140.0 -> ^1.144.0 age confidence
@tanstack/solid-router (source) ^1.140.0 -> ^1.144.0 age confidence
@tanstack/solid-start (source) ^1.140.0 -> ^1.145.0 age confidence
@testing-library/react ^16.3.0 -> ^16.3.1 age confidence
@trpc/client (source) ^11.7.2 -> ^11.8.1 age confidence
@types/pg (source) ^8.15.6 -> ^8.16.0 age confidence
@types/pg (source) ^8.15.6 -> ^8.16.0 age confidence
@types/pg (source) ^8.15.6 -> ^8.16.0 age confidence
@typescript-eslint/eslint-plugin (source) ^8.48.1 -> ^8.51.0 age confidence
@typescript-eslint/eslint-plugin (source) ^8.48.1 -> ^8.51.0 age confidence
@typescript-eslint/parser (source) ^8.48.1 -> ^8.51.0 age confidence
@typescript-eslint/parser (source) ^8.48.1 -> ^8.51.0 age confidence
@vitejs/plugin-react (source) ^5.1.1 -> ^5.1.2 age confidence
@vitejs/plugin-vue (source) ^6.0.2 -> ^6.0.3 age confidence
arktype (source) ^2.1.28 -> ^2.1.29 age confidence
drizzle-orm (source) ^0.45.0 -> ^0.45.1 age confidence
drizzle-orm (source) ^0.45.0 -> ^0.45.1 age confidence
eslint (source) ^9.39.1 -> ^9.39.2 age confidence
eslint (source) ^9.39.1 -> ^9.39.2 age confidence
eslint (source) ^9.39.1 -> ^9.39.2 age confidence
eslint-plugin-react-refresh ^0.4.24 -> ^0.4.26 age confidence
jsdom ^27.2.0 -> ^27.4.0 age confidence
knip (source) ^5.71.0 -> ^5.78.0 age confidence
pnpm (source) 10.24.0 -> 10.26.2 age confidence
pnpm (source) 10.24.0 -> 10.26.2 age confidence
publint (source) ^0.3.15 -> ^0.3.16 age confidence
react (source) ^19.2.1 -> ^19.2.3 age confidence
react (source) ^19.2.1 -> ^19.2.3 age confidence
react (source) ^19.2.1 -> ^19.2.3 age confidence
react-dom (source) ^19.2.1 -> ^19.2.3 age confidence
react-dom (source) ^19.2.1 -> ^19.2.3 age confidence
react-dom (source) ^19.2.1 -> ^19.2.3 age confidence
svelte (source) ^5.45.6 -> ^5.46.1 age confidence
svelte-check ^4.3.4 -> ^4.3.5 age confidence
tailwindcss (source) ^4.1.17 -> ^4.1.18 age confidence
tailwindcss (source) ^4.1.17 -> ^4.1.18 age confidence
vite (source) ^7.2.6 -> ^7.3.0 age confidence
vue (source) ^3.5.25 -> ^3.5.26 age confidence

Release Notes

electric-sql/electric (@​electric-sql/client)

v1.3.1

Compare Source

Patch Changes
  • f6e7c75: Fix infinite 409 loop when proxy returns stale cached response with expired shape handle.

    Root cause: When a 409 response arrives, the client marks the old handle as expired and fetches with a new handle. If a proxy ignores the expired_handle cache buster parameter and returns a stale cached response containing the old handle, the client would accept it and enter an infinite 409 loop.

    The fix:

    • In #onInitialResponse: Don't accept a shape handle from the response if it matches the expired handle in the expired shapes cache
    • In getNextChunkUrl (prefetch): Don't prefetch the next chunk if the response handle equals the expired_handle from the request URL
    • Added console warnings when this situation is detected to help developers debug proxy misconfigurations

    This provides defense-in-depth against misconfigured proxies that don't include all query parameters in their cache keys.

eslint/eslint (@​eslint/js)

v9.39.2

Compare Source

powersync-ja/powersync-js (@​powersync/common)

v1.44.0

Compare Source

Minor Changes
  • 299c6dc: Update PowerSync SQLite core to v0.4.10

  • 616c2a1: Added ability to specify appMetadata for sync/stream requests.

    Note: This requires a PowerSync service version >=1.17.0 in order for logs to display metadata.

    powerSync.connect(connector, {
      // This will be included in PowerSync service logs
      appMetadata: {
        app_version: MY_APP_VERSION
      }
    });
standard-schema/standard-schema (@​standard-schema/spec)

v1.1.0

Compare Source

Adds the Standard JSON Schema specification.

Please refer to the README and standardschema.dev for more details.

tailwindlabs/tailwindcss (@​tailwindcss/postcss)

v4.1.18

Compare Source

Fixed
  • Ensure validation of source(…) happens relative to the file it is in (#​19274)
  • Include filename and line numbers in CSS parse errors (#​19282)
  • Skip comments in Ruby files when checking for class names (#​19243)
  • Skip over arbitrary property utilities with a top-level ! in the value (#​19243)
  • Support environment API in @tailwindcss/vite (#​18970)
  • Preserve case of theme keys from JS configs and plugins (#​19337)
  • Write source maps correctly on the CLI when using --watch (#​19373)
  • Handle special defaults (like ringColor.DEFAULT) in JS configs (#​19348)
  • Improve backwards compatibility for content theme key from JS configs (#​19381)
  • Upgrade: Handle future and experimental config keys (#​19344)
  • Try to canonicalize any arbitrary utility to a bare value (#​19379)
  • Validate candidates similarly to Oxide (#​19397)
  • Canonicalization: combine text-* and leading-* classes (#​19396)
  • Correctly handle duplicate CLI arguments (#​19416)
  • Don’t emit color-mix fallback rules inside @keyframes (#​19419)
  • CLI: Don't hang when output is /dev/stdout (#​19421)
TanStack/pacer (@​tanstack/pacer-lite)

v0.2.0

Minor Changes
  • feat: add preact adapter\ (#​112)
TanStack/query (@​tanstack/query-core)

v5.90.15

Compare Source

Patch Changes
  • Fix: Always treat existing data as stale when query goes into error state. (#​9927)

v5.90.14

Patch Changes
  • Fix streamedQuery reducer being called twice (#​9970)

v5.90.13

Patch Changes
  • Made context.signal consume aware with streamedQuery (#​9963)
TanStack/query (@​tanstack/react-query)

v5.90.15

Compare Source

Patch Changes

v5.90.14

Patch Changes

v5.90.13

Patch Changes
TanStack/router (@​tanstack/react-router)

v1.144.0

Compare Source

Version 1.144.0 - 12/27/25, 2:58 PM

Changes
Feat
Packages

v1.143.11

Compare Source

Version 1.143.11 - 12/26/25, 1:34 AM

Changes
Fix
Chore
Packages

v1.143.6

Compare Source

Version 1.143.6 - 12/24/25, 11:22 PM

Changes
Fix
Packages

v1.143.4

Compare Source

Version 1.143.4 - 12/23/25, 11:42 PM

Changes
Fix
  • router-core: make navigate publicHref Aware (#​6205) (6ea81b4) by Nico Lynzaad
Packages

v1.143.3

Compare Source

Version 1.143.3 - 12/23/25, 11:38 AM

Changes
Fix
  • rewrite causes infinite redirects (#​6201) (17c07d9) by Manuel Schiller
Packages

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Dec 8, 2025
@changeset-bot
Copy link

changeset-bot bot commented Dec 8, 2025

⚠️ No Changeset found

Latest commit: 1baefdf

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@pkg-pr-new
Copy link

pkg-pr-new bot commented Dec 8, 2025

More templates

@tanstack/angular-db

npm i https://pkg.pr.new/@tanstack/angular-db@987

@tanstack/db

npm i https://pkg.pr.new/@tanstack/db@987

@tanstack/db-ivm

npm i https://pkg.pr.new/@tanstack/db-ivm@987

@tanstack/electric-db-collection

npm i https://pkg.pr.new/@tanstack/electric-db-collection@987

@tanstack/offline-transactions

npm i https://pkg.pr.new/@tanstack/offline-transactions@987

@tanstack/powersync-db-collection

npm i https://pkg.pr.new/@tanstack/powersync-db-collection@987

@tanstack/query-db-collection

npm i https://pkg.pr.new/@tanstack/query-db-collection@987

@tanstack/react-db

npm i https://pkg.pr.new/@tanstack/react-db@987

@tanstack/rxdb-db-collection

npm i https://pkg.pr.new/@tanstack/rxdb-db-collection@987

@tanstack/solid-db

npm i https://pkg.pr.new/@tanstack/solid-db@987

@tanstack/svelte-db

npm i https://pkg.pr.new/@tanstack/svelte-db@987

@tanstack/trailbase-db-collection

npm i https://pkg.pr.new/@tanstack/trailbase-db-collection@987

@tanstack/vue-db

npm i https://pkg.pr.new/@tanstack/vue-db@987

commit: 1baefdf

@github-actions
Copy link
Contributor

github-actions bot commented Dec 8, 2025

Size Change: 0 B

Total Size: 89.5 kB

ℹ️ View Unchanged
Filename Size
./packages/db/dist/esm/collection/change-events.js 1.39 kB
./packages/db/dist/esm/collection/changes.js 999 B
./packages/db/dist/esm/collection/events.js 388 B
./packages/db/dist/esm/collection/index.js 3.24 kB
./packages/db/dist/esm/collection/indexes.js 1.1 kB
./packages/db/dist/esm/collection/lifecycle.js 1.67 kB
./packages/db/dist/esm/collection/mutations.js 2.34 kB
./packages/db/dist/esm/collection/state.js 3.46 kB
./packages/db/dist/esm/collection/subscription.js 3.62 kB
./packages/db/dist/esm/collection/sync.js 2.38 kB
./packages/db/dist/esm/deferred.js 207 B
./packages/db/dist/esm/errors.js 4.27 kB
./packages/db/dist/esm/event-emitter.js 748 B
./packages/db/dist/esm/index.js 2.68 kB
./packages/db/dist/esm/indexes/auto-index.js 742 B
./packages/db/dist/esm/indexes/base-index.js 766 B
./packages/db/dist/esm/indexes/btree-index.js 1.93 kB
./packages/db/dist/esm/indexes/lazy-index.js 1.1 kB
./packages/db/dist/esm/indexes/reverse-index.js 513 B
./packages/db/dist/esm/local-only.js 837 B
./packages/db/dist/esm/local-storage.js 2.1 kB
./packages/db/dist/esm/optimistic-action.js 359 B
./packages/db/dist/esm/paced-mutations.js 496 B
./packages/db/dist/esm/proxy.js 3.75 kB
./packages/db/dist/esm/query/builder/functions.js 733 B
./packages/db/dist/esm/query/builder/index.js 3.96 kB
./packages/db/dist/esm/query/builder/ref-proxy.js 917 B
./packages/db/dist/esm/query/compiler/evaluators.js 1.35 kB
./packages/db/dist/esm/query/compiler/expressions.js 430 B
./packages/db/dist/esm/query/compiler/group-by.js 1.8 kB
./packages/db/dist/esm/query/compiler/index.js 1.96 kB
./packages/db/dist/esm/query/compiler/joins.js 2 kB
./packages/db/dist/esm/query/compiler/order-by.js 1.46 kB
./packages/db/dist/esm/query/compiler/select.js 1.07 kB
./packages/db/dist/esm/query/expression-helpers.js 1.43 kB
./packages/db/dist/esm/query/ir.js 673 B
./packages/db/dist/esm/query/live-query-collection.js 360 B
./packages/db/dist/esm/query/live/collection-config-builder.js 5.33 kB
./packages/db/dist/esm/query/live/collection-registry.js 264 B
./packages/db/dist/esm/query/live/collection-subscriber.js 1.9 kB
./packages/db/dist/esm/query/live/internal.js 130 B
./packages/db/dist/esm/query/optimizer.js 2.56 kB
./packages/db/dist/esm/query/predicate-utils.js 2.97 kB
./packages/db/dist/esm/query/subset-dedupe.js 921 B
./packages/db/dist/esm/scheduler.js 1.3 kB
./packages/db/dist/esm/SortedMap.js 1.3 kB
./packages/db/dist/esm/strategies/debounceStrategy.js 247 B
./packages/db/dist/esm/strategies/queueStrategy.js 428 B
./packages/db/dist/esm/strategies/throttleStrategy.js 246 B
./packages/db/dist/esm/transactions.js 2.9 kB
./packages/db/dist/esm/utils.js 881 B
./packages/db/dist/esm/utils/browser-polyfills.js 304 B
./packages/db/dist/esm/utils/btree.js 5.61 kB
./packages/db/dist/esm/utils/comparison.js 852 B
./packages/db/dist/esm/utils/cursor.js 457 B
./packages/db/dist/esm/utils/index-optimization.js 1.51 kB
./packages/db/dist/esm/utils/type-guards.js 157 B

compressed-size-action::db-package-size

@github-actions
Copy link
Contributor

github-actions bot commented Dec 8, 2025

Size Change: 0 B

Total Size: 3.35 kB

ℹ️ View Unchanged
Filename Size
./packages/react-db/dist/esm/index.js 225 B
./packages/react-db/dist/esm/useLiveInfiniteQuery.js 1.17 kB
./packages/react-db/dist/esm/useLiveQuery.js 1.12 kB
./packages/react-db/dist/esm/useLiveSuspenseQuery.js 431 B
./packages/react-db/dist/esm/usePacedMutations.js 401 B

compressed-size-action::react-db-package-size

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6aa92b1 to ae47277 Compare December 8, 2025 08:56
@renovate renovate bot changed the title chore(deps): update dependency vite to ^7.2.7 chore(deps): update all non-major dependencies Dec 8, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 23 times, most recently from d6fce5b to a116f8b Compare December 12, 2025 16:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 23 times, most recently from c077a71 to 41dc69b Compare December 29, 2025 16:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 41dc69b to be66cbb Compare December 29, 2025 17:34
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <[email protected]>
@renovate
Copy link
Contributor Author

renovate bot commented Dec 29, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@KyleAMathews KyleAMathews merged commit 7ac2c15 into main Dec 29, 2025
7 checks passed
@KyleAMathews KyleAMathews deleted the renovate/all-minor-patch branch December 29, 2025 18:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants