diff --git a/.changeset/db-client-hardening.md b/.changeset/db-client-hardening.md deleted file mode 100644 index 958fc358..00000000 --- a/.changeset/db-client-hardening.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@bunny.net/database-client": patch -"@bunny.net/cli": patch ---- - -Harden `@bunny.net/database-client`: `batch()` takes a `mode`, guards its ROLLBACK, rejects transaction statements, and reports the failing statement as `error.batchIndex`; invalid `timeout` values and malformed responses become `DatabaseError`, transport errors keep their `cause`, integer-valued doubles past 2^53 bind as REAL, and `db.sql` carries a row type. Migrations apply with `BEGIN IMMEDIATE`. diff --git a/.changeset/skill-storage-database-client.md b/.changeset/skill-storage-database-client.md deleted file mode 100644 index 1a6b5696..00000000 --- a/.changeset/skill-storage-database-client.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@bunny.net/cli": patch ---- - -`bunny skills install` now ships references for Bunny Storage (`bunny storage` zones, files, connection credentials, custom domains) and for querying a database from application code with `@bunny.net/database-client`. diff --git a/packages/cli-darwin-arm64/CHANGELOG.md b/packages/cli-darwin-arm64/CHANGELOG.md index 063b0a79..6da90afb 100644 --- a/packages/cli-darwin-arm64/CHANGELOG.md +++ b/packages/cli-darwin-arm64/CHANGELOG.md @@ -1,5 +1,7 @@ # @bunny.net/cli-darwin-arm64 +## 0.16.1 + ## 0.16.0 ## 0.15.1 diff --git a/packages/cli-darwin-arm64/package.json b/packages/cli-darwin-arm64/package.json index 6b7aa9d6..a227a94d 100644 --- a/packages/cli-darwin-arm64/package.json +++ b/packages/cli-darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@bunny.net/cli-darwin-arm64", - "version": "0.16.0", + "version": "0.16.1", "description": "bunny.net CLI binary for macOS arm64", "os": [ "darwin" diff --git a/packages/cli-darwin-x64/CHANGELOG.md b/packages/cli-darwin-x64/CHANGELOG.md index be4773e0..0dccb096 100644 --- a/packages/cli-darwin-x64/CHANGELOG.md +++ b/packages/cli-darwin-x64/CHANGELOG.md @@ -1,5 +1,7 @@ # @bunny.net/cli-darwin-x64 +## 0.16.1 + ## 0.16.0 ## 0.15.1 diff --git a/packages/cli-darwin-x64/package.json b/packages/cli-darwin-x64/package.json index c39551fa..6ad86a89 100644 --- a/packages/cli-darwin-x64/package.json +++ b/packages/cli-darwin-x64/package.json @@ -1,6 +1,6 @@ { "name": "@bunny.net/cli-darwin-x64", - "version": "0.16.0", + "version": "0.16.1", "description": "bunny.net CLI binary for macOS x64", "os": [ "darwin" diff --git a/packages/cli-linux-arm64/CHANGELOG.md b/packages/cli-linux-arm64/CHANGELOG.md index 9a80e9ac..01281893 100644 --- a/packages/cli-linux-arm64/CHANGELOG.md +++ b/packages/cli-linux-arm64/CHANGELOG.md @@ -1,5 +1,7 @@ # @bunny.net/cli-linux-arm64 +## 0.16.1 + ## 0.16.0 ## 0.15.1 diff --git a/packages/cli-linux-arm64/package.json b/packages/cli-linux-arm64/package.json index fe3e591a..3e276459 100644 --- a/packages/cli-linux-arm64/package.json +++ b/packages/cli-linux-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@bunny.net/cli-linux-arm64", - "version": "0.16.0", + "version": "0.16.1", "description": "bunny.net CLI binary for Linux arm64", "os": [ "linux" diff --git a/packages/cli-linux-x64/CHANGELOG.md b/packages/cli-linux-x64/CHANGELOG.md index 86f85458..7dcd97fd 100644 --- a/packages/cli-linux-x64/CHANGELOG.md +++ b/packages/cli-linux-x64/CHANGELOG.md @@ -1,5 +1,7 @@ # @bunny.net/cli-linux-x64 +## 0.16.1 + ## 0.16.0 ## 0.15.1 diff --git a/packages/cli-linux-x64/package.json b/packages/cli-linux-x64/package.json index bc2e8b53..36ff9677 100644 --- a/packages/cli-linux-x64/package.json +++ b/packages/cli-linux-x64/package.json @@ -1,6 +1,6 @@ { "name": "@bunny.net/cli-linux-x64", - "version": "0.16.0", + "version": "0.16.1", "description": "bunny.net CLI binary for Linux x64", "os": [ "linux" diff --git a/packages/cli-windows-x64/CHANGELOG.md b/packages/cli-windows-x64/CHANGELOG.md index 523f25e8..f0c47bf0 100644 --- a/packages/cli-windows-x64/CHANGELOG.md +++ b/packages/cli-windows-x64/CHANGELOG.md @@ -1,5 +1,7 @@ # @bunny.net/cli-windows-x64 +## 0.16.1 + ## 0.16.0 ## 0.15.1 diff --git a/packages/cli-windows-x64/package.json b/packages/cli-windows-x64/package.json index c05a752f..563503fb 100644 --- a/packages/cli-windows-x64/package.json +++ b/packages/cli-windows-x64/package.json @@ -1,6 +1,6 @@ { "name": "@bunny.net/cli-windows-x64", - "version": "0.16.0", + "version": "0.16.1", "description": "bunny.net CLI binary for Windows x64", "os": [ "win32" diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index d6df7c59..9fc8933f 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,13 @@ # @bunny.net/cli +## 0.16.1 + +### Patch Changes + +- [#206](https://github.com/BunnyWay/cli/pull/206) [`d6b68a7`](https://github.com/BunnyWay/cli/commit/d6b68a7d0f058d035171f10e0398428f5b6410da) Thanks [@jamie-at-bunny](https://github.com/jamie-at-bunny)! - Harden `@bunny.net/database-client`: `batch()` takes a `mode`, guards its ROLLBACK, rejects transaction statements, and reports the failing statement as `error.batchIndex`; invalid `timeout` values and malformed responses become `DatabaseError`, transport errors keep their `cause`, integer-valued doubles past 2^53 bind as REAL, and `db.sql` carries a row type. Migrations apply with `BEGIN IMMEDIATE`. + +- [#204](https://github.com/BunnyWay/cli/pull/204) [`a00a867`](https://github.com/BunnyWay/cli/commit/a00a867b210a72730338d719aa8c83a5bb644ae7) Thanks [@jamie-at-bunny](https://github.com/jamie-at-bunny)! - `bunny skills install` now ships references for Bunny Storage (`bunny storage` zones, files, connection credentials, custom domains) and for querying a database from application code with `@bunny.net/database-client`. + ## 0.16.0 ### Minor Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 92e2df19..069977b0 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@bunny.net/cli", - "version": "0.16.0", + "version": "0.16.1", "type": "module", "module": "src/index.ts", "bin": { @@ -29,11 +29,11 @@ "@bunny.net/database-client": "workspace:*" }, "optionalDependencies": { - "@bunny.net/cli-linux-x64": "0.16.0", - "@bunny.net/cli-linux-arm64": "0.16.0", - "@bunny.net/cli-darwin-x64": "0.16.0", - "@bunny.net/cli-darwin-arm64": "0.16.0", - "@bunny.net/cli-windows-x64": "0.16.0" + "@bunny.net/cli-linux-x64": "0.16.1", + "@bunny.net/cli-linux-arm64": "0.16.1", + "@bunny.net/cli-darwin-x64": "0.16.1", + "@bunny.net/cli-darwin-arm64": "0.16.1", + "@bunny.net/cli-windows-x64": "0.16.1" }, "publishConfig": { "access": "public" diff --git a/packages/database-adapter/CHANGELOG.md b/packages/database-adapter/CHANGELOG.md index 41b67de1..09a236ee 100644 --- a/packages/database-adapter/CHANGELOG.md +++ b/packages/database-adapter/CHANGELOG.md @@ -1,5 +1,13 @@ # @bunny.net/database-adapter +## 0.1.5 + +### Patch Changes + +- Updated dependencies [[`d6b68a7`](https://github.com/BunnyWay/cli/commit/d6b68a7d0f058d035171f10e0398428f5b6410da)]: + - @bunny.net/database-client@0.0.3 + - @bunny.net/database-rest@0.1.2 + ## 0.1.4 ### Patch Changes diff --git a/packages/database-adapter/package.json b/packages/database-adapter/package.json index 5792ce7f..a3e44d1f 100644 --- a/packages/database-adapter/package.json +++ b/packages/database-adapter/package.json @@ -1,6 +1,6 @@ { "name": "@bunny.net/database-adapter", - "version": "0.1.4", + "version": "0.1.5", "private": true, "type": "module", "module": "src/index.ts", diff --git a/packages/database-client/CHANGELOG.md b/packages/database-client/CHANGELOG.md index 664844c2..d40ecbf6 100644 --- a/packages/database-client/CHANGELOG.md +++ b/packages/database-client/CHANGELOG.md @@ -1,5 +1,11 @@ # @bunny.net/database-client +## 0.0.3 + +### Patch Changes + +- [#206](https://github.com/BunnyWay/cli/pull/206) [`d6b68a7`](https://github.com/BunnyWay/cli/commit/d6b68a7d0f058d035171f10e0398428f5b6410da) Thanks [@jamie-at-bunny](https://github.com/jamie-at-bunny)! - Harden `@bunny.net/database-client`: `batch()` takes a `mode`, guards its ROLLBACK, rejects transaction statements, and reports the failing statement as `error.batchIndex`; invalid `timeout` values and malformed responses become `DatabaseError`, transport errors keep their `cause`, integer-valued doubles past 2^53 bind as REAL, and `db.sql` carries a row type. Migrations apply with `BEGIN IMMEDIATE`. + ## 0.0.2 ### Patch Changes diff --git a/packages/database-client/package.json b/packages/database-client/package.json index 48624522..a4017c0b 100644 --- a/packages/database-client/package.json +++ b/packages/database-client/package.json @@ -1,6 +1,6 @@ { "name": "@bunny.net/database-client", - "version": "0.0.2", + "version": "0.0.3", "description": "Dependency-free SQL client for Bunny Database. Runs anywhere fetch does: Bunny Edge Scripting, Bun, Node, and Deno.", "license": "MIT", "repository": { diff --git a/packages/database-shell-darwin-arm64/CHANGELOG.md b/packages/database-shell-darwin-arm64/CHANGELOG.md index 8493f739..3fee5447 100644 --- a/packages/database-shell-darwin-arm64/CHANGELOG.md +++ b/packages/database-shell-darwin-arm64/CHANGELOG.md @@ -1,5 +1,7 @@ # @bunny.net/database-shell-darwin-arm64 +## 0.2.7 + ## 0.2.6 ## 0.2.5 diff --git a/packages/database-shell-darwin-arm64/package.json b/packages/database-shell-darwin-arm64/package.json index 76c07647..66440f42 100644 --- a/packages/database-shell-darwin-arm64/package.json +++ b/packages/database-shell-darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@bunny.net/database-shell-darwin-arm64", - "version": "0.2.6", + "version": "0.2.7", "description": "Bunny Database shell binary for macOS arm64", "os": [ "darwin" diff --git a/packages/database-shell-darwin-x64/CHANGELOG.md b/packages/database-shell-darwin-x64/CHANGELOG.md index fce89459..fffe3a44 100644 --- a/packages/database-shell-darwin-x64/CHANGELOG.md +++ b/packages/database-shell-darwin-x64/CHANGELOG.md @@ -1,5 +1,7 @@ # @bunny.net/database-shell-darwin-x64 +## 0.2.7 + ## 0.2.6 ## 0.2.5 diff --git a/packages/database-shell-darwin-x64/package.json b/packages/database-shell-darwin-x64/package.json index 3a5d85df..9b7352e0 100644 --- a/packages/database-shell-darwin-x64/package.json +++ b/packages/database-shell-darwin-x64/package.json @@ -1,6 +1,6 @@ { "name": "@bunny.net/database-shell-darwin-x64", - "version": "0.2.6", + "version": "0.2.7", "description": "Bunny Database shell binary for macOS x64", "os": [ "darwin" diff --git a/packages/database-shell-linux-arm64/CHANGELOG.md b/packages/database-shell-linux-arm64/CHANGELOG.md index 5f0e2a13..8b4f2785 100644 --- a/packages/database-shell-linux-arm64/CHANGELOG.md +++ b/packages/database-shell-linux-arm64/CHANGELOG.md @@ -1,5 +1,7 @@ # @bunny.net/database-shell-linux-arm64 +## 0.2.7 + ## 0.2.6 ## 0.2.5 diff --git a/packages/database-shell-linux-arm64/package.json b/packages/database-shell-linux-arm64/package.json index 71f8ad19..810790c5 100644 --- a/packages/database-shell-linux-arm64/package.json +++ b/packages/database-shell-linux-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@bunny.net/database-shell-linux-arm64", - "version": "0.2.6", + "version": "0.2.7", "description": "Bunny Database shell binary for Linux arm64", "os": [ "linux" diff --git a/packages/database-shell-linux-x64/CHANGELOG.md b/packages/database-shell-linux-x64/CHANGELOG.md index bc8c50c6..eafe30eb 100644 --- a/packages/database-shell-linux-x64/CHANGELOG.md +++ b/packages/database-shell-linux-x64/CHANGELOG.md @@ -1,5 +1,7 @@ # @bunny.net/database-shell-linux-x64 +## 0.2.7 + ## 0.2.6 ## 0.2.5 diff --git a/packages/database-shell-linux-x64/package.json b/packages/database-shell-linux-x64/package.json index 79f95a4a..04904dd7 100644 --- a/packages/database-shell-linux-x64/package.json +++ b/packages/database-shell-linux-x64/package.json @@ -1,6 +1,6 @@ { "name": "@bunny.net/database-shell-linux-x64", - "version": "0.2.6", + "version": "0.2.7", "description": "Bunny Database shell binary for Linux x64", "os": [ "linux" diff --git a/packages/database-shell-windows-x64/CHANGELOG.md b/packages/database-shell-windows-x64/CHANGELOG.md index 8edee7dc..1bff9a01 100644 --- a/packages/database-shell-windows-x64/CHANGELOG.md +++ b/packages/database-shell-windows-x64/CHANGELOG.md @@ -1,5 +1,7 @@ # @bunny.net/database-shell-windows-x64 +## 0.2.7 + ## 0.2.6 ## 0.2.5 diff --git a/packages/database-shell-windows-x64/package.json b/packages/database-shell-windows-x64/package.json index 8b591797..5beec8bf 100644 --- a/packages/database-shell-windows-x64/package.json +++ b/packages/database-shell-windows-x64/package.json @@ -1,6 +1,6 @@ { "name": "@bunny.net/database-shell-windows-x64", - "version": "0.2.6", + "version": "0.2.7", "description": "Bunny Database shell binary for Windows x64", "os": [ "win32" diff --git a/packages/database-shell/CHANGELOG.md b/packages/database-shell/CHANGELOG.md index fad3cd9f..2f241f81 100644 --- a/packages/database-shell/CHANGELOG.md +++ b/packages/database-shell/CHANGELOG.md @@ -1,5 +1,12 @@ # @bunny.net/database-shell +## 0.2.7 + +### Patch Changes + +- Updated dependencies [[`d6b68a7`](https://github.com/BunnyWay/cli/commit/d6b68a7d0f058d035171f10e0398428f5b6410da)]: + - @bunny.net/database-client@0.0.3 + ## 0.2.6 ### Patch Changes diff --git a/packages/database-shell/package.json b/packages/database-shell/package.json index 984be92c..dab4cd2b 100644 --- a/packages/database-shell/package.json +++ b/packages/database-shell/package.json @@ -1,6 +1,6 @@ { "name": "@bunny.net/database-shell", - "version": "0.2.6", + "version": "0.2.7", "type": "module", "module": "src/index.ts", "bin": { @@ -18,11 +18,11 @@ "cli-table3": "^0.6.5" }, "optionalDependencies": { - "@bunny.net/database-shell-linux-x64": "0.2.6", - "@bunny.net/database-shell-linux-arm64": "0.2.6", - "@bunny.net/database-shell-darwin-x64": "0.2.6", - "@bunny.net/database-shell-darwin-arm64": "0.2.6", - "@bunny.net/database-shell-windows-x64": "0.2.6" + "@bunny.net/database-shell-linux-x64": "0.2.7", + "@bunny.net/database-shell-linux-arm64": "0.2.7", + "@bunny.net/database-shell-darwin-x64": "0.2.7", + "@bunny.net/database-shell-darwin-arm64": "0.2.7", + "@bunny.net/database-shell-windows-x64": "0.2.7" }, "publishConfig": { "access": "public" diff --git a/packages/database-studio/CHANGELOG.md b/packages/database-studio/CHANGELOG.md index 404830aa..5df126bc 100644 --- a/packages/database-studio/CHANGELOG.md +++ b/packages/database-studio/CHANGELOG.md @@ -1,5 +1,14 @@ # @bunny.net/database-studio +## 0.2.3 + +### Patch Changes + +- Updated dependencies [[`d6b68a7`](https://github.com/BunnyWay/cli/commit/d6b68a7d0f058d035171f10e0398428f5b6410da)]: + - @bunny.net/database-client@0.0.3 + - @bunny.net/database-adapter@0.1.5 + - @bunny.net/database-rest@0.1.2 + ## 0.2.2 ### Patch Changes diff --git a/packages/database-studio/package.json b/packages/database-studio/package.json index 95af2df1..23240081 100644 --- a/packages/database-studio/package.json +++ b/packages/database-studio/package.json @@ -1,6 +1,6 @@ { "name": "@bunny.net/database-studio", - "version": "0.2.2", + "version": "0.2.3", "private": true, "type": "module", "module": "src/index.ts",