# Vercel Sandbox 2.0.0-beta.24 - Product: Vercel Sandbox (https://whatsnew.fyi/product/vercel-sandbox) - Vendor: Vercel - Date: 2026-05-22 - Version: 2.0.0-beta.24 - Original notes: https://github.com/vercel/sandbox/releases/tag/%40vercel/sandbox%402.0.0-beta.24 - Permalink: https://whatsnew.fyi/product/vercel-sandbox/releases/2.0.0-beta.24 - Labels: Pre-release What's New is an index, not a publisher: every entry below links to the vendor's own release notes, which are the authoritative source. Entries are labelled where they are hand-curated sample data, pre-releases, or drawn from a secondary source such as a developer blog. Reuse: the summaries, labels and curation here are © What's New. Quote freely with attribution and a link back; wholesale republication of the corpus is not permitted — terms: https://whatsnew.fyi/terms. The vendors' own release notes remain their publishers'. --- - **added** — Add Sandbox.fork(...) to the SDK and sandbox fork to the CLI for forking an existing sandbox into a new one - **added** — Fork copies config parameters resources (vcpus), timeout, networkPolicy, tags, ports, persistent, snapshotExpiration, keepLastSnapshots and allows the caller to override any of them - **removed** — Remove sandbox create --sandbox-snapshot and Snapshot.fromSandbox(name), use sandbox fork / Sandbox.fork({ sourceSandbox: name }) instead - **changed** — Raw snapshot IDs are now supported via sandbox create --snapshot and Sandbox.create({ source: { type: "snapshot", snapshotId } }) ###### Minor Changes - Add `Sandbox.fork(...)` to the SDK and `sandbox fork ` to the CLI for forking an existing sandbox into a new one. The fork copies as many config parameters as the server exposes — `resources` (vcpus), `timeout`, `networkPolicy`, `tags`, `ports`, `persistent`, `snapshotExpiration`, `keepLastSnapshots` — and lets the caller override any of them. Environment variables are not copied (encrypted server-side) and must be re-supplied via `env` / `--env`. ([#205](https://github.com/vercel/sandbox/pull/205)) **Breaking**: removed `sandbox create --sandbox-snapshot ` and `Snapshot.fromSandbox(name)`. Use `sandbox fork ` / `Sandbox.fork({ sourceSandbox: name })` instead. Raw snapshot IDs are still supported via `sandbox create --snapshot ` and `Sandbox.create({ source: { type: "snapshot", snapshotId } })`.