Skip to content

Commit b18bec4

Browse files
ci: Version Packages
1 parent dc321e2 commit b18bec4

File tree

27 files changed

+101
-34
lines changed

27 files changed

+101
-34
lines changed

.changeset/blue-areas-smile.md

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

.changeset/fix-bigint-serialization.md

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

.changeset/fix-proxy-frozen-values.md

Lines changed: 0 additions & 7 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.53",
14+
"@tanstack/react-db": ">=0.1.54",
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.53",
21+
"@tanstack/react-db": ">=0.1.54",
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: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @tanstack/angular-db
22

3+
## 0.1.36
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`1d19d22`](https://github.com/TanStack/db/commit/1d19d2219cbbaef6483845df1c3b078077e4e3bd), [`b3e4e80`](https://github.com/TanStack/db/commit/b3e4e80c4b73d96c15391ac25efb518c7ae7ccbb)]:
8+
- @tanstack/db@0.5.10
9+
310
## 0.1.35
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.35",
4+
"version": "0.1.36",
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.13
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`1d19d22`](https://github.com/TanStack/db/commit/1d19d2219cbbaef6483845df1c3b078077e4e3bd), [`aebd0fa`](https://github.com/TanStack/db/commit/aebd0fa43345ea28dcdb3f446cdd393de1d1e4b7), [`b3e4e80`](https://github.com/TanStack/db/commit/b3e4e80c4b73d96c15391ac25efb518c7ae7ccbb)]:
8+
- @tanstack/electric-db-collection@0.2.11
9+
- @tanstack/db@0.5.10
10+
- @tanstack/query-db-collection@1.0.5
11+
312
## 0.0.12
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.12",
3+
"version": "0.0.13",
44
"private": true,
55
"description": "End-to-end test suite for TanStack DB collections",
66
"type": "module",

packages/db/CHANGELOG.md

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

3+
## 0.5.10
4+
5+
### Patch Changes
6+
7+
- Type utils in collection options as specific type (e.g. ElectricCollectionUtils) instead of generic UtilsRecord. ([#940](https://github.com/TanStack/db/pull/940))
8+
9+
- Fix proxy to handle frozen objects correctly. Previously, creating a proxy for a frozen object (such as data from state management libraries that freeze their state) would throw a TypeError when attempting to modify properties via the proxy. The proxy now uses an unfrozen internal copy as the Proxy target, allowing modifications to be tracked correctly while preserving the immutability of the original object. ([#933](https://github.com/TanStack/db/pull/933))
10+
11+
Also adds support for `Object.seal()` and `Object.preventExtensions()` on proxies, allowing these operations to work correctly on change-tracking proxies.
12+
313
## 0.5.9
414

515
### Patch Changes

0 commit comments

Comments
 (0)