sentry-cli
sentry-cli copied to clipboard
A command line utility to work with Sentry.
Our [contribution docs](https://github.com/getsentry/sentry-cli/blob/master/CONTRIBUTING.md#L0-L1) are somewhat out of date. Some examples: * Mention of the `send-metric` command, which is deprecated and will be removed * The code examples in the "Integration...
This option has already been deprecated (see #2481), in the next major let's remove it.
Sentry CLI currently supports uploading files without chunking, primarily to maintain backwards compatibility with ancient self-hosted Sentry versions. We should remove this support in the next major, as this will...
We have some unused fields in our `serde` structs. We might be able to remove these, as long as removing them has no unintended side effects. In particular, `hash_algorithm` in...
I recently discovered several of our dependencies were unused (#2255). We should consider adding a CI check (e.g. one that uses `cargo shear`) to ensure that unused dependencies don't accumulate...
This test fails when no internet connection is available, indicating that it depends on network access: `tests/integration/_cases/update/update.trycmd`. None of our tests should depend on network access being available. Let's investigate...
This command is no longer needed. It will be deprecated in [CLI-69](https://linear.app/getsentry/issue/CLI-69/deprecate-react-native-appcenter), all that is remaining is to remove it in the next major release.
In getsentry/sentry-cli#2512, we deprecated all `files` subcommands. They should be removed in the next major release
The Ruby SDK cleaned up their CI flow by using job dependency flows: @neel.shah said: > btw probably interesting for everyone, `@peter` made the ruby CI really clean by creating...