diff --git a/.changeset/prune-removed-state-distinct-scan.md b/.changeset/prune-removed-state-distinct-scan.md deleted file mode 100644 index 29ef1f26..00000000 --- a/.changeset/prune-removed-state-distinct-scan.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"kitcn": patch ---- - -## Patches - -- Fix `kitcn deploy` and `kitcn aggregate backfill|rebuild|prune` failing with `Too many documents read in a single function execution (limit: 32000)` once a table with an `aggregateIndex()` grows past ~32k rows. Backfill kickoff now discovers removed aggregate indexes with bounded distinct-key index scans instead of reading every aggregate row. Clearing a removed index whose aggregate rows already exceed platform limits still requires a chunked prune. -- Fix `backend=concave` failing to locate the Concave CLI with `@concavejs/cli` releases that do not export `./package.json`. -- Pin `@concavejs/cli` in concave scaffolds to the supported version instead of `latest`. diff --git a/bun.lock b/bun.lock index b79dbff7..06059c5a 100644 --- a/bun.lock +++ b/bun.lock @@ -119,7 +119,7 @@ }, "packages/kitcn": { "name": "kitcn", - "version": "0.15.14", + "version": "0.15.15", "bin": { "kitcn": "./dist/cli.mjs", "intent": "./bin/intent.js", @@ -180,7 +180,7 @@ }, "packages/resend": { "name": "@kitcn/resend", - "version": "0.15.14", + "version": "0.15.15", "dependencies": { "svix": "^1.84.1", }, diff --git a/packages/kitcn/CHANGELOG.md b/packages/kitcn/CHANGELOG.md index bd65af29..0c81ca68 100644 --- a/packages/kitcn/CHANGELOG.md +++ b/packages/kitcn/CHANGELOG.md @@ -1,5 +1,15 @@ # kitcn +## 0.15.15 + +### Patch Changes + +- [#297](https://github.com/udecode/kitcn/pull/297) [`4fba1b8`](https://github.com/udecode/kitcn/commit/4fba1b8dcef38e3433984553063306aafd87a453) Thanks [@MikeyZhang75](https://github.com/MikeyZhang75)! - ## Patches + + - Fix `kitcn deploy` and `kitcn aggregate backfill|rebuild|prune` failing with `Too many documents read in a single function execution (limit: 32000)` once a table with an `aggregateIndex()` grows past ~32k rows. Backfill kickoff now discovers removed aggregate indexes with bounded distinct-key index scans instead of reading every aggregate row. Clearing a removed index whose aggregate rows already exceed platform limits still requires a chunked prune. + - Fix `backend=concave` failing to locate the Concave CLI with `@concavejs/cli` releases that do not export `./package.json`. + - Pin `@concavejs/cli` in concave scaffolds to the supported version instead of `latest`. + ## 0.15.14 ### Patch Changes diff --git a/packages/kitcn/package.json b/packages/kitcn/package.json index 54572d6b..8c4269f8 100644 --- a/packages/kitcn/package.json +++ b/packages/kitcn/package.json @@ -1,6 +1,6 @@ { "name": "kitcn", - "version": "0.15.14", + "version": "0.15.15", "description": "kitcn - React Query integration and CLI tools for Convex", "keywords": [ "convex", diff --git a/packages/resend/CHANGELOG.md b/packages/resend/CHANGELOG.md index f4d03ee1..64d07488 100644 --- a/packages/resend/CHANGELOG.md +++ b/packages/resend/CHANGELOG.md @@ -1,5 +1,7 @@ # @kitcn/resend +## 0.15.15 + ## 0.15.14 ## 0.15.13 diff --git a/packages/resend/package.json b/packages/resend/package.json index f4ab2807..5a75df69 100644 --- a/packages/resend/package.json +++ b/packages/resend/package.json @@ -1,6 +1,6 @@ { "name": "@kitcn/resend", - "version": "0.15.14", + "version": "0.15.15", "description": "kitcn Resend plugin", "type": "module", "sideEffects": false,