feat(sdk,cli): allow mounting drive from snapshot - #331
Merged
Merged
Conversation
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
QuiiBz
force-pushed
the
drives/snapshots
branch
from
September 8, 2026 13:59
5259bb9 to
f506df8
Compare
QuiiBz
marked this pull request as ready for review
September 8, 2026 14:06
marc-vercel
approved these changes
Sep 8, 2026
Merged
QuiiBz
pushed a commit
that referenced
this pull request
Sep 10, 2026
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to drives-beta, this PR will be updated.⚠️ ⚠️ ⚠️ ⚠️ ⚠️ ⚠️ `drives-beta` is currently in **pre mode** so this branch has prereleases rather than normal releases. If you want to exit prereleases, run `changeset pre exit` on `drives-beta`.⚠️ ⚠️ ⚠️ ⚠️ ⚠️ ⚠️ # Releases ## sandbox@4.4.0-beta.0 ### Minor Changes - `read-only` mounts have been replaced by snapshots: you can now mount the same drive on many sandboxes at once, using read-only snapshots: ([#331](#331)) ```ts const drive = await Drive.getOrCreate({ name: "test" }); await Sandbox.create({ mounts: { "/data": drive.snapshot(), }, }); ``` To mount a drive as `read-write`, simply pass in the drive object: ```ts await Sandbox.create({ mounts: { "/data": drive, }, }); ``` ### Patch Changes - Updated dependencies [[`f45a57b1c6b022f751c3ea43cf23920e6e0d8489`](f45a57b)]: - @vercel/sandbox@3.4.0-beta.0 ## @vercel/sandbox@3.4.0-beta.0 ### Minor Changes - `read-only` mounts have been replaced by snapshots: you can now mount the same drive on many sandboxes at once, using read-only snapshots: ([#331](#331)) ```ts const drive = await Drive.getOrCreate({ name: "test" }); await Sandbox.create({ mounts: { "/data": drive.snapshot(), }, }); ``` To mount a drive as `read-write`, simply pass in the drive object: ```ts await Sandbox.create({ mounts: { "/data": drive, }, }); ``` ## @vercel/sandbox-mock@3.4.0-beta.0 ### Minor Changes - `read-only` mounts have been replaced by snapshots: you can now mount the same drive on many sandboxes at once, using read-only snapshots: ([#331](#331)) ```ts const drive = await Drive.getOrCreate({ name: "test" }); await Sandbox.create({ mounts: { "/data": drive.snapshot(), }, }); ``` To mount a drive as `read-write`, simply pass in the drive object: ```ts await Sandbox.create({ mounts: { "/data": drive, }, }); ``` ### Patch Changes - Updated dependencies [[`f45a57b1c6b022f751c3ea43cf23920e6e0d8489`](f45a57b)]: - @vercel/sandbox@3.4.0-beta.0 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
read-onlymounts have been replaced by snapshots: you can now mount the same drive on many sandboxes at once, using read-only snapshots:To mount a drive as
read-write, simply pass in the drive object: