-
Notifications
You must be signed in to change notification settings - Fork 138
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
dab16d0 to
c5cde28
Compare
c5cde28 to
4605a85
Compare
This PR contains the following updates:
1.2.0->1.2.2^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^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.13^0.1.1->^0.2.0^1.0.6->^1.0.7^0.1.55->^0.1.56^1.140.0->^1.141.2^1.140.0->^1.141.2^1.140.0->^1.141.2^1.140.0->^1.141.2^1.140.0->^1.141.3^1.140.0->^1.141.3^1.140.0->^1.141.2^0.1.54->^0.1.55^1.140.0->^1.141.2^1.140.0->^1.141.3^0.1.55->^0.1.56^11.7.2->^11.8.0^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.49.0^8.48.1->^8.49.0^8.48.1->^8.49.0^8.48.1->^8.49.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^27.2.0->^27.3.0^5.71.0->^5.73.410.24.0->10.25.010.24.0->10.25.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.2.7Release Notes
electric-sql/electric (@electric-sql/client)
v1.2.2Compare Source
Patch Changes
c8ad84a: Fix columnMapper to support loading subsets. When usingcolumnMapperwith ShapeStream, thecolumnsparameter is now properly encoded from application column names (e.g., camelCase) to database column names (e.g., snake_case) before transmission to the server.v1.2.1Compare Source
Patch Changes
a302f66: feat: add support for subqueries without invalidation3f3c078: Add SSE-related headers to client requestseslint/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.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.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/db (@tanstack/query-db-collection)
v1.0.7Compare 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/db (@tanstack/react-db)
v0.1.56Compare Source
Patch Changes
b3b1940,09da081,86ad40c]:TanStack/router (@tanstack/react-router)
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
v1.141.1Compare Source
Version 1.141.1 - 12/11/25, 7:42 PM
Changes
Fix
636a71c) by Manuel SchillerPackages
v1.141.0Compare Source
Version 1.141.0 - 12/11/25, 3:28 PM (Manual Release)
Changes
Other
4f64ab9) by Birk Skyumb1fb420) by @galarusLint
395d34d) 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.