sentry-cli
sentry-cli copied to clipboard
A command line utility to work with Sentry.
Releases used with `sourcemaps upload` need to match the `^[^/]+$` regex (i.e. must contain one or more non `/` characters). This validation is enforced on the server-side, but we should...
While investigating #2420, we realized that it would likely make more sense for `sentry-cli login` to store a user auth token, rather than an org auth token (context from that...
Instrument Sentry CLI with Sentry to obtain better usage data. This instrumentation should be privacy-preserving (no PII and no stacktraces should be sent to Sentry), and it should also be...
I recently helped troubleshoot an issue with someone, where the fix was simply updating the CLI tool on their machine, which was roughly 2.5 years old. This made me think...
### Problem Statement Currently, when setting commits via sentry-cli, and related tools [webpack-plugin], users must explicitly enable commit-tracking functionality by calling set-commits --auto, or by manually specifying commit ranges. This...
@andreiborza [discovered](https://github.com/getsentry/action-release/issues/162#issuecomment-2694828926) that the `strip-common-prefix` option operates on each path passed to the `sourcemaps upload` command independently. Also investigate `strip-prefix`; perhaps list it as an alternative for use cases where...
When uploading debug files, we search through ZIP files to see if there are any debug files in them that we need to upload. However, if the ZIP file is...
In addition to being affected by the memory-inefficiency of chunk uploading (#2291), sourcemap uploads are affected by even more severe memory usage issues. From investigating a sourcemap upload with a...
`zstd` compression offers faster compression with better compression ratios compared to `gzip`, what we currently use for file uploads. Let's consider switching chunk uploads to `zstd`, from the current `gzip`....
Since the introduction of source map debug IDs, the dedicated `react-native appcenter` command has no longer been needed. Instead, users should use `sourcemaps upload` as recommended in [our docs](https://docs.sentry.io/platforms/react-native/sourcemaps/uploading/codepush/#upload-source-maps). Therefore,...