Skip to content

Commit 59b406e

Browse files
ci: Version Packages (#594)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 8cd0876 commit 59b406e

File tree

25 files changed

+135
-44
lines changed

25 files changed

+135
-44
lines changed

.changeset/silent-readers-report.md

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

examples/angular/todos/CHANGELOG.md

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

3+
## 0.0.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`8cd0876`](https://github.com/TanStack/db/commit/8cd0876b50bc7c1a614365318d5e74c2f32a0f80)]:
8+
- @tanstack/db@0.4.1
9+
- @tanstack/angular-db@0.1.6
10+
311
## 0.0.1
412

513
### Patch Changes

examples/angular/todos/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "todos",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",

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.13",
1919
"@tanstack/query-core": "^5.90.1",
20-
"@tanstack/query-db-collection": "^0.2.21",
21-
"@tanstack/react-db": "^0.1.22",
20+
"@tanstack/query-db-collection": "^0.2.22",
21+
"@tanstack/react-db": "^0.1.23",
2222
"@tanstack/react-router": "^1.131.50",
2323
"@tanstack/react-router-devtools": "^1.131.50",
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.6
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`8cd0876`](https://github.com/TanStack/db/commit/8cd0876b50bc7c1a614365318d5e74c2f32a0f80)]:
8+
- @tanstack/db@0.4.1
9+
310
## 0.1.5
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.5",
4+
"version": "0.1.6",
55
"author": "Ethan McDaniel",
66
"license": "MIT",
77
"repository": {

packages/db/CHANGELOG.md

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

3+
## 0.4.1
4+
5+
### Patch Changes
6+
7+
- Implement idle cleanup for collection garbage collection ([#590](https://github.com/TanStack/db/pull/590))
8+
9+
Collection cleanup operations now use `requestIdleCallback()` to prevent blocking the UI thread during garbage collection. This improvement ensures better performance by scheduling cleanup during browser idle time rather than immediately when collections have no active subscribers.
10+
11+
**Key improvements:**
12+
- Non-blocking cleanup operations that don't interfere with user interactions
13+
- Automatic fallback to `setTimeout` for older browsers without `requestIdleCallback` support
14+
- Proper callback management to prevent race conditions during cleanup rescheduling
15+
- Maintains full backward compatibility with existing collection lifecycle behavior
16+
17+
This addresses performance concerns where collection cleanup could cause UI thread blocking during active application usage.
18+
319
## 0.4.0
420

521
### Minor 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.4.0",
4+
"version": "0.4.1",
55
"dependencies": {
66
"@standard-schema/spec": "^1.0.0",
77
"@tanstack/db-ivm": "workspace:*"

packages/electric-db-collection/CHANGELOG.md

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

3+
## 0.1.25
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`8cd0876`](https://github.com/TanStack/db/commit/8cd0876b50bc7c1a614365318d5e74c2f32a0f80)]:
8+
- @tanstack/db@0.4.1
9+
310
## 0.1.24
411

512
### Patch Changes

packages/electric-db-collection/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@tanstack/electric-db-collection",
33
"description": "ElectricSQL collection for TanStack DB",
4-
"version": "0.1.24",
4+
"version": "0.1.25",
55
"dependencies": {
66
"@standard-schema/spec": "^1.0.0",
77
"@electric-sql/client": "^1.0.10",

0 commit comments

Comments
 (0)