From dc3f95cf09cb298d084a8cd3ec5af9a350b30a46 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 14:21:35 +0000 Subject: [PATCH] Version Packages --- .changeset/sandbox-cp-command.md | 5 ----- .changeset/sandbox-exec-separator-fix.md | 5 ----- .changeset/sandbox-get-hydrates-ports.md | 5 ----- .changeset/sandbox-ls-and-exec-timeout.md | 5 ----- .changeset/sandbox-streaming-and-disposal.md | 5 ----- .changeset/sandbox-timeouts-file-ops.md | 5 ----- .changeset/storage-behavioral-consistency.md | 5 ----- packages/cli-darwin-arm64/CHANGELOG.md | 2 ++ packages/cli-darwin-arm64/package.json | 2 +- packages/cli-darwin-x64/CHANGELOG.md | 2 ++ packages/cli-darwin-x64/package.json | 2 +- packages/cli-linux-arm64/CHANGELOG.md | 2 ++ packages/cli-linux-arm64/package.json | 2 +- packages/cli-linux-x64/CHANGELOG.md | 2 ++ packages/cli-linux-x64/package.json | 2 +- packages/cli-windows-x64/CHANGELOG.md | 2 ++ packages/cli-windows-x64/package.json | 2 +- packages/cli/CHANGELOG.md | 14 ++++++++++++++ packages/cli/package.json | 12 ++++++------ packages/sandbox/CHANGELOG.md | 10 ++++++++++ packages/sandbox/package.json | 2 +- 21 files changed, 46 insertions(+), 47 deletions(-) delete mode 100644 .changeset/sandbox-cp-command.md delete mode 100644 .changeset/sandbox-exec-separator-fix.md delete mode 100644 .changeset/sandbox-get-hydrates-ports.md delete mode 100644 .changeset/sandbox-ls-and-exec-timeout.md delete mode 100644 .changeset/sandbox-streaming-and-disposal.md delete mode 100644 .changeset/sandbox-timeouts-file-ops.md delete mode 100644 .changeset/storage-behavioral-consistency.md diff --git a/.changeset/sandbox-cp-command.md b/.changeset/sandbox-cp-command.md deleted file mode 100644 index ca9ec68c..00000000 --- a/.changeset/sandbox-cp-command.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@bunny.net/cli": patch ---- - -feat(sandbox): add `bunny sandbox cp` to copy files between your machine and a sandbox over SFTP (`:` on either side). Uploads preserve the local file mode; a trailing slash or existing directory keeps the source filename. diff --git a/.changeset/sandbox-exec-separator-fix.md b/.changeset/sandbox-exec-separator-fix.md deleted file mode 100644 index 897f884d..00000000 --- a/.changeset/sandbox-exec-separator-fix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@bunny.net/cli": patch ---- - -fix(sandbox): `sandbox exec` now honors the documented `-- ` separator, and a repeatable `--env` flag no longer greedily swallows the command that follows it diff --git a/.changeset/sandbox-get-hydrates-ports.md b/.changeset/sandbox-get-hydrates-ports.md deleted file mode 100644 index 4a9eb671..00000000 --- a/.changeset/sandbox-get-hydrates-ports.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@bunny.net/sandbox": patch ---- - -fix(sandbox): Sandbox.get() recovers exposed port mappings from CDN endpoints so domain() works after reconnect diff --git a/.changeset/sandbox-ls-and-exec-timeout.md b/.changeset/sandbox-ls-and-exec-timeout.md deleted file mode 100644 index f2f0b9fa..00000000 --- a/.changeset/sandbox-ls-and-exec-timeout.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@bunny.net/cli": minor ---- - -feat(sandbox): add `bunny sandbox files list` (alias: `ls`) to list files in a sandbox directory over SFTP (bare name lists `/workplace`, or `:`), and `--timeout` on `bunny sandbox exec` to close the SSH connection and exit 124 after N seconds. diff --git a/.changeset/sandbox-streaming-and-disposal.md b/.changeset/sandbox-streaming-and-disposal.md deleted file mode 100644 index 83427b65..00000000 --- a/.changeset/sandbox-streaming-and-disposal.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@bunny.net/sandbox": patch ---- - -feat(sandbox): stream blocking command output via `onStdout`/`onStderr` callbacks (composes with `timeout`/`signal`), and support `using`/`await using` (Symbol.dispose/asyncDispose) to release the SSH connection when a sandbox leaves scope. diff --git a/.changeset/sandbox-timeouts-file-ops.md b/.changeset/sandbox-timeouts-file-ops.md deleted file mode 100644 index a9c35d38..00000000 --- a/.changeset/sandbox-timeouts-file-ops.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@bunny.net/sandbox": patch ---- - -feat(sandbox): runCommand timeout and AbortSignal cancellation, plus listFiles, deleteFile, rename, and exists file operations diff --git a/.changeset/storage-behavioral-consistency.md b/.changeset/storage-behavioral-consistency.md deleted file mode 100644 index 2ec24141..00000000 --- a/.changeset/storage-behavioral-consistency.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@bunny.net/cli": patch ---- - -fix(storage): shared TTY detection, non-interactive guard and cancel handling for zones update, aligned --force semantics, and linked-zone fallback for domains commands diff --git a/packages/cli-darwin-arm64/CHANGELOG.md b/packages/cli-darwin-arm64/CHANGELOG.md index e606f6ab..1bcf87f4 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.10.0 + ## 0.9.1 ## 0.9.0 diff --git a/packages/cli-darwin-arm64/package.json b/packages/cli-darwin-arm64/package.json index 5d41bfdd..cf4cb0a5 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.9.1", + "version": "0.10.0", "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 8e4fb4ad..03bdbfdd 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.10.0 + ## 0.9.1 ## 0.9.0 diff --git a/packages/cli-darwin-x64/package.json b/packages/cli-darwin-x64/package.json index 2203fce0..33d7df9e 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.9.1", + "version": "0.10.0", "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 da0a757a..d5793c22 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.10.0 + ## 0.9.1 ## 0.9.0 diff --git a/packages/cli-linux-arm64/package.json b/packages/cli-linux-arm64/package.json index 289a52e3..965fb541 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.9.1", + "version": "0.10.0", "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 0f696559..3e16da91 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.10.0 + ## 0.9.1 ## 0.9.0 diff --git a/packages/cli-linux-x64/package.json b/packages/cli-linux-x64/package.json index 3e10d1aa..ffc78b35 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.9.1", + "version": "0.10.0", "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 cf096b90..0132871a 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.10.0 + ## 0.9.1 ## 0.9.0 diff --git a/packages/cli-windows-x64/package.json b/packages/cli-windows-x64/package.json index 94e41762..44b4baa7 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.9.1", + "version": "0.10.0", "description": "bunny.net CLI binary for Windows x64", "os": [ "win32" diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 9efabe91..d027b83f 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,19 @@ # @bunny.net/cli +## 0.10.0 + +### Minor Changes + +- [#122](https://github.com/BunnyWay/cli/pull/122) [`27a1929`](https://github.com/BunnyWay/cli/commit/27a1929c0e3b8973c2c11cf4e19dba9f3360c43a) Thanks [@jamie-at-bunny](https://github.com/jamie-at-bunny)! - feat(sandbox): add `bunny sandbox files list` (alias: `ls`) to list files in a sandbox directory over SFTP (bare name lists `/workplace`, or `:`), and `--timeout` on `bunny sandbox exec` to close the SSH connection and exit 124 after N seconds. + +### Patch Changes + +- [#122](https://github.com/BunnyWay/cli/pull/122) [`27a1929`](https://github.com/BunnyWay/cli/commit/27a1929c0e3b8973c2c11cf4e19dba9f3360c43a) Thanks [@jamie-at-bunny](https://github.com/jamie-at-bunny)! - feat(sandbox): add `bunny sandbox cp` to copy files between your machine and a sandbox over SFTP (`:` on either side). Uploads preserve the local file mode; a trailing slash or existing directory keeps the source filename. + +- [#122](https://github.com/BunnyWay/cli/pull/122) [`27a1929`](https://github.com/BunnyWay/cli/commit/27a1929c0e3b8973c2c11cf4e19dba9f3360c43a) Thanks [@jamie-at-bunny](https://github.com/jamie-at-bunny)! - fix(sandbox): `sandbox exec` now honors the documented `-- ` separator, and a repeatable `--env` flag no longer greedily swallows the command that follows it + +- [#119](https://github.com/BunnyWay/cli/pull/119) [`dfbe849`](https://github.com/BunnyWay/cli/commit/dfbe849881a4446d2092aa9148fe0b552b1b6663) Thanks [@jamie-at-bunny](https://github.com/jamie-at-bunny)! - fix(storage): shared TTY detection, non-interactive guard and cancel handling for zones update, aligned --force semantics, and linked-zone fallback for domains commands + ## 0.9.1 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 31fe53de..be32129f 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@bunny.net/cli", - "version": "0.9.1", + "version": "0.10.0", "type": "module", "module": "src/index.ts", "bin": { @@ -29,11 +29,11 @@ "zod": "^4.3.6" }, "optionalDependencies": { - "@bunny.net/cli-linux-x64": "0.9.1", - "@bunny.net/cli-linux-arm64": "0.9.1", - "@bunny.net/cli-darwin-x64": "0.9.1", - "@bunny.net/cli-darwin-arm64": "0.9.1", - "@bunny.net/cli-windows-x64": "0.9.1" + "@bunny.net/cli-linux-x64": "0.10.0", + "@bunny.net/cli-linux-arm64": "0.10.0", + "@bunny.net/cli-darwin-x64": "0.10.0", + "@bunny.net/cli-darwin-arm64": "0.10.0", + "@bunny.net/cli-windows-x64": "0.10.0" }, "publishConfig": { "access": "public" diff --git a/packages/sandbox/CHANGELOG.md b/packages/sandbox/CHANGELOG.md index 5ae68d77..413f195f 100644 --- a/packages/sandbox/CHANGELOG.md +++ b/packages/sandbox/CHANGELOG.md @@ -1,5 +1,15 @@ # @bunny.net/sandbox +## 0.3.1 + +### Patch Changes + +- [`ad79781`](https://github.com/BunnyWay/cli/commit/ad797813d850fd39df048f8e1cfa3c0cc3598fcd) Thanks [@jamie-at-bunny](https://github.com/jamie-at-bunny)! - fix(sandbox): Sandbox.get() recovers exposed port mappings from CDN endpoints so domain() works after reconnect + +- [#122](https://github.com/BunnyWay/cli/pull/122) [`27a1929`](https://github.com/BunnyWay/cli/commit/27a1929c0e3b8973c2c11cf4e19dba9f3360c43a) Thanks [@jamie-at-bunny](https://github.com/jamie-at-bunny)! - feat(sandbox): stream blocking command output via `onStdout`/`onStderr` callbacks (composes with `timeout`/`signal`), and support `using`/`await using` (Symbol.dispose/asyncDispose) to release the SSH connection when a sandbox leaves scope. + +- [#122](https://github.com/BunnyWay/cli/pull/122) [`27a1929`](https://github.com/BunnyWay/cli/commit/27a1929c0e3b8973c2c11cf4e19dba9f3360c43a) Thanks [@jamie-at-bunny](https://github.com/jamie-at-bunny)! - feat(sandbox): runCommand timeout and AbortSignal cancellation, plus listFiles, deleteFile, rename, and exists file operations + ## 0.3.0 ### Minor Changes diff --git a/packages/sandbox/package.json b/packages/sandbox/package.json index fb263311..9707422c 100644 --- a/packages/sandbox/package.json +++ b/packages/sandbox/package.json @@ -1,6 +1,6 @@ { "name": "@bunny.net/sandbox", - "version": "0.3.0", + "version": "0.3.1", "type": "module", "main": "./dist/index.js", "module": "./dist/index.js",