From fb5e6e40fe54e2ae704cd6abb9ec6d01f37f10f5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 17 Apr 2026 19:58:54 +0000 Subject: [PATCH] chore: version packages --- .changeset/bold-frogs-peel.md | 6 ------ .changeset/loose-guests-drive.md | 5 ----- .changeset/metal-snails-repair.md | 5 ----- .changeset/yellow-fans-speak.md | 5 ----- bun.lock | 12 ++++++------ examples/chatroom-bun/CHANGELOG.md | 7 +++++++ examples/chatroom-bun/package.json | 2 +- examples/chatroom-do/CHANGELOG.md | 7 +++++++ examples/chatroom-do/package.json | 2 +- examples/chatroom-hono/CHANGELOG.md | 7 +++++++ examples/chatroom-hono/package.json | 2 +- packages/drizzle-indexeddb/CHANGELOG.md | 6 ++++++ packages/drizzle-indexeddb/package.json | 2 +- packages/router-toolkit/CHANGELOG.md | 6 ++++++ packages/router-toolkit/package.json | 2 +- packages/socka/CHANGELOG.md | 14 ++++++++++++++ packages/socka/package.json | 2 +- 17 files changed, 59 insertions(+), 33 deletions(-) delete mode 100644 .changeset/bold-frogs-peel.md delete mode 100644 .changeset/loose-guests-drive.md delete mode 100644 .changeset/metal-snails-repair.md delete mode 100644 .changeset/yellow-fans-speak.md diff --git a/.changeset/bold-frogs-peel.md b/.changeset/bold-frogs-peel.md deleted file mode 100644 index 9700824..0000000 --- a/.changeset/bold-frogs-peel.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@firtoz/drizzle-indexeddb": patch -"@firtoz/router-toolkit": patch ---- - -Remove `any` / double cast in standalone collection creation; satisfy Biome in concurrent submitter tests (no non-null assertions). diff --git a/.changeset/loose-guests-drive.md b/.changeset/loose-guests-drive.md deleted file mode 100644 index 183b101..0000000 --- a/.changeset/loose-guests-drive.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@firtoz/socka": minor ---- - -Optional `output` on `defineSocka` calls enables fire-and-forget RPC: no `serverResponse` on success, client `send` resolves after the request is sent; failures still use `serverError` with optional `rpc`. `SockaError` and `reportError` gain related fields/kinds. Documentation updated (`z.void()` vs omitted `output`). diff --git a/.changeset/metal-snails-repair.md b/.changeset/metal-snails-repair.md deleted file mode 100644 index cdee5fe..0000000 --- a/.changeset/metal-snails-repair.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@firtoz/socka": patch ---- - -Set `ignoreDeprecations` to `6.0` in `tsconfig.json` so the declaration build succeeds on TypeScript 6 (silences TS5101 for deprecated `baseUrl` used by the DTS pipeline). diff --git a/.changeset/yellow-fans-speak.md b/.changeset/yellow-fans-speak.md deleted file mode 100644 index 03e8912..0000000 --- a/.changeset/yellow-fans-speak.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@firtoz/socka": major ---- - -**Breaking:** Strict HTTP upgrade is the default for `SockaWebSocketSession`. `createData` receives `SockaStrictWebSocketInit` unless you use `SockaWebSocketSessionConfigLoose` with `strictUpgradeRequest: false` (tests, Node `ws` without a `Request`, inner DO engine). New types: `SockaWebSocketSessionConfigLoose`, `SockaWebSocketSessionConfigUnion`. Sessions constructed without an upgrade `Request` now throw unless loose. diff --git a/bun.lock b/bun.lock index e16e555..c5b0649 100644 --- a/bun.lock +++ b/bun.lock @@ -28,7 +28,7 @@ }, "examples/chatroom-bun": { "name": "chatroom-bun", - "version": "0.0.1", + "version": "0.0.2", "dependencies": { "@firtoz/socka": "workspace:*", "zod": "catalog:", @@ -41,7 +41,7 @@ }, "examples/chatroom-do": { "name": "chatroom-do", - "version": "0.0.1", + "version": "0.0.2", "dependencies": { "@firtoz/socka": "workspace:*", "@firtoz/websocket-do": "workspace:*", @@ -59,7 +59,7 @@ }, "examples/chatroom-hono": { "name": "chatroom-hono", - "version": "0.0.1", + "version": "0.0.2", "dependencies": { "@firtoz/socka": "workspace:*", "@hono/node-server": "^1.19.14", @@ -243,7 +243,7 @@ }, "packages/drizzle-indexeddb": { "name": "@firtoz/drizzle-indexeddb", - "version": "5.0.1", + "version": "5.0.2", "bin": { "drizzle-indexeddb-generate": "./dist/bin/generate-migrations.js", }, @@ -353,7 +353,7 @@ }, "packages/router-toolkit": { "name": "@firtoz/router-toolkit", - "version": "8.0.0", + "version": "8.0.1", "dependencies": { "zod-form-data": "catalog:", }, @@ -373,7 +373,7 @@ }, "packages/socka": { "name": "@firtoz/socka", - "version": "2.1.0", + "version": "3.0.0", "dependencies": { "@firtoz/maybe-error": "workspace:*", "@standard-schema/spec": "catalog:", diff --git a/examples/chatroom-bun/CHANGELOG.md b/examples/chatroom-bun/CHANGELOG.md index bead77a..e294452 100644 --- a/examples/chatroom-bun/CHANGELOG.md +++ b/examples/chatroom-bun/CHANGELOG.md @@ -1,5 +1,12 @@ # chatroom-bun +## 0.0.2 + +### Patch Changes + +- Updated dependencies [[`0e07b4c`](https://github.com/firtoz/fullstack-toolkit/commit/0e07b4ccf7146289ea0d754fcfff56ebbcf098d1), [`d9657ba`](https://github.com/firtoz/fullstack-toolkit/commit/d9657baef5517c8dea08ba9f3a467d157fdde7e1), [`42b43de`](https://github.com/firtoz/fullstack-toolkit/commit/42b43de1427a01288a9ab0053c244db20a5bd8cc)]: + - @firtoz/socka@3.0.0 + ## 0.0.1 ### Patch Changes diff --git a/examples/chatroom-bun/package.json b/examples/chatroom-bun/package.json index 9cda626..1297c4f 100644 --- a/examples/chatroom-bun/package.json +++ b/examples/chatroom-bun/package.json @@ -1,6 +1,6 @@ { "name": "chatroom-bun", - "version": "0.0.1", + "version": "0.0.2", "private": true, "type": "module", "description": "Multi-room chat over socka on Bun.serve with SQLite history (self-contained example)", diff --git a/examples/chatroom-do/CHANGELOG.md b/examples/chatroom-do/CHANGELOG.md index a293f3b..c0386e7 100644 --- a/examples/chatroom-do/CHANGELOG.md +++ b/examples/chatroom-do/CHANGELOG.md @@ -1,5 +1,12 @@ # chatroom-do +## 0.0.2 + +### Patch Changes + +- Updated dependencies [[`0e07b4c`](https://github.com/firtoz/fullstack-toolkit/commit/0e07b4ccf7146289ea0d754fcfff56ebbcf098d1), [`d9657ba`](https://github.com/firtoz/fullstack-toolkit/commit/d9657baef5517c8dea08ba9f3a467d157fdde7e1), [`42b43de`](https://github.com/firtoz/fullstack-toolkit/commit/42b43de1427a01288a9ab0053c244db20a5bd8cc)]: + - @firtoz/socka@3.0.0 + ## 0.0.1 ### Patch Changes diff --git a/examples/chatroom-do/package.json b/examples/chatroom-do/package.json index c6d2833..23cf97e 100644 --- a/examples/chatroom-do/package.json +++ b/examples/chatroom-do/package.json @@ -1,6 +1,6 @@ { "name": "chatroom-do", - "version": "0.0.1", + "version": "0.0.2", "private": true, "type": "module", "description": "Multi-room chat over socka on Cloudflare Durable Objects + Drizzle SQLite (self-contained example)", diff --git a/examples/chatroom-hono/CHANGELOG.md b/examples/chatroom-hono/CHANGELOG.md index 03d3c49..e5d7294 100644 --- a/examples/chatroom-hono/CHANGELOG.md +++ b/examples/chatroom-hono/CHANGELOG.md @@ -1,5 +1,12 @@ # chatroom-hono +## 0.0.2 + +### Patch Changes + +- Updated dependencies [[`0e07b4c`](https://github.com/firtoz/fullstack-toolkit/commit/0e07b4ccf7146289ea0d754fcfff56ebbcf098d1), [`d9657ba`](https://github.com/firtoz/fullstack-toolkit/commit/d9657baef5517c8dea08ba9f3a467d157fdde7e1), [`42b43de`](https://github.com/firtoz/fullstack-toolkit/commit/42b43de1427a01288a9ab0053c244db20a5bd8cc)]: + - @firtoz/socka@3.0.0 + ## 0.0.1 ### Patch Changes diff --git a/examples/chatroom-hono/package.json b/examples/chatroom-hono/package.json index 10b09f4..4db4732 100644 --- a/examples/chatroom-hono/package.json +++ b/examples/chatroom-hono/package.json @@ -1,6 +1,6 @@ { "name": "chatroom-hono", - "version": "0.0.1", + "version": "0.0.2", "private": true, "type": "module", "description": "Multi-room chat over socka on Hono + @hono/node-ws with JSON file history (self-contained example)", diff --git a/packages/drizzle-indexeddb/CHANGELOG.md b/packages/drizzle-indexeddb/CHANGELOG.md index dfbdf21..ea19402 100644 --- a/packages/drizzle-indexeddb/CHANGELOG.md +++ b/packages/drizzle-indexeddb/CHANGELOG.md @@ -1,5 +1,11 @@ # @firtoz/drizzle-indexeddb +## 5.0.2 + +### Patch Changes + +- [`65c1758`](https://github.com/firtoz/fullstack-toolkit/commit/65c1758a2d598865e341c0d72a536be3e8536ce9) Thanks [@firtoz](https://github.com/firtoz)! - Remove `any` / double cast in standalone collection creation; satisfy Biome in concurrent submitter tests (no non-null assertions). + ## 5.0.1 ### Patch Changes diff --git a/packages/drizzle-indexeddb/package.json b/packages/drizzle-indexeddb/package.json index fbe64e1..dd27b7e 100644 --- a/packages/drizzle-indexeddb/package.json +++ b/packages/drizzle-indexeddb/package.json @@ -1,6 +1,6 @@ { "name": "@firtoz/drizzle-indexeddb", - "version": "5.0.1", + "version": "5.0.2", "description": "IndexedDB migrations powered by Drizzle ORM", "main": "./dist/index.js", "module": "./dist/index.js", diff --git a/packages/router-toolkit/CHANGELOG.md b/packages/router-toolkit/CHANGELOG.md index 7bb9c71..78b44c4 100644 --- a/packages/router-toolkit/CHANGELOG.md +++ b/packages/router-toolkit/CHANGELOG.md @@ -1,5 +1,11 @@ # [@firtoz/router-toolkit-v1.1.0](https://github.com/firtoz/fullstack-toolkit/compare/@firtoz/router-toolkit@1.0.3...@firtoz/router-toolkit@1.1.0) (2025-07-13) +## 8.0.1 + +### Patch Changes + +- [`65c1758`](https://github.com/firtoz/fullstack-toolkit/commit/65c1758a2d598865e341c0d72a536be3e8536ce9) Thanks [@firtoz](https://github.com/firtoz)! - Remove `any` / double cast in standalone collection creation; satisfy Biome in concurrent submitter tests (no non-null assertions). + ## 8.0.0 ### Minor Changes diff --git a/packages/router-toolkit/package.json b/packages/router-toolkit/package.json index 67c5618..8cbca8b 100644 --- a/packages/router-toolkit/package.json +++ b/packages/router-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@firtoz/router-toolkit", - "version": "8.0.0", + "version": "8.0.1", "description": "Type-safe React Router 7 framework mode helpers with enhanced fetching, form submission, and state management", "type": "module", "main": "./dist/index.js", diff --git a/packages/socka/CHANGELOG.md b/packages/socka/CHANGELOG.md index 591e566..ece9be9 100644 --- a/packages/socka/CHANGELOG.md +++ b/packages/socka/CHANGELOG.md @@ -1,5 +1,19 @@ # @firtoz/socka +## 3.0.0 + +### Major Changes + +- [`42b43de`](https://github.com/firtoz/fullstack-toolkit/commit/42b43de1427a01288a9ab0053c244db20a5bd8cc) Thanks [@firtoz](https://github.com/firtoz)! - **Breaking:** Strict HTTP upgrade is the default for `SockaWebSocketSession`. `createData` receives `SockaStrictWebSocketInit` unless you use `SockaWebSocketSessionConfigLoose` with `strictUpgradeRequest: false` (tests, Node `ws` without a `Request`, inner DO engine). New types: `SockaWebSocketSessionConfigLoose`, `SockaWebSocketSessionConfigUnion`. Sessions constructed without an upgrade `Request` now throw unless loose. + +### Minor Changes + +- [`0e07b4c`](https://github.com/firtoz/fullstack-toolkit/commit/0e07b4ccf7146289ea0d754fcfff56ebbcf098d1) Thanks [@firtoz](https://github.com/firtoz)! - Optional `output` on `defineSocka` calls enables fire-and-forget RPC: no `serverResponse` on success, client `send` resolves after the request is sent; failures still use `serverError` with optional `rpc`. `SockaError` and `reportError` gain related fields/kinds. Documentation updated (`z.void()` vs omitted `output`). + +### Patch Changes + +- [`d9657ba`](https://github.com/firtoz/fullstack-toolkit/commit/d9657baef5517c8dea08ba9f3a467d157fdde7e1) Thanks [@firtoz](https://github.com/firtoz)! - Set `ignoreDeprecations` to `6.0` in `tsconfig.json` so the declaration build succeeds on TypeScript 6 (silences TS5101 for deprecated `baseUrl` used by the DTS pipeline). + ## 2.1.0 ### Minor Changes diff --git a/packages/socka/package.json b/packages/socka/package.json index e69c044..10cffb0 100644 --- a/packages/socka/package.json +++ b/packages/socka/package.json @@ -1,6 +1,6 @@ { "name": "@firtoz/socka", - "version": "2.1.0", + "version": "3.0.0", "type": "module", "description": "Standard Schema–first WebSocket RPC for TypeScript — Bun, Hono, Node ws, Cloudflare Workers, Durable Objects", "main": "./dist/core/index.js",