Skip to content

Commit 4eb7671

Browse files
ci: Version Packages (#917)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 51c73aa commit 4eb7671

File tree

26 files changed

+93
-23
lines changed

26 files changed

+93
-23
lines changed

.changeset/fix-date-precision-pagination.md

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

.changeset/fix-limited-query-deduplication.md

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

examples/react/offline-transactions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"dependencies": {
1212
"@tanstack/offline-transactions": ">=1.0.0",
1313
"@tanstack/query-db-collection": ">=1.0.5",
14-
"@tanstack/react-db": ">=0.1.51",
14+
"@tanstack/react-db": ">=0.1.52",
1515
"@tanstack/react-query": "^5.90.10",
1616
"@tanstack/react-router": "^1.139.3",
1717
"@tanstack/react-router-devtools": "^1.139.3",

examples/react/projects/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@tailwindcss/vite": "^4.1.17",
1919
"@tanstack/query-core": "^5.90.10",
2020
"@tanstack/query-db-collection": ">=1.0.5",
21-
"@tanstack/react-db": ">=0.1.51",
21+
"@tanstack/react-db": ">=0.1.52",
2222
"@tanstack/react-router": "^1.139.3",
2323
"@tanstack/react-router-devtools": "^1.139.3",
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.34
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`954c8fe`](https://github.com/TanStack/db/commit/954c8fed5ed92a348ac8b6d8333bc69c955f4f60), [`51c73aa`](https://github.com/TanStack/db/commit/51c73aaa2b27b27966edb98fb6664beb44eac1ac)]:
8+
- @tanstack/db@0.5.8
9+
310
## 0.1.33
411

512
### Patch Changes

packages/angular-db/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@tanstack/angular-db",
33
"description": "Angular integration for @tanstack/db",
4-
"version": "0.1.33",
4+
"version": "0.1.34",
55
"author": "Ethan McDaniel",
66
"license": "MIT",
77
"repository": {

packages/db-collection-e2e/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @tanstack/db-collection-e2e
22

3+
## 0.0.10
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`954c8fe`](https://github.com/TanStack/db/commit/954c8fed5ed92a348ac8b6d8333bc69c955f4f60), [`51c73aa`](https://github.com/TanStack/db/commit/51c73aaa2b27b27966edb98fb6664beb44eac1ac)]:
8+
- @tanstack/db@0.5.8
9+
- @tanstack/electric-db-collection@0.2.8
10+
- @tanstack/query-db-collection@1.0.5
11+
312
## 0.0.9
413

514
### Patch Changes

packages/db-collection-e2e/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-collection-e2e",
3-
"version": "0.0.9",
3+
"version": "0.0.10",
44
"private": true,
55
"description": "End-to-end test suite for TanStack DB collections",
66
"type": "module",

packages/db/CHANGELOG.md

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

3+
## 0.5.8
4+
5+
### Patch Changes
6+
7+
- Fix pagination with Date orderBy values when backend has higher precision than JavaScript's millisecond precision. When loading duplicate values during cursor-based pagination, Date values now use a 1ms range query (`gte`/`lt`) instead of exact equality (`eq`) to correctly match all rows that fall within the same millisecond, even if the backend (e.g., PostgreSQL) stores them with microsecond precision. ([#913](https://github.com/TanStack/db/pull/913))
8+
9+
- Fixed incorrect deduplication of limited queries with different where clauses. Previously, a query like `{where: searchFilter, limit: 10}` could be incorrectly deduplicated against a prior query `{where: undefined, limit: 10}`, causing search/filter results to only show cached data. Now, limited queries are only deduplicated when their where clauses are structurally equal. ([#914](https://github.com/TanStack/db/pull/914))
10+
311
## 0.5.7
412

513
### Patch Changes

packages/db/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@tanstack/db",
33
"description": "A reactive client store for building super fast apps on sync",
4-
"version": "0.5.7",
4+
"version": "0.5.8",
55
"dependencies": {
66
"@standard-schema/spec": "^1.0.0",
77
"@tanstack/db-ivm": "workspace:*",

0 commit comments

Comments
 (0)