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: getsentry/sentry-cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.37.0
Choose a base ref
...
head repository: getsentry/sentry-cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.38.1
Choose a head ref
  • 10 commits
  • 25 files changed
  • 4 contributors

Commits on Oct 7, 2024

  1. Merge branch 'release/2.37.0'

    getsentry-bot
    getsentry-bot committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    df403cd View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2024

  1. fix(crons): Don't panic when passing --auth-token (#2172)

    The --auth-token argument is hidden from the sentry-cli monitors run subcommand since the command uses DSN authentication, however passing the argument is still possible (it is simply ignored).
    
    However, providing this argument causes a panic with a not-very-user-friendly message, since the argument was defined here without the auth token parser, and we attempt to read the auth token as an AuthToken.
    
    This PR fixes the bug.
    
    Fixes #2170
    szokeasaurusrex authored Oct 22, 2024
    Configuration menu
    Copy the full SHA
    7160d52 View commit details
    Browse the repository at this point in the history
  2. feat(errors): Print backtrace when RUST_BACKTRACE=1 (#2189)

    The anyhow crate we use for error handling adds stack backtraces errors whenever certain standard environment variables are set (e.g. when RUST_BACKTRACE=1).
    
    Modify our error-printing logic to include these stack backtraces when printing errors that crash Sentry CLI, so that users can add this information to bug reports.
    
    Closes #2187
    szokeasaurusrex authored Oct 22, 2024
    Configuration menu
    Copy the full SHA
    67c267a View commit details
    Browse the repository at this point in the history
  3. release: 2.38.0

    getsentry-bot committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    3cdbd0d View commit details
    Browse the repository at this point in the history
  4. Merge branch 'release/2.38.0'

    getsentry-bot
    getsentry-bot committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    d130855 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2024

  1. ref: Indicate that commands::main does not return

    `commands::main` does not return because it explicitly calls `std::process::exit`. Update `commands::main`'s function signature to indicate this.
    szokeasaurusrex committed Oct 23, 2024
    Configuration menu
    Copy the full SHA
    0995781 View commit details
    Browse the repository at this point in the history
  2. ref: Update main to indicate it does not return

    Sentry CLI's `main` function calls `commands::main`, which does not return, since it calls `std::process::exit`. Update the function signature to reflect this.
    szokeasaurusrex committed Oct 23, 2024
    Configuration menu
    Copy the full SHA
    6d0729d View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2024

  1. build(windows): Statically link CRT on Windows (#2203)

    Statically link the CRT on Windows. This eliminates Sentry CLI's
    dependency on `VCRUNTIME140.dll`, allowing Sentry CLI to be run on a
    clean install of Windows, without requiring any external dependencies.
    
    Fixes #2193
    Closes #2201
    szokeasaurusrex authored Oct 30, 2024
    Configuration menu
    Copy the full SHA
    69fe89f View commit details
    Browse the repository at this point in the history
  2. meta: Remove .vscode directory from version control (#2208)

    Developers working on Sentry CLI should be able to choose their own
    editor settings.
    szokeasaurusrex authored Oct 30, 2024
    Configuration menu
    Copy the full SHA
    88a7a59 View commit details
    Browse the repository at this point in the history
  3. release: 2.38.1

    getsentry-bot committed Oct 30, 2024
    Configuration menu
    Copy the full SHA
    8f7e290 View commit details
    Browse the repository at this point in the history
Loading