Skip to content

Commit c6ea254

Browse files
ci: Version Packages (#961)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent a1a484e commit c6ea254

File tree

32 files changed

+154
-52
lines changed

32 files changed

+154
-52
lines changed

.changeset/fix-filter-expression-compile.md

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

.changeset/fix-isready-disabled-queries.md

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

.changeset/fix-object-field-update-rollback.md

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

.changeset/fix-tanstack-db-peerdeps.md

Lines changed: 0 additions & 6 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.0",
13-
"@tanstack/query-db-collection": ">=1.0.5",
14-
"@tanstack/react-db": ">=0.1.54",
12+
"@tanstack/offline-transactions": ">=1.0.1",
13+
"@tanstack/query-db-collection": ">=1.0.6",
14+
"@tanstack/react-db": ">=0.1.55",
1515
"@tanstack/react-query": "^5.90.11",
1616
"@tanstack/react-router": "^1.139.12",
1717
"@tanstack/react-router-devtools": "^1.139.12",

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.11",
20-
"@tanstack/query-db-collection": ">=1.0.5",
21-
"@tanstack/react-db": ">=0.1.54",
20+
"@tanstack/query-db-collection": ">=1.0.6",
21+
"@tanstack/react-db": ">=0.1.55",
2222
"@tanstack/react-router": "^1.139.12",
2323
"@tanstack/react-router-devtools": "^1.139.12",
2424
"@tanstack/react-router-with-query": "^1.130.17",

packages/angular-db/CHANGELOG.md

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

3+
## 0.1.37
4+
5+
### Patch Changes
6+
7+
- Fixed `isReady` to return `true` for disabled queries in `useLiveQuery`/`injectLiveQuery` across all framework packages. When a query function returns `null` or `undefined` (disabling the query), there's no async operation to wait for, so the hook should be considered "ready" immediately. ([#886](https://github.com/TanStack/db/pull/886))
8+
9+
Additionally, all frameworks now have proper TypeScript overloads that explicitly support returning `undefined | null` from query functions, making the disabled query pattern type-safe.
10+
11+
This fixes the common pattern where users conditionally enable queries and don't want to show loading states when the query is disabled.
12+
13+
- Updated dependencies [[`c4b9399`](https://github.com/TanStack/db/commit/c4b93997432743d974749683059bf68a082d3e5b), [`a1a484e`](https://github.com/TanStack/db/commit/a1a484ec4d2331d702ab9c4b7e5b02622c76b3dd)]:
14+
- @tanstack/db@0.5.11
15+
316
## 0.1.36
417

518
### 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.36",
4+
"version": "0.1.37",
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.14
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`c4b9399`](https://github.com/TanStack/db/commit/c4b93997432743d974749683059bf68a082d3e5b), [`a1a484e`](https://github.com/TanStack/db/commit/a1a484ec4d2331d702ab9c4b7e5b02622c76b3dd), [`f458e05`](https://github.com/TanStack/db/commit/f458e05bb6f5b577ba1d1032a48b46cf860f3c9d)]:
8+
- @tanstack/db@0.5.11
9+
- @tanstack/query-db-collection@1.0.6
10+
- @tanstack/electric-db-collection@0.2.12
11+
312
## 0.0.13
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.13",
3+
"version": "0.0.14",
44
"private": true,
55
"description": "End-to-end test suite for TanStack DB collections",
66
"type": "module",

0 commit comments

Comments
 (0)