sentry-cli icon indicating copy to clipboard operation
sentry-cli copied to clipboard

A command line utility to work with Sentry.

Results 241 sentry-cli issues
Sort by recently updated
recently updated
newest added

### Description I encountered this code while trying to write an integration test which simulated server responses. In this code: https://github.com/getsentry/sentry-cli/blob/1886edc0fff0a79aec90abc4563786040a4c315e/src/commands/build/upload.rs#L564-L600 If the backend's assemble endpoint only ever returns a...

CLI

`sentry-cli update` should detect when `sudo` permissions are needed to perform an update; at least on macOS, it appears we don't always perform this detection correctly, leading to the scenario...

Bug
CLI

### Description As of now there is now documentation on how to contribute to the JavaScript part of the CLI. The goal is that it is straight forward to set...

CLI
Docs

Bundle building currently processes files sequentially when adding to `SourceBundleWriter`. The bottleneck is CPU-intensive operations like file type detection, debug ID extraction, and content parsing. Parallelize the preparation work while...

CLI

Sourcemap rewriting (flattening indexed maps, inlining sources) is CPU-intensive and currently sequential.

CLI

* Compress sourcemaps with zstd * The manifest gets compressed with gzip * Assumption here is that backend supports reading gzip from a zip file, but not zstd. However, symbolicator...

Test PR for benchmarking sourcemap uploads

This pull request contains changes generated by a Cursor Cloud Agent  

### Description This will allow us to add additional information to `ApiErrorKind` via `String`s. ### Issues - Ref #2820

Eliminate wait times by overlapping the collection, processing, bundling, and upload phases. Currently these run sequentially (collect all → process all → bundle all → upload). Use a streaming pipeline...

CLI