Skip to content
Merged
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
2 changes: 2 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
},
"changesets": [
"beige-dogs-melt",
"big-cats-worry",
"bumpy-keys-try",
"chilly-ducks-crash",
"clean-jeans-build",
Expand All @@ -26,6 +27,7 @@
"dirty-cows-talk",
"empty-trains-tie",
"fair-pears-dream",
"fluffy-ports-update",
"fresh-pumas-own",
"fresh-rings-rescue",
"funny-areas-boil",
Expand Down
11 changes: 11 additions & 0 deletions packages/sandbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# sandbox

## 3.0.0-beta.22

### Minor Changes

- Support new CLI --sandbox-snapshot parameter and new SDK static method Snapshot.fromSandbox(<sandbox-name>) ([#189](https://github.com/vercel/sandbox/pull/189))

### Patch Changes

- Updated dependencies [[`4a0ff5fb141597ff536b0ff900d595b92e8a6a6e`](https://github.com/vercel/sandbox/commit/4a0ff5fb141597ff536b0ff900d595b92e8a6a6e), [`ecfb31fddea2368ba20ec30de5ef836819f6b706`](https://github.com/vercel/sandbox/commit/ecfb31fddea2368ba20ec30de5ef836819f6b706)]:
- @vercel/sandbox@2.0.0-beta.20

## 3.0.0-beta.21

### Patch Changes
Expand Down
4 changes: 3 additions & 1 deletion packages/sandbox/docs/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## `sandbox --help`

```
sandbox 3.0.0-beta.21
sandbox 3.0.0-beta.22

▲ sandbox [options] <command>

Expand Down Expand Up @@ -86,6 +86,7 @@ Options:
--vcpus <COUNT> Number of vCPUs to allocate (each vCPU includes 2048 MB of memory) [optional]
--publish-port <PORT>, -p=<PORT> Publish sandbox port(s) to DOMAIN.vercel.run
--snapshot, -s <snapshot_id> Start the sandbox from a snapshot ID [optional]
--sandbox-snapshot <name> Start the sandbox from another sandbox's current snapshot [optional]
--env <key=value>, -e=<key=value> Environment variables to set for the command
--tag <key=value>, -t=<key=value> Key-value tags to associate with the sandbox (e.g. --tag env=staging)
--snapshot-expiration <DURATION|none> Default snapshot expiration. Use "none" or 0 for no expiration. Example: 7d, 30d [optional]
Expand Down Expand Up @@ -140,6 +141,7 @@ Options:
--vcpus <COUNT> Number of vCPUs to allocate (each vCPU includes 2048 MB of memory) [optional]
--publish-port <PORT>, -p=<PORT> Publish sandbox port(s) to DOMAIN.vercel.run
--snapshot, -s <snapshot_id> Start the sandbox from a snapshot ID [optional]
--sandbox-snapshot <name> Start the sandbox from another sandbox's current snapshot [optional]
--env <key=value>, -e=<key=value> Default environment variables for sandbox commands
--tag <key=value>, -t=<key=value> Key-value tags to associate with the sandbox (e.g. --tag env=staging)
--snapshot-expiration <DURATION|none> Default snapshot expiration. Use "none" or 0 for no expiration. Example: 7d, 30d [optional]
Expand Down
2 changes: 1 addition & 1 deletion packages/sandbox/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sandbox",
"description": "Command line interface for Vercel Sandbox",
"version": "3.0.0-beta.21",
"version": "3.0.0-beta.22",
"scripts": {
"clean": "rm -rf node_modules dist",
"sandbox": "ts-node ./src/sandbox.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/vercel-sandbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @vercel/sandbox

## 2.0.0-beta.20

### Minor Changes

- Support new CLI --sandbox-snapshot parameter and new SDK static method Snapshot.fromSandbox(<sandbox-name>) ([#189](https://github.com/vercel/sandbox/pull/189))

- Add sandbox port replacement support through `update`. ([#177](https://github.com/vercel/sandbox/pull/177))

## 2.0.0-beta.19

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vercel-sandbox/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vercel/sandbox",
"version": "2.0.0-beta.19",
"version": "2.0.0-beta.20",
"description": "Software Development Kit for Vercel Sandbox",
"type": "module",
"main": "dist/index.cjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/vercel-sandbox/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Autogenerated by inject-version.ts
export const VERSION = "2.0.0-beta.19";
export const VERSION = "2.0.0-beta.20";
Loading