close
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: denoland/deploy-cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: denoland/deploy-cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: sandbox-quickstart
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 11 commits
  • 2 files changed
  • 1 contributor

Commits on Feb 9, 2026

  1. feat: add sandbox quickstart command

    Add `deno sandbox quickstart` to create pre-configured snapshots
    from popular tools. Supports 5 presets (Python, Node.js, Data Science,
    Web Tools, System Tools) plus a custom multi-select flow. Includes
    non-interactive mode via --preset flag for scripting.
    John Donmoyer committed Feb 9, 2026
    Configuration menu
    Copy the full SHA
    c8b97f0 View commit details
    Browse the repository at this point in the history
  2. add optional verbose output

    John Donmoyer committed Feb 9, 2026
    Configuration menu
    Copy the full SHA
    ec0d360 View commit details
    Browse the repository at this point in the history
  3. snapshot working

    John Donmoyer committed Feb 9, 2026
    Configuration menu
    Copy the full SHA
    34aacf5 View commit details
    Browse the repository at this point in the history
  4. remove volume cleanup

    John Donmoyer committed Feb 9, 2026
    Configuration menu
    Copy the full SHA
    e304521 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2026

  1. add SSH example to quickstart success output

    John Donmoyer committed Feb 10, 2026
    Configuration menu
    Copy the full SHA
    27a6f81 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2026

  1. Merge origin/main into sandbox-quickstart

    John Donmoyer committed Feb 23, 2026
    Configuration menu
    Copy the full SHA
    6045ec5 View commit details
    Browse the repository at this point in the history
  2. fmt

    John Donmoyer committed Feb 23, 2026
    Configuration menu
    Copy the full SHA
    aee88fd View commit details
    Browse the repository at this point in the history
  3. fix: prevent resource leaks and silent failures in quickstart

    - Use throw instead of error() inside try blocks so the finally block
      runs sandbox cleanup instead of exiting immediately
    - Make snapshot failure exit non-zero instead of silently succeeding
    - Log errors in sandbox teardown catch blocks instead of swallowing them
    John Donmoyer committed Feb 23, 2026
    Configuration menu
    Copy the full SHA
    391326c View commit details
    Browse the repository at this point in the history
  4. refactor: simplify quickstart command

    - Extract runInSandbox helper for repeated spawn/status pattern
    - Fix step counter off-by-one (totalSteps counted 2 base but only 1 used)
    - Simplify install summary, prompt, and package loop
    - Use Set for setup command dedup to match package dedup
    - Remove empty try/finally and unnecessary snapshotCreated flag
    - Remove unused context parameter from buildSnapshot
    John Donmoyer committed Feb 23, 2026
    Configuration menu
    Copy the full SHA
    15c1773 View commit details
    Browse the repository at this point in the history
  5. fix: improve error handling and comment accuracy in quickstart

    - Stop spinner on volume/sandbox creation failures for clean output
    - Include orphaned volume cleanup instructions when sandbox boot fails
    - Track failed setup commands and warn that snapshot will be incomplete
    - Fix misleading "temporary volume" comments (volume is kept permanently)
    John Donmoyer committed Feb 23, 2026
    Configuration menu
    Copy the full SHA
    267c534 View commit details
    Browse the repository at this point in the history
  6. fmt

    John Donmoyer committed Feb 23, 2026
    Configuration menu
    Copy the full SHA
    7a3b881 View commit details
    Browse the repository at this point in the history
Loading