-
Notifications
You must be signed in to change notification settings - Fork 141
chore(deps): update all non-major dependencies #987
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
More templates
@tanstack/angular-db
@tanstack/db
@tanstack/db-ivm
@tanstack/electric-db-collection
@tanstack/offline-transactions
@tanstack/powersync-db-collection
@tanstack/query-db-collection
@tanstack/react-db
@tanstack/rxdb-db-collection
@tanstack/solid-db
@tanstack/svelte-db
@tanstack/trailbase-db-collection
@tanstack/vue-db
commit: |
|
Size Change: 0 B Total Size: 88.5 kB ℹ️ View Unchanged
|
|
Size Change: 0 B Total Size: 3.35 kB ℹ️ View Unchanged
|
6aa92b1 to
ae47277
Compare
d6fce5b to
a116f8b
Compare
09ee8ae to
05811b5
Compare
05811b5 to
0a1a0fa
Compare
This PR contains the following updates:
^9.39.1->^9.39.2^9.39.1->^9.39.2^9.39.1->^9.39.2^1.43.1->^1.44.0^0.14.3->^0.15.0^1.0.0->^1.1.0^4.1.17->^4.1.18^4.1.17->^4.1.18^4.1.17->^4.1.18^4.1.17->^4.1.18^0.1.37->^0.1.38^0.5.11->^0.5.12^0.2.12->^0.2.15^0.1.1->^0.2.0^1.140.0->^1.141.6^1.140.0->^1.141.6^1.140.0->^1.141.6^1.140.0->^1.141.6^1.140.0->^1.141.6^1.140.0->^1.141.6^1.140.0->^1.141.6^0.1.54->^0.1.55^1.140.0->^1.141.6^1.140.0->^1.141.6^0.1.55->^0.1.56^16.3.0->^16.3.1^11.7.2->^11.8.0^8.15.6->^8.16.0^8.15.6->^8.16.0^8.15.6->^8.16.0^8.48.1->^8.50.0^8.48.1->^8.50.0^8.48.1->^8.50.0^8.48.1->^8.50.0^5.1.1->^5.1.2^6.0.2->^6.0.3^2.1.28->^2.1.29^0.45.0->^0.45.1^0.45.0->^0.45.1^9.39.1->^9.39.2^9.39.1->^9.39.2^9.39.1->^9.39.2^0.4.24->^0.4.26^27.2.0->^27.3.0^5.71.0->^5.75.110.24.0->10.26.010.24.0->10.26.0^0.3.15->^0.3.16^19.2.1->^19.2.3^19.2.1->^19.2.3^19.2.1->^19.2.3^19.2.1->^19.2.3^19.2.1->^19.2.3^19.2.1->^19.2.3^5.45.6->^5.46.0^4.1.17->^4.1.18^4.1.17->^4.1.18^7.2.6->^7.3.0Release Notes
eslint/eslint (@eslint/js)
v9.39.2Compare Source
powersync-ja/powersync-js (@powersync/common)
v1.44.0Compare Source
Minor Changes
299c6dc: Update PowerSync SQLite core to v0.4.10616c2a1: Added ability to specifyappMetadatafor sync/stream requests.Note: This requires a PowerSync service version
>=1.17.0in order for logs to display metadata.standard-schema/standard-schema (@standard-schema/spec)
v1.1.0Compare Source
Adds the Standard JSON Schema specification.
Please refer to the README and standardschema.dev for more details.
tailwindlabs/tailwindcss (@tailwindcss/postcss)
v4.1.18Compare Source
Fixed
source(…)happens relative to the file it is in (#19274)!in the value (#19243)@tailwindcss/vite(#18970)--watch(#19373)ringColor.DEFAULT) in JS configs (#19348)contenttheme key from JS configs (#19381)futureandexperimentalconfig keys (#19344)text-*andleading-*classes (#19396)@keyframes(#19419)/dev/stdout(#19421)TanStack/db (@tanstack/angular-db)
v0.1.38Compare Source
Patch Changes
b3b1940,09da081,86ad40c]:TanStack/db (@tanstack/db)
v0.5.12Compare Source
Patch Changes
Enhanced LoadSubsetOptions with separate cursor expressions and offset for flexible pagination. (#960)
LoadSubsetOptions.whereno longer includes cursor expressions for pagination. If you have a custom sync layer or query collection that implementsloadSubset, you must now handle pagination separately:cursorproperty (cursor.whereFromandcursor.whereCurrent) and combine them withwhereyourselfoffsetpropertyPreviously, cursor expressions were baked into the
whereclause. Now they are passed separately so sync layers can choose their preferred pagination strategy.Changes:
CursorExpressionstype withwhereFrom,whereCurrent, and optionallastKeypropertiescursortoLoadSubsetOptionsfor cursor-based pagination (separate fromwhere)offsettoLoadSubsetOptionsfor offset-based pagination supportrequestSnapshotcalls when cursor is present:whereCurrent(all ties at boundary, no limit)whereFrom(rows after cursor, with limit)offsetfor query key generationtruncateevent to collections, emitted when synced data is truncated (e.g., aftermust-refetch)setWindowpagination: cursor expressions are now correctly built when paging through resultsloadNextItemsnow passes the correct window offset to prevent incorrect deduplicationCollectionSubscribernow listens fortruncateevents to reset cursor tracking stateBenefits:
where) and pagination (cursor/offset)setWindowcorrectly triggers backend loading for subsequent pages in multi-column orderBy queriesEnsure deterministic iteration order for collections and indexes. (#958)
SortedMap improvements:
compareKeysutility toutils/comparison.tsfor reuseBTreeIndex improvements:
CollectionStateManager changes:
SortedMapforsyncedData, ensuring deterministic iteration ordercomparefunction is provided, entries are sorted by key onlyThis ensures that live queries with
orderByandlimitproduce stable, deterministic results even when multiple rows have equal sort values.Enhanced multi-column orderBy support with lazy loading and composite cursor optimization. (#926)
Changes:
or(gt(col1, v1), and(eq(col1, v1), gt(col2, v2)))) for backend optimizationBenefits:
Updated dependencies [
52c29fa]:TanStack/db (@tanstack/electric-db-collection)
v0.2.15Compare Source
Patch Changes
v0.2.14Compare Source
Patch Changes
Fix awaitMatch race condition on inserts and export isChangeMessage/isControlMessage. (#1000)
Bug fixes:
awaitMatchwould timeout on inserts when Electric synced faster than the API callawaitMatchto find thembatchCommittedflag to track commit state, consistent withawaitTxIdsemanticsbatchCommittedto also trigger onsnapshot-endinon-demandmode (matching "ready" semantics)Export fixes:
isChangeMessageandisControlMessageare now exported from the package index as documentedFix invalid Electric proxy queries with missing params for null/undefined values (#951)
When comparison operators were used with null/undefined values, the SQL compiler would generate placeholders ($1, $2) in the WHERE clause but skip adding the params to the dictionary. This resulted in invalid queries being sent to Electric.
Now all comparison operators (eq, gt, lt, gte, lte, like, ilike) throw a clear error when used with null/undefined values, since comparisons with NULL always evaluate to UNKNOWN in SQL. Users should use
isNull()orisUndefined()to check for null values instead.v0.2.13Compare Source
Patch Changes
Enhanced LoadSubsetOptions with separate cursor expressions and offset for flexible pagination. (#960)
LoadSubsetOptions.whereno longer includes cursor expressions for pagination. If you have a custom sync layer or query collection that implementsloadSubset, you must now handle pagination separately:cursorproperty (cursor.whereFromandcursor.whereCurrent) and combine them withwhereyourselfoffsetpropertyPreviously, cursor expressions were baked into the
whereclause. Now they are passed separately so sync layers can choose their preferred pagination strategy.Changes:
CursorExpressionstype withwhereFrom,whereCurrent, and optionallastKeypropertiescursortoLoadSubsetOptionsfor cursor-based pagination (separate fromwhere)offsettoLoadSubsetOptionsfor offset-based pagination supportrequestSnapshotcalls when cursor is present:whereCurrent(all ties at boundary, no limit)whereFrom(rows after cursor, with limit)offsetfor query key generationtruncateevent to collections, emitted when synced data is truncated (e.g., aftermust-refetch)setWindowpagination: cursor expressions are now correctly built when paging through resultsloadNextItemsnow passes the correct window offset to prevent incorrect deduplicationCollectionSubscribernow listens fortruncateevents to reset cursor tracking stateBenefits:
where) and pagination (cursor/offset)setWindowcorrectly triggers backend loading for subsequent pages in multi-column orderBy queriesUpdated dependencies [
b3b1940,09da081,86ad40c]:TanStack/pacer (@tanstack/pacer-lite)
v0.2.0Minor Changes
TanStack/router (@tanstack/react-router)
v1.141.6Compare Source
Version 1.141.6 - 12/17/25, 8:06 PM
Changes
Fix
11d26ad) by Manuel SchillerChore
3c77213) by Tanner LinsleyTest
d5a7aee) by Birk Skyumd476a8b) by Birk Skyum751f0ff) by Birk SkyumPackages
v1.141.4Compare Source
Version 1.141.4 - 12/17/25, 12:19 AM
Changes
Fix
f330532) by Manuel SchillerTest
8628d01) by Birk Skyum91b26b1) by Birk Skyuma13d102) by Birk Skyum0385e65) by Birk Skyumd27e202) by Birk Skyum949c3f4) by Birk Skyum77c7508) by Birk SkyumCi
df5d76c) by autofix-ci[bot]Docs
03aa67f) by Tanner Linsley3f1c2bb) by Tanner Linsley4256268) by Birk Skyum6fd176a) by Birk Skyum2c40790) by s-r-xOther
7e9c2f0) by Birk Skyum8e3c1bc) by Birk SkyumE2e
a6134ff) by Birk SkyumPackages
v1.141.2Compare Source
Version 1.141.2 - 12/12/25, 7:30 PM
Changes
Fix
20aac85) by Manuel SchillerCi
f9be760) by autofix-ci[bot]b1b8c9e) by Lachlan CollinsDocs
f5d2f29) by @AlmarAubelOther
d8377c0) by Tanner LinsleyE2e
eccfd26) by Birk SkyumPackages
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.
This PR was generated by Mend Renovate. View the repository job log.