Skip to content

Commit a3d074e

Browse files
ci: Version Packages
1 parent e12514a commit a3d074e

13 files changed

Lines changed: 57 additions & 20 deletions

File tree

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

Lines changed: 0 additions & 13 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.54",
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: 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.11",
2020
"@tanstack/query-db-collection": ">=1.0.5",
21-
"@tanstack/react-db": ">=0.1.54",
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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
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+
313
## 0.1.36
414

515
### 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/react-db/CHANGELOG.md

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

3+
## 0.1.55
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+
313
## 0.1.54
414

515
### Patch Changes

packages/react-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/react-db",
33
"description": "React integration for @tanstack/db",
4-
"version": "0.1.54",
4+
"version": "0.1.55",
55
"author": "Kyle Mathews",
66
"license": "MIT",
77
"repository": {

packages/solid-db/CHANGELOG.md

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

3+
## 0.1.54
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+
313
## 0.1.53
414

515
### Patch Changes

packages/solid-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/solid-db",
33
"description": "Solid integration for @tanstack/db",
4-
"version": "0.1.53",
4+
"version": "0.1.54",
55
"author": "Kyle Mathews",
66
"license": "MIT",
77
"repository": {

packages/svelte-db/CHANGELOG.md

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

3+
## 0.1.54
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+
313
## 0.1.53
414

515
### Patch Changes

0 commit comments

Comments
 (0)