-
-
Notifications
You must be signed in to change notification settings - Fork 34
chore(deps): update CLI to v3.6.0 #354
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,37 +4,37 @@ import 'package:sentry_dart_plugin/src/cli/sources.dart'; | |
|
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: The Suggested FixUpdate the Prompt for AI Agent |
||
| import 'host_platform.dart'; | ||
|
|
||
| const _version = '2.58.6'; | ||
| const _version = '3.6.0'; | ||
|
|
||
| final currentCLISources = { | ||
| HostPlatform.darwinUniversal: CLISource( | ||
This comment was marked as outdated.
Sorry, something went wrong.
sentry[bot] marked this conversation as resolved.
sentry[bot] marked this conversation as resolved.
|
||
| 'sentry-cli-Darwin-universal', | ||
| _version, | ||
| '728d5a8c48d3e94d0a3e644431dcaad19c28b126a00eb37930e67bd146905d96', | ||
| '6aa4a42c8cf8591fe5e24cb62370dcfa40d84973bbb0f4725138eb47bb986e32', | ||
| ), | ||
| HostPlatform.linuxAarch64: CLISource( | ||
| 'sentry-cli-Linux-aarch64', | ||
| _version, | ||
| '79e60095ab461eac70c23ce750499bff5c6bffb95d364ccf38d3259557403987', | ||
| '987ab96a45610f00659a0ee633e64343495312e8c39250242dab12aa296240a2', | ||
| ), | ||
| HostPlatform.linuxArmv7: CLISource( | ||
| 'sentry-cli-Linux-armv7', | ||
| _version, | ||
| 'a935540e64dc0b73e169a39034975ae326862b517739dc3e6adc7f9d0b47a657', | ||
| '98c6008651dda9ce2a8cec7fe635a3f00a563f49faf36b62afccc6af106befb0', | ||
| ), | ||
| HostPlatform.linux64bit: CLISource( | ||
| 'sentry-cli-Linux-x86_64', | ||
| _version, | ||
| '36b689311b399d9332950d84f4299aee682d2d290a770a77372b30a74f7e7add', | ||
| 'e2bff5d8b546f3fb72c616da656ecb347c7c144f36a5294b0749dcc2001f68d5', | ||
| ), | ||
| HostPlatform.windows32bit: CLISource( | ||
| 'sentry-cli-Windows-i686.exe', | ||
| _version, | ||
| '81de70befaa00762703d1e911a20659161dec341ebe079f65132bed2f9e1e4be', | ||
| '5ad9cf27de932e7a519cbbf1d4f73d28151e8c3da6119bc9e66659dad3558bcc', | ||
| ), | ||
| HostPlatform.windows64bit: CLISource( | ||
| 'sentry-cli-Windows-x86_64.exe', | ||
| _version, | ||
| '99c1bf7a3d18df2b62ee5052f7e8f5d1e065e218442cdf0cfa2ede0b9cf7b938', | ||
| '8a617dff234dcda4ce600cef3b14874454dd907f63395a9c470c5a7120c867f6', | ||
| ), | ||
| }; | ||
|
sentry[bot] marked this conversation as resolved.
Comment on lines
30
to
40
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: If the Sentry CLI download fails its checksum verification, the code logs an error but proceeds to use the corrupted binary because Suggested FixThe Prompt for AI Agent |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: The
legacyWebSymbolicationoption uses asentry-clicommand that was removed in the updated version, causing source map uploads to fail.Severity: HIGH
Suggested Fix
Update the
_executeCliForLegacySourceMapsmethod to use the modernsentry-cli sourcemaps uploadcommand instead of the removedsentry-cli releases files ... upload-sourcemapscommand. This will restore compatibility for the legacy web symbolication feature with the new CLI version.Prompt for AI Agent
Did we get this right? π / π to inform future reviews.