Skip to content

Commit ed19cba

Browse files
ci: Version Packages
1 parent b3b1940 commit ed19cba

33 files changed

Lines changed: 237 additions & 111 deletions

.changeset/cursor-pagination-loadsubset.md

Lines changed: 0 additions & 38 deletions
This file was deleted.

.changeset/deterministic-collection-ordering.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

.changeset/multi-column-orderby-loadsubset.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

.changeset/stable-order-tiebreaker.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

examples/react/offline-transactions/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"start": "node .output/server/index.mjs"
1010
},
1111
"dependencies": {
12-
"@tanstack/offline-transactions": "^1.0.1",
13-
"@tanstack/query-db-collection": "^1.0.6",
14-
"@tanstack/react-db": "^0.1.55",
12+
"@tanstack/offline-transactions": "^1.0.2",
13+
"@tanstack/query-db-collection": "^1.0.7",
14+
"@tanstack/react-db": "^0.1.56",
1515
"@tanstack/react-query": "^5.90.12",
1616
"@tanstack/react-router": "^1.140.0",
1717
"@tanstack/react-router-devtools": "^1.140.0",

examples/react/projects/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"dependencies": {
1818
"@tailwindcss/vite": "^4.1.17",
1919
"@tanstack/query-core": "^5.90.12",
20-
"@tanstack/query-db-collection": "^1.0.6",
21-
"@tanstack/react-db": "^0.1.55",
20+
"@tanstack/query-db-collection": "^1.0.7",
21+
"@tanstack/react-db": "^0.1.56",
2222
"@tanstack/react-router": "^1.140.0",
2323
"@tanstack/react-router-devtools": "^1.140.0",
2424
"@tanstack/react-router-with-query": "^1.130.17",

packages/angular-db/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @tanstack/angular-db
22

3+
## 0.1.38
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`b3b1940`](https://github.com/TanStack/db/commit/b3b194000d8efcc2c6cc45a663029dadc26f13f0), [`09da081`](https://github.com/TanStack/db/commit/09da081b420fc915d7f0dc566c6cdbbc78582435), [`86ad40c`](https://github.com/TanStack/db/commit/86ad40c6bc37b2f5d4ad24d06f72168ca4b96161)]:
8+
- @tanstack/db@0.5.12
9+
310
## 0.1.37
411

512
### Patch Changes

packages/angular-db/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tanstack/angular-db",
3-
"version": "0.1.37",
3+
"version": "0.1.38",
44
"description": "Angular integration for @tanstack/db",
55
"author": "Ethan McDaniel",
66
"license": "MIT",

packages/db-ivm/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @tanstack/db-ivm
22

3+
## 0.1.14
4+
5+
### Patch Changes
6+
7+
- Use row keys for stable tie-breaking in ORDER BY operations instead of hash-based object IDs. ([#957](https://github.com/TanStack/db/pull/957))
8+
9+
Previously, when multiple rows had equal ORDER BY values, tie-breaking used `globalObjectIdGenerator.getId(key)` which could produce hash collisions and wasn't stable across page reloads for object references. Now, the row key (which is always `string | number` and unique per row) is used directly for tie-breaking, ensuring deterministic and stable ordering.
10+
11+
This also simplifies the internal `TaggedValue` type from a 3-tuple `[K, V, Tag]` to a 2-tuple `[K, V]`, removing unnecessary complexity.
12+
313
## 0.1.13
414

515
### Patch Changes

packages/db-ivm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tanstack/db-ivm",
3-
"version": "0.1.13",
3+
"version": "0.1.14",
44
"description": "Incremental View Maintenance for TanStack DB based on Differential Dataflow",
55
"author": "Sam Willis",
66
"license": "MIT",

0 commit comments

Comments
 (0)