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: openbootdotdev/openboot
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.58.14
Choose a base ref
...
head repository: openbootdotdev/openboot
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.58.15
Choose a head ref
  • 1 commit
  • 27 files changed
  • 1 contributor

Commits on May 27, 2026

  1. fix: wrap all bare error returns with context (#107)

    * refactor: replace interface{} with typed CaptureResults in snapshot capture
    
    * fix: wrap all bare error returns with context
    
    Wrap ~80 bare `return err` and `return nil, err` statements across 24
    production files with `fmt.Errorf("context: %w", err)` to satisfy the
    project convention of never returning unwrapped errors.
    
    Four intentional exceptions remain:
    - dotfiles.go:301 — filepath.WalkDir callback convention
    - install.go:150 — installer.Run already wraps thoroughly
    - installer.go:226 — Apply already wraps thoroughly
    - auth/login.go:154 — pollOnce returns user-facing messages
    
    Also reverted wrapping in listBackupsSorted since callers check
    os.IsNotExist (which does not traverse %w chains).
    fullstackjam authored May 27, 2026
    Configuration menu
    Copy the full SHA
    83f0b5c View commit details
    Browse the repository at this point in the history
Loading