@sentry/cli
Advanced tools
Comparing version 2.23.0 to 2.23.1
@@ -1,9 +0,9 @@ | ||
sentry-cli-Darwin-arm64=3714a30704eeee21456a60e75e044e4e3aa36bedeb084f8993ea089ff7577e99 | ||
sentry-cli-Darwin-universal=042bf36aebe9081264a6d95a098712b4006b66df356ee4440851a3c26acbbbf4 | ||
sentry-cli-Darwin-x86_64=5c4d0d3e9d5838a587bcca98163f779843c0207483493dda36630e8e03919331 | ||
sentry-cli-Linux-aarch64=66d0b504d983ff2f7b5f60ebf5b3c933ba8a93c2a608f759863fd2b446b344fd | ||
sentry-cli-Linux-armv7=940b8844f60cc04c8aec65c38aedc20c2fde949f97576f7ae34f9febfb561d80 | ||
sentry-cli-Linux-i686=180306e08e5ec10445aa2f0ce1abb07740dceb30685dc53cd8b26a35909db20f | ||
sentry-cli-Linux-x86_64=23d3fdb2e797a1f49917b13cd040874f6189aff3f24d56d3fb81d74c1f368372 | ||
sentry-cli-Windows-i686.exe=a6cb2266418f418df0ce88f16086bbb60090805b9a5d38abee8f6ae1f7eba25f | ||
sentry-cli-Windows-x86_64.exe=bc51a87a60fa13a619ecaa93f9d442ae7e638a1718cb4616c6595ce7ab02ab25 | ||
sentry-cli-Darwin-arm64=80db99473013abbc312a6160c4c8eeac110d573560e632c5da9444fe44ae683d | ||
sentry-cli-Darwin-universal=21af0cd6375e7b0686b5d4808ea6035b0eaf8b5c64b8e024f7da87ec2aa986a3 | ||
sentry-cli-Darwin-x86_64=6b3b2efd7f2e2fce2eef3a493676895fed90b5677dff780da813a2748f423ce9 | ||
sentry-cli-Linux-aarch64=c780829bef1e4f3fde18f51adc747f4497077677289bae07bf1c0427ba9c1196 | ||
sentry-cli-Linux-armv7=0e95c542dac19cd4077e20f506be0bec9a56dccd0dd08849ad63bf6cb77644e2 | ||
sentry-cli-Linux-i686=6879f208ab9bde5417a5c1fa9ba113ed9ebaae4f3ee800c4155ff8dba9e2a82e | ||
sentry-cli-Linux-x86_64=e01de8640c4f7c19c8e9670d0269528beccbf196b2be32f9380b3f69eea51ac8 | ||
sentry-cli-Windows-i686.exe=cdc09bff3d2958315f056fc87ebc365bca2663e966d116a777b7d599219bec47 | ||
sentry-cli-Windows-x86_64.exe=8d877c6b31a87ce268ffebc2b071389f22ab642edfc5a42f2e4122e127325fe6 |
{ | ||
"name": "@sentry/cli", | ||
"version": "2.23.0", | ||
"version": "2.23.1", | ||
"description": "A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/", | ||
@@ -33,9 +33,9 @@ "repository": "git://github.com/getsentry/sentry-cli.git", | ||
"optionalDependencies": { | ||
"@sentry/cli-darwin": "2.23.0", | ||
"@sentry/cli-linux-arm": "2.23.0", | ||
"@sentry/cli-linux-arm64": "2.23.0", | ||
"@sentry/cli-linux-i686": "2.23.0", | ||
"@sentry/cli-linux-x64": "2.23.0", | ||
"@sentry/cli-win32-i686": "2.23.0", | ||
"@sentry/cli-win32-x64": "2.23.0" | ||
"@sentry/cli-darwin": "2.23.1", | ||
"@sentry/cli-linux-arm": "2.23.1", | ||
"@sentry/cli-linux-arm64": "2.23.1", | ||
"@sentry/cli-linux-i686": "2.23.1", | ||
"@sentry/cli-linux-x64": "2.23.1", | ||
"@sentry/cli-win32-i686": "2.23.1", | ||
"@sentry/cli-win32-x64": "2.23.1" | ||
}, | ||
@@ -42,0 +42,0 @@ "scripts": { |
@@ -87,2 +87,6 @@ #!/usr/bin/env node | ||
case 'win32': | ||
// Windows arm machines can run x64 binaries | ||
if (arch === 'arm64') { | ||
archString = 'x86_64'; | ||
} | ||
return `${releasesUrl}-Windows-${archString}.exe`; | ||
@@ -89,0 +93,0 @@ case 'linux': |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
61360
1210