3.2.0
Added 1
- Add a deleteOrphanSnapshots option when deleting a sandbox to also delete snapshots that no other sandbox uses
Changed 1
- Deleting a persistent sandbox now supports cleaning up orphaned snapshots via the SDK and CLI, defaulting to false to preserve existing behavior
From Vercel Sandbox
Minor Changes
-
Add a
deleteOrphanSnapshotsoption when deleting a sandbox. (#316)Deleting a persistent sandbox left all of its snapshots alive until they expired.
sandbox.delete({ deleteOrphanSnapshots: true })in the SDK andsandbox remove <name> --delete-orphan-snapshotsin the CLI now also delete the snapshots of that sandbox that no other sandbox uses. It defaults tofalse, so the existing behaviour is unchanged.