Skip to content

Commit b362533

Browse files
ci: Version Packages (#286)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent ced0657 commit b362533

File tree

17 files changed

+82
-40
lines changed

17 files changed

+82
-40
lines changed

.changeset/pink-ducks-fix.md

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

.changeset/silent-shrimps-worry.md

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

examples/react/todo/CHANGELOG.md

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

3+
## 0.0.34
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @tanstack/electric-db-collection@0.0.10
9+
- @tanstack/query-db-collection@0.0.10
10+
- @tanstack/react-db@0.0.28
11+
- @tanstack/trailbase-db-collection@0.0.4
12+
313
## 0.0.33
414

515
### Patch Changes

examples/react/todo/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "@tanstack/db-example-react-todo",
33
"private": true,
4-
"version": "0.0.33",
4+
"version": "0.0.34",
55
"dependencies": {
6-
"@tanstack/electric-db-collection": "^0.0.9",
6+
"@tanstack/electric-db-collection": "^0.0.10",
77
"@tanstack/query-core": "^5.75.7",
8-
"@tanstack/query-db-collection": "^0.0.9",
9-
"@tanstack/react-db": "^0.0.27",
8+
"@tanstack/query-db-collection": "^0.0.10",
9+
"@tanstack/react-db": "^0.0.28",
1010
"@tanstack/react-router": "^1.125.6",
1111
"@tanstack/react-start": "^1.126.1",
12-
"@tanstack/trailbase-db-collection": "^0.0.3",
12+
"@tanstack/trailbase-db-collection": "^0.0.4",
1313
"cors": "^2.8.5",
1414
"drizzle-orm": "^0.40.1",
1515
"drizzle-zod": "^0.7.0",

packages/db/CHANGELOG.md

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

3+
## 0.0.28
4+
5+
### Patch Changes
6+
7+
- fixed an issue with joins where a specific order of references in the `eq()` expression was required, and added additional validation ([#291](https://github.com/TanStack/db/pull/291))
8+
9+
- Add comprehensive documentation for creating collection options creators ([#284](https://github.com/TanStack/db/pull/284))
10+
11+
This adds a new documentation page `collection-options-creator.md` that provides detailed guidance for developers building collection options creators. The documentation covers:
12+
- Core requirements and configuration interfaces
13+
- Sync implementation patterns with transaction lifecycle (begin, write, commit, markReady)
14+
- Data parsing and type conversion using field-specific conversions
15+
- Two distinct mutation handler patterns:
16+
- Pattern A: User-provided handlers (Electric SQL, Query style)
17+
- Pattern B: Built-in handlers (Trailbase, WebSocket style)
18+
- Complete WebSocket collection example with full round-trip flow
19+
- Managing optimistic state with various strategies (transaction IDs, ID-based tracking, refetch, timestamps)
20+
- Best practices for deduplication, error handling, and testing
21+
- Row update modes and advanced configuration options
22+
23+
The documentation helps developers understand when to create custom collections versus using the query collection, and provides practical examples following the established patterns from existing collection implementations.
24+
325
## 0.0.27
426

527
### Patch 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.0.27",
4+
"version": "0.0.28",
55
"dependencies": {
66
"@electric-sql/d2mini": "^0.1.7",
77
"@standard-schema/spec": "^1.0.0"

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.0.10
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`bb85522`](https://github.com/TanStack/db/commit/bb8552210a97dd05d3ca6fdd080a3fd25c1023a6), [`e9e8e5e`](https://github.com/TanStack/db/commit/e9e8e5e20c23fb7f98865d6b8aab05ad5322e5f7)]:
8+
- @tanstack/db@0.0.28
9+
310
## 0.0.9
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": "Electric SQL collection for TanStack DB",
4-
"version": "0.0.9",
4+
"version": "0.0.10",
55
"dependencies": {
66
"@electric-sql/client": "1.0.0",
77
"@standard-schema/spec": "^1.0.0",

packages/query-db-collection/CHANGELOG.md

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

3+
## 0.0.10
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`bb85522`](https://github.com/TanStack/db/commit/bb8552210a97dd05d3ca6fdd080a3fd25c1023a6), [`e9e8e5e`](https://github.com/TanStack/db/commit/e9e8e5e20c23fb7f98865d6b8aab05ad5322e5f7)]:
8+
- @tanstack/db@0.0.28
9+
310
## 0.0.9
411

512
### Patch Changes

packages/query-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/query-db-collection",
33
"description": "TanStack Query collection for TanStack DB",
4-
"version": "0.0.9",
4+
"version": "0.0.10",
55
"dependencies": {
66
"@tanstack/db": "workspace:*",
77
"@tanstack/query-core": "^5.75.7"

0 commit comments

Comments
 (0)