Skip to content

Commit 55595a7

Browse files
ci: Version Packages (#137)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 16774b5 commit 55595a7

16 files changed

Lines changed: 74 additions & 44 deletions

.changeset/fast-trees-find.md

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

.changeset/lemon-deer-tell.md

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

.changeset/orange-laws-watch.md

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

.changeset/small-bushes-hide.md

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

.changeset/smart-points-chew.md

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

examples/react/todo/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# examples/react/todo
22

3+
## 0.0.9
4+
5+
### Patch Changes
6+
7+
- Collections must have a getId function & use an id for update/delete operators ([#134](https://github.com/TanStack/db/pull/134))
8+
9+
- Switch to Collection options factories instead of extending the Collection class ([#145](https://github.com/TanStack/db/pull/145))
10+
11+
This refactors `ElectricCollection` and `QueryCollection` into factory functions (`electricCollectionOptions` and `queryCollectionOptions`) that return standard `CollectionConfig` objects and utility functions. Also adds a `createCollection` function to standardize collection instantiation.
12+
13+
- Updated dependencies [[`1fbb844`](https://github.com/TanStack/db/commit/1fbb8447d8425d37cb9ab4f078ffab999b28b06c), [`ee5d026`](https://github.com/TanStack/db/commit/ee5d026715962dd0232fcaca513a8fac9189dce2), [`e4feb0c`](https://github.com/TanStack/db/commit/e4feb0c214835675b47f0aa18a72d004a423df03)]:
14+
- @tanstack/db-collections@0.0.7
15+
- @tanstack/react-db@0.0.5
16+
317
## 0.0.8
418

519
### Patch Changes

examples/react/todo/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@tanstack/db-example-react-todo",
33
"private": true,
4-
"version": "0.0.8",
4+
"version": "0.0.9",
55
"dependencies": {
6-
"@tanstack/db-collections": "^0.0.6",
6+
"@tanstack/db-collections": "^0.0.7",
77
"@tanstack/query-core": "^5.75.7",
8-
"@tanstack/react-db": "^0.0.4",
8+
"@tanstack/react-db": "^0.0.5",
99
"cors": "^2.8.5",
1010
"drizzle-orm": "^0.40.1",
1111
"drizzle-zod": "^0.7.0",

packages/db-collections/CHANGELOG.md

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

3+
## 0.0.7
4+
5+
### Patch Changes
6+
7+
- Collections must have a getId function & use an id for update/delete operators ([#134](https://github.com/TanStack/db/pull/134))
8+
9+
- Switch to Collection options factories instead of extending the Collection class ([#145](https://github.com/TanStack/db/pull/145))
10+
11+
This refactors `ElectricCollection` and `QueryCollection` into factory functions (`electricCollectionOptions` and `queryCollectionOptions`) that return standard `CollectionConfig` objects and utility functions. Also adds a `createCollection` function to standardize collection instantiation.
12+
13+
- Updated dependencies [[`1fbb844`](https://github.com/TanStack/db/commit/1fbb8447d8425d37cb9ab4f078ffab999b28b06c), [`338efc2`](https://github.com/TanStack/db/commit/338efc229c3794da5ac373b8b26143e379433407), [`ee5d026`](https://github.com/TanStack/db/commit/ee5d026715962dd0232fcaca513a8fac9189dce2), [`e7b036c`](https://github.com/TanStack/db/commit/e7b036ce6ebd17c94cc944d6d96ca2c645921c3e), [`e4feb0c`](https://github.com/TanStack/db/commit/e4feb0c214835675b47f0aa18a72d004a423df03)]:
14+
- @tanstack/db@0.0.5
15+
316
## 0.0.6
417

518
### Patch Changes

packages/db-collections/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-collections",
33
"description": "A collection for (aspirationally) every way of loading your data",
4-
"version": "0.0.6",
4+
"version": "0.0.7",
55
"dependencies": {
66
"@tanstack/db": "workspace:*",
77
"@tanstack/query-core": "^5.75.7",

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.0.5
4+
5+
### Patch Changes
6+
7+
- Collections must have a getId function & use an id for update/delete operators ([#134](https://github.com/TanStack/db/pull/134))
8+
9+
- the select operator is not optional on a query, it will default to returning the whole row for a basic query, and a namespaced object when there are joins ([#148](https://github.com/TanStack/db/pull/148))
10+
11+
- the `keyBy` query operator has been removed, keying withing the query pipeline is now automatic ([#144](https://github.com/TanStack/db/pull/144))
12+
13+
- update d2ts to to latest version that improves hashing performance ([#136](https://github.com/TanStack/db/pull/136))
14+
15+
- Switch to Collection options factories instead of extending the Collection class ([#145](https://github.com/TanStack/db/pull/145))
16+
17+
This refactors `ElectricCollection` and `QueryCollection` into factory functions (`electricCollectionOptions` and `queryCollectionOptions`) that return standard `CollectionConfig` objects and utility functions. Also adds a `createCollection` function to standardize collection instantiation.
18+
319
## 0.0.4
420

521
### Patch Changes

0 commit comments

Comments
 (0)