Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions .changeset/sandbox-env-vars.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tame-pears-lick.md

This file was deleted.

2 changes: 2 additions & 0 deletions packages/cli-darwin-arm64/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @bunny.net/cli-darwin-arm64

## 0.9.0

## 0.8.1

## 0.8.0
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/cli-darwin-arm64",
"version": "0.8.1",
"version": "0.9.0",
"description": "bunny.net CLI binary for macOS arm64",
"os": [
"darwin"
Expand Down
2 changes: 2 additions & 0 deletions packages/cli-darwin-x64/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @bunny.net/cli-darwin-x64

## 0.9.0

## 0.8.1

## 0.8.0
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/cli-darwin-x64",
"version": "0.8.1",
"version": "0.9.0",
"description": "bunny.net CLI binary for macOS x64",
"os": [
"darwin"
Expand Down
2 changes: 2 additions & 0 deletions packages/cli-linux-arm64/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @bunny.net/cli-linux-arm64

## 0.9.0

## 0.8.1

## 0.8.0
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-linux-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/cli-linux-arm64",
"version": "0.8.1",
"version": "0.9.0",
"description": "bunny.net CLI binary for Linux arm64",
"os": [
"linux"
Expand Down
2 changes: 2 additions & 0 deletions packages/cli-linux-x64/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @bunny.net/cli-linux-x64

## 0.9.0

## 0.8.1

## 0.8.0
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-linux-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/cli-linux-x64",
"version": "0.8.1",
"version": "0.9.0",
"description": "bunny.net CLI binary for Linux x64",
"os": [
"linux"
Expand Down
2 changes: 2 additions & 0 deletions packages/cli-windows-x64/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @bunny.net/cli-windows-x64

## 0.9.0

## 0.8.1

## 0.8.0
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-windows-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/cli-windows-x64",
"version": "0.8.1",
"version": "0.9.0",
"description": "bunny.net CLI binary for Windows x64",
"os": [
"win32"
Expand Down
11 changes: 11 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @bunny.net/cli

## 0.9.0

### Minor Changes

- [#111](https://github.com/BunnyWay/cli/pull/111) [`87e2c3d`](https://github.com/BunnyWay/cli/commit/87e2c3d7f8021bece3a27fe371fa5d710a7cdb8e) Thanks [@amir-at-bunny](https://github.com/amir-at-bunny)! - feat(sandbox): add environment variable support
- SDK: `Sandbox` gains `getEnv`/`setEnv`/`unsetEnv` to read and persist container env vars after creation (merges with the existing set, preserves reserved keys).
- CLI: `sandbox create`, `sandbox exec`, and `sandbox ssh` accept `-e/--env KEY=VALUE` (repeatable) and `--env-file`. Vars on `create` are persisted; on `exec`/`ssh` they are temporary for that invocation.
- CLI: new `sandbox env` namespace (`set`/`list`/`delete`) to manage persisted env vars.

- [#98](https://github.com/BunnyWay/cli/pull/98) [`4aa8fbe`](https://github.com/BunnyWay/cli/commit/4aa8fbeecc5c69921abe43116a5f77ff69a178c4) Thanks [@jamie-at-bunny](https://github.com/jamie-at-bunny)! - feat(storage): add storage zone and file commands with S3-compatible credentials

## 0.8.1

### Patch Changes
Expand Down
12 changes: 6 additions & 6 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/cli",
"version": "0.8.1",
"version": "0.9.0",
"type": "module",
"module": "src/index.ts",
"bin": {
Expand Down Expand Up @@ -29,11 +29,11 @@
"zod": "^4.3.6"
},
"optionalDependencies": {
"@bunny.net/cli-linux-x64": "0.8.1",
"@bunny.net/cli-linux-arm64": "0.8.1",
"@bunny.net/cli-darwin-x64": "0.8.1",
"@bunny.net/cli-darwin-arm64": "0.8.1",
"@bunny.net/cli-windows-x64": "0.8.1"
"@bunny.net/cli-linux-x64": "0.9.0",
"@bunny.net/cli-linux-arm64": "0.9.0",
"@bunny.net/cli-darwin-x64": "0.9.0",
"@bunny.net/cli-darwin-arm64": "0.9.0",
"@bunny.net/cli-windows-x64": "0.9.0"
},
"publishConfig": {
"access": "public"
Expand Down
9 changes: 9 additions & 0 deletions packages/sandbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @bunny.net/sandbox

## 0.3.0

### Minor Changes

- [#111](https://github.com/BunnyWay/cli/pull/111) [`87e2c3d`](https://github.com/BunnyWay/cli/commit/87e2c3d7f8021bece3a27fe371fa5d710a7cdb8e) Thanks [@amir-at-bunny](https://github.com/amir-at-bunny)! - feat(sandbox): add environment variable support
- SDK: `Sandbox` gains `getEnv`/`setEnv`/`unsetEnv` to read and persist container env vars after creation (merges with the existing set, preserves reserved keys).
- CLI: `sandbox create`, `sandbox exec`, and `sandbox ssh` accept `-e/--env KEY=VALUE` (repeatable) and `--env-file`. Vars on `create` are persisted; on `exec`/`ssh` they are temporary for that invocation.
- CLI: new `sandbox env` namespace (`set`/`list`/`delete`) to manage persisted env vars.

## 0.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sandbox/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/sandbox",
"version": "0.2.1",
"version": "0.3.0",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
Expand Down