From d67e6bc337e138e69d6ec9bfa7387ea78aa24f10 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 17 Apr 2026 14:53:10 +0000 Subject: [PATCH] Version Packages --- .changeset/some-numbers-arrive.md | 5 ----- packages/sandbox/CHANGELOG.md | 6 ++++++ packages/sandbox/docs/index.md | 6 +++--- packages/sandbox/package.json | 2 +- 4 files changed, 10 insertions(+), 9 deletions(-) delete mode 100644 .changeset/some-numbers-arrive.md diff --git a/.changeset/some-numbers-arrive.md b/.changeset/some-numbers-arrive.md deleted file mode 100644 index 61b942e..0000000 --- a/.changeset/some-numbers-arrive.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"sandbox": patch ---- - -Improve timeout hour format and example values diff --git a/packages/sandbox/CHANGELOG.md b/packages/sandbox/CHANGELOG.md index 46f8477..333654b 100644 --- a/packages/sandbox/CHANGELOG.md +++ b/packages/sandbox/CHANGELOG.md @@ -1,5 +1,11 @@ # sandbox +## 2.5.11 + +### Patch Changes + +- Improve timeout hour format and example values ([#150](https://github.com/vercel/sandbox/pull/150)) + ## 2.5.10 ### Patch Changes diff --git a/packages/sandbox/docs/index.md b/packages/sandbox/docs/index.md index 31c39bf..a0075bc 100644 --- a/packages/sandbox/docs/index.md +++ b/packages/sandbox/docs/index.md @@ -1,7 +1,7 @@ ## `sandbox --help` ``` -sandbox 2.5.10 +sandbox 2.5.11 ▲ sandbox [options] @@ -70,7 +70,7 @@ Create and run a command in a sandbox Options: --runtime One of 'node22', 'node24', 'python3.13' [default: node24] - --timeout The maximum duration a sandbox can run for. Example: 5m, 1h [default: 5 minutes] + --timeout The maximum duration a sandbox can run for. Example: 5m, 30m [default: 5 minutes] --vcpus Number of vCPUs to allocate (each vCPU includes 2048 MB of memory) [optional] --publish-port , -p= Publish sandbox port(s) to DOMAIN.vercel.run --snapshot, -s Start the sandbox from a snapshot ID [optional] @@ -119,7 +119,7 @@ Create a sandbox in the specified account and project. Options: --runtime One of 'node22', 'node24', 'python3.13' [default: node24] - --timeout The maximum duration a sandbox can run for. Example: 5m, 1h [default: 5 minutes] + --timeout The maximum duration a sandbox can run for. Example: 5m, 30m [default: 5 minutes] --vcpus Number of vCPUs to allocate (each vCPU includes 2048 MB of memory) [optional] --publish-port , -p= Publish sandbox port(s) to DOMAIN.vercel.run --snapshot, -s Start the sandbox from a snapshot ID [optional] diff --git a/packages/sandbox/package.json b/packages/sandbox/package.json index 6f80b5c..00aace4 100644 --- a/packages/sandbox/package.json +++ b/packages/sandbox/package.json @@ -1,7 +1,7 @@ { "name": "sandbox", "description": "Command line interface for Vercel Sandbox", - "version": "2.5.10", + "version": "2.5.11", "scripts": { "clean": "rm -rf node_modules dist", "sandbox": "ts-node ./src/sandbox.ts",