sentry-cli
sentry-cli copied to clipboard
A command line utility to work with Sentry.
### CLI Version 2.32.1 ### Operating System and Architecture - [ ] macOS (arm64) - [X] macOS (x86_64) - [ ] Linux (i686) - [ ] Linux (x86_64) - [...
Being able to manage project keys with the CLI will enable devs that are already using the CLI in their project release management workflow to programattically use a new DSN...
Looking through the SDK docs, it seems that environment variable SENTRY_RELEASE is commonly used to configure a release name. There is also an environment variable for Google App Engine used...
We had to add `.truncate(false)` to our [tempfile opening code](https://github.com/getsentry/sentry-cli/pull/1988/files/3d3b075ad6d8a7f9aed2cfa1a8c1fc43fb7a950a#diff-2ce4d423b6b0bcf155831960e21c605cc809cc339fda30a25fb71040ad42c44e) in #1988 to fix a new Clippy lint. `.truncate(false)` is equivalent to the previous behavior, but it seems like it...
While investigating #2032, I discovered that when passed a path to a directory, `debug-files upload` recursively searches the directory for debug files. However, `debug-files check` treats the directory as if...
We can only merge this once we have verified that all endpoints that the CLI calls are also available on the region. Right now, the `/api/0/` endpoint called by `sentry-cli...
### Steps to Reproduce Recently our build started failing for uploading commit history to a build. So why it failed because we merged bunch of commits which were huge in...
We have some strange logic for exiting the process, see `commands::main`. At a minimum, we should change the `process::exit` call to a returning of the [exit code](https://doc.rust-lang.org/stable/std/process/struct.ExitCode.html).
If we compile these packages with the `managed` feature, we can remove the `is_npm_install` and `is_homebrew_install` functions.