releases.shpreview
Sentry/Sentry CLI

Sentry CLI

$npx -y @buildinternet/releases show sentry-cli
Mon
Wed
Fri
AprMayJunJulAugSepOctNovDecJanFebMarApr
Less
More
Releases39Avg13/moVersionsv3.2.0 → v3.3.6-snapshot.20260416.d4d6232
Jul 1, 2022

Various fixes & improvements

  • fix: Allow for using --auth-token with login command (#1266) by @kamilogorek
  • deps: Update all Rust dependencies (#1265) by @kamilogorek
  • fix: Increase TempFile robustness on Windows (#1256) (#1263) by @kamilogorek
  • ref: Remove confusing ending dots from command logs (#1261) by @kamilogorek
  • fix: Correct typo in sourcemaps explain output (#1258) by @huwq1987
  • fix: Use first frame that has context-line in explain (#1255) by @kamilogorek
  • feat: Add send-envelope command (#1254) by @kamilogorek
Jun 17, 2022

Various fixes & improvements

  • feat: Compute and upload il2cpp line mappings (#1248) by @loewenheim
  • ref: Skip protected zip files when uploading debug files (#1245) by @kamilogorek
May 24, 2022

Various fixes & improvements

  • feat: Add sourcemap explain command to debug production sourcemaps (#1235) by @kamilogorek
  • feat: Add organizations list command (#1213) by @kamilogorek
  • fix: Respect no-zips option for debug-files upload (#1239) by @saf-e
  • fix: Log correct AppCenter error message (#1243) by @kamilogorek
  • fix: Replace git.io links with redirect targets (#1209) by @asottile-sentry
  • chore: Update recommended VS Code extension name (#1240) by @vaind
  • chore: Rename VERSION to SENTRY_CLI_VERSION in install readme (#1227) by @kamilogorek
  • chore: Sync get-cli readme with our docs; add version specifier (#1225) by @kamilogorek
Apr 26, 2022

Various fixes & improvements

  • ref: Prevent @vercel/nft and similar tools from including binary file in their bundles (#1207) by @kamilogorek
  • ref: Use node-fetch@v2 for the simplicity sake (#1206) by @kamilogorek

Various fixes & improvements

  • ci: Add merge target (f9a2db38) by @kamilogorek
  • ref: Prevent @vercel/nft and similar tools from including binary file in their bundles (#1207) by @kamilogorek
Apr 21, 2022

Various fixes & improvements

  • ref: Make --header a global flag so its position independent (#1194)
  • ref: Restore monitors as hidden command w. integration tests (#1196)
  • ref: Restore bash-hook as hidden command w. integration tests (#1197)
Apr 13, 2022

Various fixes & improvements

  • fix: Remove fetch.FetchError usage in favor of catch-all clause (#1193) by @kamilogorek
  • ref: Restore and hide legacy aliases from 1.x for backward compatibility (#1192) by @kamilogorek
Apr 12, 2022

Various fixes & improvements

  • fix: Allow hyphenated release names with any flags position (#1187) by @kamilogorek

This is the first, long-overdue major release in over 5 years of sentry-cli's life. Some APIs were removed, some reworked, some newly added.

Most of introduced API changes are backward compatible through hidden aliases, so there is no immediate need for users developing 3rd party tools to make all the changes immediatelly. We do however encourage everyone to do it sooner or later, as deprecated items will be removed in the next major releases.

Breaking changes are denotated with (breaking) tag, and appropriate required changes are provided for each entry.

New APIs

  • feat: Add debug-files command, which is a joined functionality of difutil and upload-dif commands.
  • feat: Add deploys command, which was extracted from releases deploys subcommand.
  • feat: Add files command, which was extracted from releases files subcommand.
  • feat: Add sourcemaps upload command, which was extracted from releases files upload-sourcemaps subcommand.
  • feat: Add sourcemaps resolve command.
  • feat: Allow for specifying global --header argument, which supports multiple occurences, to configure outgoing requests
  • feat: Implement global --quiet/--silent flags to allow silencing stdout output (This flag is currently implemented only for selected subcommands)

Removed APIs

  • ref: Remove difutil id subcommand (use debug-files check instead) (breaking)
  • ref: Remove monitors command (support for this feature has been dropped) (breaking)
  • ref: Remove react-native codepush subcommand (use react-native appcenter instead) (breaking)
  • ref: Remove react-native-gradle and react-native-xcode commands (use react-native gradle and react-native xcode instead) (breaking)
  • ref: Remove upload-dsym command (use debug-files upload instead) (breaking)
  • ref: Remove deprecated and hidden flags from commands (remove listed flags usage) (breaking)
    • react-native xcode --verbose
    • releases new --ref
    • releases list --no-abbrev
    • releases upload-sourcemaps --verbose
    • releases upload-sourcemaps --rewrite (it's a default behavior now)
    • upload-dif --upload-symbol-maps
  • ref: Remove bash-hook command (use 1.x if you still need the functionality; it will eventually be ported as a separate repository - https://github.com/getsentry/sentry-cli-bash-hook) (breaking)
  • ref: Remove crash_reporting related code and with_crash_reporting crate feature (no required changes) (breaking)
  • ref: Remove SENTRY_NO_PROGRESS_BAR env var in favor of SENTRYCLI_NO_PROGRESS_BAR (rename env variable) (breaking)

Breaking Changes

  • ref: Update minimal required node version to v12 (update node version) (breaking)
  • ref: Rename --header argument of releases files upload command to --file-header (rename flag) (breaking)
  • ref: Rename CUSTOM_HEADER to SENTRY_HEADER and defaults.custom_header to http.header (rename env variable or update config file) (breaking)
  • ref: Make ignore-empty for releases set-commits a default behavior and remove --ignore-empty flag (remove --ignore-empty usage) (breaking)

Various fixes & improvements

  • feat: Implement --quiet flag for releases upload-sourcemaps command
  • feat: Implement --quiet flag for difutil check command
  • ref: Make --auth-token a global argument
  • ref: Make all ProgressBar instances and logs always write to stderr
  • ref: Migrate error handling from failure to anyhow crate
Apr 4, 2022

Breaking changes are denotated with (breaking) tag, and appropriate required changes are provided for each entry.

  • feat: Allow for specifying global --header argument, which supports multiple occurences, to configure outgoing requests
  • feat: Implement global --quiet/--silent flags to allow silencing stdout output (This flag is currently implemented only for selected subcommands)
  • feat: Implement --quiet flag for releases upload-sourcemaps command
  • feat: Implement --quiet flag for difutil check command
  • ref: Make --auth-token a global argument
  • ref: Make ignore-empty for releases set-commits a default behavior and remove --ignore-empty flag (remove --ignore-empty usage) (breaking)
  • ref: Make all ProgressBar instances and logs always write to stderr
  • ref: Migrate error handling from failure to anyhow crate
  • ref: Remove bash-hook command (use 1.x if you still need the functionality; it will eventually be ported as a separate repository - https://github.com/getsentry/sentry-cli-bash-hook) (breaking)
  • ref: Remove crash_reporting related code and with_crash_reporting crate feature (no required changes) (breaking)
  • ref: Remove difutil id subcommand (use difutil check instead) (breaking)
  • ref: Remove monitors command (support for this feature has been dropped) (breaking)
  • ref: Remove react-native codepush subcommand (use react-native appcenter instead) (breaking)
  • ref: Remove react-native-gradle and react-native-xcode commands (use react-native gradle and react-native xcode instead) (breaking)
  • ref: Remove SENTRY_NO_PROGRESS_BAR env var in favor of SENTRYCLI_NO_PROGRESS_BAR (rename env variable) (breaking)
  • ref: Remove upload-dsym command (use upload-dif instead) (breaking)
  • ref: Remove deprecated and hidden flags from commands (remove listed flags usage) (breaking)
    • react-native xcode --verbose
    • releases new --ref
    • releases list --no-abbrev
    • releases upload-sourcemaps --verbose
    • releases upload-sourcemaps --rewrite (it's a default behavior now)
    • upload-dif --upload-symbol-maps
  • ref: Rename --header argument of releases files upload command to --file-header (rename flag) (breaking)
  • ref: Rename CUSTOM_HEADER to SENTRY_HEADER and defaults.custom_header to http.header (rename env variable or update config file) (breaking)
  • ref: Update minimal required node version to v12 (update node version) (breaking)
Mar 30, 2022

Various fixes & improvements

  • deps: Update symbolic and git-rs crates (#1170) by @kamilogorek
  • ref: Filter non-error goblin logs (#1169) by @kamilogorek
  • ref: Use provided version in release log messages (#1162) by @kamilogorek
Mar 17, 2022

Various fixes & improvements

  • ref: Make org and project flags position independent (#1153) by @kamilogorek

Various fixes & improvements

  • revert: ref: Dont run install script using node binary #1151 (#1155) by @kamilogorek

Various fixes & improvements

  • ref: Dont run install script using node binary (#1151) by @kamilogorek
  • feat: Add show-projects and show-commits flags to 'releases info' command (#1144) by @kamilogorek
  • ref: Rework find_id function of difutil find (#1149) by @kamilogorek
  • ref: Rework find_matching_rev tests to not use our real repo history (#1147) by @kamilogorek
  • deps: Update git2 crate to 0.14.1 to support custom git extensions (#1140) by @kamilogorek
  • ci: Change stale GitHub workflow to run once a day (#1141) by @kamilogorek
Mar 7, 2022

Various fixes & improvements

  • install: Rename SENTRY_NO_PROGRESS_BAR flag to SENTRYCLI_NO_PROGRESS_BAR (#1132) by @kamilogorek
Latest
3.4.1-snapshot.20260420.4430631
Tracking Since
Mar 7, 2022
Last checked Apr 21, 2026
Sentry CLI — Sentry — releases.sh