Vercel Sandbox Updates & Release Notes
133 updates curated from 1 source by the Releasebot Team. Last updated: Aug 21, 2026
- Aug 21, 2026
- Date parsed from source:Aug 21, 2026
- First seen by Releasebot:Aug 21, 2026
@vercel/[email protected]
Vercel Sandbox adds multi-region support with new region and failover region options across SDK and CLI workflows, plus clearer region getters, default region handling, and expanded region visibility in sandbox and snapshot lists.
Minor Changes
Add multi-region support: (#301)
New region and failoverRegions options on sandbox create, fork, and update (SDK), with matching flags on sandbox create, fork, run, sh, and the sandbox config region / sandbox config failover-regions commands (CLI).
New failoverRegions getter on Sandbox and regions getter on Snapshot.
Regions are now shown in sandbox ls, sessions list, snapshots list/get, sandbox config list, and the create/fork summary.
Sandbox.region and Sandbox.failoverRegions no longer return undefined: the getters now report the platform defaults (iad1 and []) when the API omits the fields, so their types are string and string[]. The new DEFAULT_SANDBOX_REGION export makes the default region readable. (#301)
Patch Changes
Updated dependencies [2997ecc32a77c145289fbbd89ae2dc0214767ae3, 2997ecc32a77c145289fbbd89ae2dc0214767ae3, 2023195eafe3199c2372f7dad8bfaf0878267c52]:
@vercel/[email protected]
Original source - Aug 21, 2026
- Date parsed from source:Aug 21, 2026
- First seen by Releasebot:Aug 21, 2026
@vercel/[email protected]
Vercel Sandbox adds multi-region support with new region and failoverRegions options across SDK and CLI, plus clearer region defaults, updated getters, and region visibility in lists and summaries. It also adds a mock for the Drive class.
Minor Changes
Add multi-region support: (#301)
New region and failoverRegions options on sandbox create, fork, and update (SDK), with matching flags on sandbox create, fork, run, sh, and the sandbox config region / sandbox config failover-regions commands (CLI).
New failoverRegions getter on Sandbox and regions getter on Snapshot.
Regions are now shown in sandbox ls, sessions list, snapshots list/get, sandbox config list, and the create/fork summary.
Sandbox.region and Sandbox.failoverRegions no longer return undefined: the getters now report the platform defaults (iad1 and []) when the API omits the fields, so their types are string and string[]. The new DEFAULT_SANDBOX_REGION export makes the default region readable. (#301)
Patch Changes
Add mock for the Drive class. (#307)
Updated dependencies [c2b5d7b45340b485264abb82f0cd640ed4e93293, 2997ecc32a77c145289fbbd89ae2dc0214767ae3, 2997ecc32a77c145289fbbd89ae2dc0214767ae3, 2023195eafe3199c2372f7dad8bfaf0878267c52]:
@vercel/[email protected]
Original source All of your release notes in one feed
Join Releasebot and get updates from Vercel and hundreds of other software products.
- Aug 21, 2026
- Date parsed from source:Aug 21, 2026
- First seen by Releasebot:Aug 21, 2026
@vercel/[email protected]
Vercel Sandbox adds multi-region support across SDK and CLI, with region and failover region options, new getters, and region visibility in listings and summaries. It also improves proxy caching to prevent unbounded memory usage.
Minor Changes
- Add multi-region support: (#301)
- New region and failoverRegions options on sandbox create, fork, and update (SDK), with matching flags on sandbox create, fork, run, sh, and the sandbox config region / sandbox config failover-regions commands (CLI).
- New failoverRegions getter on Sandbox and regions getter on Snapshot.
- Regions are now shown in sandbox ls, sessions list, snapshots list/get, sandbox config list, and the create/fork summary.
- Sandbox.region and Sandbox.failoverRegions no longer return undefined: the getters now report the platform defaults (iad1 and []) when the API omits the fields, so their types are string and string[]. The new DEFAULT_SANDBOX_REGION export makes the default region readable. (#301)
Patch Changes
- Update defineSandboxProxy to limit the JWKS issuer cache size to prevent unbounded memory usage. (#309)
- Aug 21, 2026
- Date parsed from source:Aug 21, 2026
- First seen by Releasebot:Aug 21, 2026
@vercel/[email protected]
Vercel Sandbox adds multi-region support for drives and sandboxes, with new region and failover region options across the SDK and CLI. It also improves region visibility, adds default region handling, and includes a patch to limit JWKS issuer cache growth.
Minor Changes
Add multi-region support for drives: (#307)
Set the region field when creating a new drive, or use the --region flag in the CLI.
You can retrieve the region of a drive using the region getter on the Drive class.
Drives can be only be mounted to sandboxes running on the same region.
Add multi-region support: (#301)
New region and failoverRegions options on sandbox create, fork, and update (SDK), with matching flags on sandbox create, fork, run, sh, and the sandbox config region / sandbox config failover-regions commands (CLI).
New failoverRegions getter on Sandbox and regions getter on Snapshot.
Regions are now shown in sandbox ls, sessions list, snapshots list/get, sandbox config list, and the create/fork summary.
Sandbox.region and Sandbox.failoverRegions no longer return undefined: the getters now report the platform defaults (iad1 and []) when the API omits the fields, so their types are string and string[]. The new DEFAULT_SANDBOX_REGION export makes the default region readable. (#301)
Patch Changes
Update defineSandboxProxy to limit the JWKS issuer cache size to prevent unbounded memory usage. (#309)
Original source - Aug 21, 2026
- Date parsed from source:Aug 21, 2026
- First seen by Releasebot:Aug 21, 2026
Vercel Sandbox adds multi-region support across the SDK and CLI, with new region and failoverRegions options, improved defaults, and clearer region display in lists and summaries. It also fixes failover-region handling so none works consistently for create, run, fork, and config.
Minor Changes
- Add multi-region support: (#301)
- New region and failoverRegions options on sandbox create, fork, and update (SDK), with matching flags on sandbox create, fork, run, sh, and the sandbox config region / sandbox config failover-regions commands (CLI).
- New failoverRegions getter on Sandbox and regions getter on Snapshot.
- Regions are now shown in sandbox ls, sessions list, snapshots list/get, sandbox config list, and the create/fork summary.
Patch Changes
- Accept none for --failover-regions on sandbox create, sandbox run and sandbox fork. (#310)
sandbox config failover-regions <name> none already clears the list, but at creation time
none was forwarded as a literal region name and rejected by the API. With a project-level
default failover list there was no way to create a sandbox in one of those regions from the
CLI, while the SDK and the HTTP API both accept an empty failoverRegions array.The none sentinel is now shared between create/run/fork and config.
- Sandbox.region and Sandbox.failoverRegions no longer return undefined: the getters now report the platform defaults (iad1 and []) when the API omits the fields, so their types are string and string[]. The new DEFAULT_SANDBOX_REGION export makes the default region readable. (#301)
Updated dependencies [2997ecc32a77c145289fbbd89ae2dc0214767ae3, 2997ecc32a77c145289fbbd89ae2dc0214767ae3, 2023195eafe3199c2372f7dad8bfaf0878267c52]:
Original source
@vercel/[email protected] Similar to Vercel Sandbox with recent updates:
- Claude Code updates425 release notes · Latest Aug 22, 2026
- Claude updates129 release notes · Latest Aug 21, 2026
- Anthropic updates57 release notes · Latest Aug 14, 2026
- ChatGPT updates209 release notes · Latest Aug 21, 2026
- Gemini updates395 release notes · Latest Aug 20, 2026
- Codex updates214 release notes · Latest Aug 20, 2026
- Aug 21, 2026
- Date parsed from source:Aug 21, 2026
- First seen by Releasebot:Aug 21, 2026
Vercel Sandbox adds multi-region support for drives and sandbox workflows, with new region and failover region options in the SDK and CLI, plus clearer region reporting across listings, summaries, and getters.
Minor Changes
Add multi-region support for drives: (#307)
Set the region field when creating a new drive, or use the --region flag in the CLI.
You can retrieve the region of a drive using the region getter on the Drive class.
Drives can be only be mounted to sandboxes running on the same region.
Add multi-region support: (#301)
New region and failoverRegions options on sandbox create, fork, and update (SDK), with matching flags on sandbox create, fork, run, sh, and the sandbox config region / sandbox config failover-regions commands (CLI).
New failoverRegions getter on Sandbox and regions getter on Snapshot.
Regions are now shown in sandbox ls, sessions list, snapshots list/get, sandbox config list, and the create/fork summary.
Patch Changes
Sandbox.region and Sandbox.failoverRegions no longer return undefined: the getters now report the platform defaults (iad1 and []) when the API omits the fields, so their types are string and string[]. The new DEFAULT_SANDBOX_REGION export makes the default region readable. (#301)
Updated dependencies [c2b5d7b45340b485264abb82f0cd640ed4e93293, 2997ecc32a77c145289fbbd89ae2dc0214767ae3, 2997ecc32a77c145289fbbd89ae2dc0214767ae3, 2023195eafe3199c2372f7dad8bfaf0878267c52]:
@vercel/[email protected]
Original source - Aug 20, 2026
- Date parsed from source:Aug 20, 2026
- First seen by Releasebot:Aug 20, 2026
@vercel/[email protected]
Vercel Sandbox ships a patch update with refreshed dependencies.
Patch Changes
Updated dependencies [0d3b1aa410454b20562ea010cd66611a9a477b2d, bd4110aa6231a2e845630cc02e9d69cb02fb28ad, 2c2c942239fd9ef47bed0b9295389b702ce6c0ff]:
@vercel/[email protected]
Original source - Aug 20, 2026
- Date parsed from source:Aug 20, 2026
- First seen by Releasebot:Aug 20, 2026
@vercel/[email protected]
Vercel Sandbox ships patch updates that surface clearer API error messages, so failed requests now include the actionable server detail. It also corrects JSDoc for the ports limit and the Sandbox.get and Sandbox.getOrCreate resume default, aligning docs with API behavior.
Patch Changes
Surface the server's error message in APIError.message. Failed API requests previously reported only Status code 400 is not ok, hiding the actionable detail (e.g. Invalid request:
portsshould NOT have more than 15 items.) in error.json. The message now includes it directly. (#291)Correct the ports option JSDoc: the limit is 15 ports (matching the docs and API validation), not 4. (#292)
Correct the resume option JSDoc on Sandbox.get and Sandbox.getOrCreate: the default is false (the client omits the param and the API defaults to not resuming), not true. A stopped persistent sandbox still auto-resumes on the first SDK call that needs a running session. (#293)
Original source - Aug 20, 2026
- Date parsed from source:Aug 20, 2026
- First seen by Releasebot:Aug 20, 2026
Vercel Sandbox improves CLI feedback with quieter 404 errors, clearer connect hints after create and fork, better guidance for sandbox sh commands, and a cached version check that warns when the CLI is outdated without slowing command startup.
Patch Changes
- Sandbox-lookup 404 errors are now quiet and actionable: the error states the name was not found, the status code, and a closing hint to run
sandbox ls --all. The request URL and response-buffer path move behindDEBUG=sandbox:errors. (#298) - create and fork output now ends with a connect hint (connect with:
sandbox ssh <name>), so a fresh sandbox never leaves you without a next step. Composing commands likerunsuppress it. (#296) sandbox sh <command>now explains thatshtakes no command and points atsandbox run -i <command>. (#299)- create, sh, and run check for a newer published CLI and print an update notice when the install is behind. The result is cached to a file and refreshed at most once per hour; when a lookup does run it happens concurrently with sandbox creation and is aborted as the command finishes, so it never adds latency or delays exit. Disable with
SANDBOX_SKIP_VERSION_CHECK=1. (#297) - Updated dependencies [0d3b1aa410454b20562ea010cd66611a9a477b2d, bd4110aa6231a2e845630cc02e9d69cb02fb28ad, 2c2c942239fd9ef47bed0b9295389b702ce6c0ff]:
@vercel/[email protected]
- Aug 10, 2026
- Date parsed from source:Aug 10, 2026
- First seen by Releasebot:Aug 5, 2026
- Modified by Releasebot:Aug 11, 2026
Vercel Sandbox adds drive support with a new Drive class and CLI commands.
Minor Changes
- Add support for drives via a new Drive class and CLI commands. (#196)
Patch Changes
- Updated dependencies [6405a3836fb1934da8620e5597042509229c7f35]:
- @vercel/[email protected]
- Aug 7, 2026
- Date parsed from source:Aug 7, 2026
- First seen by Releasebot:Aug 8, 2026
@vercel/[email protected]
Vercel Sandbox adds support for Vercel Managed Images and shifts sandboxes to a new Ubuntu-based Universal default with Node.js 24, Bun, Python 3.14, coding agents, and common dev tools. Runtime-based creation is deprecated in the SDK and CLI, with legacy v2 support retained.
Major Changes
Add support for Vercel Managed Images and deprecate the runtime option in the SDK and CLI. Runtime-based creation remains supported through the legacy v2 API; image-based and default creation use the v3 API. Passing both runtime and image is an error. (#276)
Sandboxes that do not specify an image now use vercel/sandbox/universal. The previous default was the node24 runtime on Amazon Linux 2023. The new default is based on Ubuntu and includes Node.js 24, Bun, Python 3.14, coding agents, and common development and debugging tools.
Existing runtime calls continue to work, it's recommended to migrate to Vercel managed images when possible:
- Not using runtime: omit image to use the new Universal image, or set image: "vercel/sandbox/node:24" for an Ubuntu-based Node.js equivalent to the previous default.
- Using runtime: "node22": use image: "vercel/sandbox/node:22" for an Ubuntu-based equivalent.
- Using runtime: "node24": use image: "vercel/sandbox/node:24" for an Ubuntu-based equivalent.
- Using runtime: "node26": use image: "vercel/sandbox/node:26" for an Ubuntu-based equivalent.
- Using runtime: "python3.13": use image: "vercel/sandbox/python:3.14" for an Ubuntu-based equivalent, and note the Python version upgrade.
Patch Changes
Updated dependencies [5c9e2d5f34f20632ed5a1de1288e811b67b95423]:
- @vercel/[email protected]
- Aug 7, 2026
- Date parsed from source:Aug 7, 2026
- First seen by Releasebot:Aug 8, 2026
@vercel/[email protected]
Vercel Sandbox adds support for Vercel Managed Images, deprecates the runtime option in the SDK and CLI, and introduces a new default Universal image. It also updates sandbox creation paths and recommends image-based migrations for Node.js and Python users.
Major Changes
Add support for Vercel Managed Images and deprecate the runtime option in the SDK and CLI. Runtime-based creation remains supported through the legacy v2 API; image-based and default creation use the v3 API. Passing both runtime and image is an error. (#276)
Sandboxes that do not specify an image now use vercel/sandbox/universal. The previous default was the node24 runtime on Amazon Linux 2023. The new default is based on Ubuntu and includes Node.js 24, Bun, Python 3.14, coding agents, and common development and debugging tools.
Existing runtime calls continue to work, it's recommended to migrate to Vercel managed images when possible:
- Not using runtime: omit image to use the new Universal image, or set image: "vercel/sandbox/node:24" for an Ubuntu-based Node.js equivalent to the previous default.
- Using runtime: "node22": use image: "vercel/sandbox/node:22" for an Ubuntu-based equivalent.
- Using runtime: "node24": use image: "vercel/sandbox/node:24" for an Ubuntu-based equivalent.
- Using runtime: "node26": use image: "vercel/sandbox/node:26" for an Ubuntu-based equivalent.
- Using runtime: "python3.13": use image: "vercel/sandbox/python:3.14" for an Ubuntu-based equivalent, and note the Python version upgrade.
- Aug 7, 2026
- Date parsed from source:Aug 7, 2026
- First seen by Releasebot:Aug 8, 2026
Vercel Sandbox adds support for Vercel Managed Images and moves default sandboxes to a new Ubuntu-based Universal image with Node.js 24, Bun, Python 3.14, coding agents, and dev tools. It also deprecates the runtime option in the SDK and CLI and updates help examples.
Major Changes
Add support for Vercel Managed Images and deprecate the runtime option in the SDK and CLI. Runtime-based creation remains supported through the legacy v2 API; image-based and default creation use the v3 API. Passing both runtime and image is an error. (#276)
Sandboxes that do not specify an image now use vercel/sandbox/universal. The previous default was the node24 runtime on Amazon Linux 2023. The new default is based on Ubuntu and includes Node.js 24, Bun, Python 3.14, coding agents, and common development and debugging tools.
Existing runtime calls continue to work, it's recommended to migrate to Vercel managed images when possible:
- Not using runtime: omit image to use the new Universal image, or set image: "vercel/sandbox/node:24" for an Ubuntu-based Node.js equivalent to the previous default.
- Using runtime: "node22": use image: "vercel/sandbox/node:22" for an Ubuntu-based equivalent.
- Using runtime: "node24": use image: "vercel/sandbox/node:24" for an Ubuntu-based equivalent.
- Using runtime: "node26": use image: "vercel/sandbox/node:26" for an Ubuntu-based equivalent.
- Using runtime: "python3.13": use image: "vercel/sandbox/python:3.14" for an Ubuntu-based equivalent, and note the Python version upgrade.
Patch Changes
Use the invoked app name in help examples so vercel sandbox --help shows vercel sandbox ... commands instead of the standalone sandbox ... form, which is not on PATH for Vercel CLI users. (#269)
Updated dependencies [5c9e2d5f34f20632ed5a1de1288e811b67b95423]:
- @vercel/[email protected]
- Aug 4, 2026
- Date parsed from source:Aug 4, 2026
- First seen by Releasebot:Aug 5, 2026
@vercel/[email protected]
Vercel Sandbox adds a patch change that re-exports the Drive API from the mock package.
- Jul 30, 2026
- Date parsed from source:Jul 30, 2026
- First seen by Releasebot:Jul 31, 2026
@vercel/[email protected]
Vercel Sandbox ships a patch update with refreshed dependencies.
Patch Changes
Updated dependencies [2bd5c12d0681ef93c530c97d35564d3d625fd0f3]:
- @vercel/[email protected]
Curated by the Releasebot team
Releasebot is an aggregator of official product update announcements from hundreds of software vendors and thousands of sources.
Our editorial process involves the manual review and audit of release notes procured with the help of automated systems.