@sentry/cli 2.23.0 → 2.23.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/checksums.txt CHANGED
@@ -1,9 +1,9 @@
1
- sentry-cli-Darwin-arm64=3714a30704eeee21456a60e75e044e4e3aa36bedeb084f8993ea089ff7577e99
2
- sentry-cli-Darwin-universal=042bf36aebe9081264a6d95a098712b4006b66df356ee4440851a3c26acbbbf4
3
- sentry-cli-Darwin-x86_64=5c4d0d3e9d5838a587bcca98163f779843c0207483493dda36630e8e03919331
4
- sentry-cli-Linux-aarch64=66d0b504d983ff2f7b5f60ebf5b3c933ba8a93c2a608f759863fd2b446b344fd
5
- sentry-cli-Linux-armv7=940b8844f60cc04c8aec65c38aedc20c2fde949f97576f7ae34f9febfb561d80
6
- sentry-cli-Linux-i686=180306e08e5ec10445aa2f0ce1abb07740dceb30685dc53cd8b26a35909db20f
7
- sentry-cli-Linux-x86_64=23d3fdb2e797a1f49917b13cd040874f6189aff3f24d56d3fb81d74c1f368372
8
- sentry-cli-Windows-i686.exe=a6cb2266418f418df0ce88f16086bbb60090805b9a5d38abee8f6ae1f7eba25f
9
- sentry-cli-Windows-x86_64.exe=bc51a87a60fa13a619ecaa93f9d442ae7e638a1718cb4616c6595ce7ab02ab25
1
+ sentry-cli-Darwin-arm64=80db99473013abbc312a6160c4c8eeac110d573560e632c5da9444fe44ae683d
2
+ sentry-cli-Darwin-universal=21af0cd6375e7b0686b5d4808ea6035b0eaf8b5c64b8e024f7da87ec2aa986a3
3
+ sentry-cli-Darwin-x86_64=6b3b2efd7f2e2fce2eef3a493676895fed90b5677dff780da813a2748f423ce9
4
+ sentry-cli-Linux-aarch64=c780829bef1e4f3fde18f51adc747f4497077677289bae07bf1c0427ba9c1196
5
+ sentry-cli-Linux-armv7=0e95c542dac19cd4077e20f506be0bec9a56dccd0dd08849ad63bf6cb77644e2
6
+ sentry-cli-Linux-i686=6879f208ab9bde5417a5c1fa9ba113ed9ebaae4f3ee800c4155ff8dba9e2a82e
7
+ sentry-cli-Linux-x86_64=e01de8640c4f7c19c8e9670d0269528beccbf196b2be32f9380b3f69eea51ac8
8
+ sentry-cli-Windows-i686.exe=cdc09bff3d2958315f056fc87ebc365bca2663e966d116a777b7d599219bec47
9
+ sentry-cli-Windows-x86_64.exe=8d877c6b31a87ce268ffebc2b071389f22ab642edfc5a42f2e4122e127325fe6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/cli",
3
- "version": "2.23.0",
3
+ "version": "2.23.1",
4
4
  "description": "A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/",
5
5
  "repository": "git://github.com/getsentry/sentry-cli.git",
6
6
  "homepage": "https://docs.sentry.io/hosted/learn/cli/",
@@ -30,13 +30,13 @@
30
30
  "prettier": "2.8.8"
31
31
  },
32
32
  "optionalDependencies": {
33
- "@sentry/cli-darwin": "2.23.0",
34
- "@sentry/cli-linux-arm": "2.23.0",
35
- "@sentry/cli-linux-arm64": "2.23.0",
36
- "@sentry/cli-linux-i686": "2.23.0",
37
- "@sentry/cli-linux-x64": "2.23.0",
38
- "@sentry/cli-win32-i686": "2.23.0",
39
- "@sentry/cli-win32-x64": "2.23.0"
33
+ "@sentry/cli-darwin": "2.23.1",
34
+ "@sentry/cli-linux-arm": "2.23.1",
35
+ "@sentry/cli-linux-arm64": "2.23.1",
36
+ "@sentry/cli-linux-i686": "2.23.1",
37
+ "@sentry/cli-linux-x64": "2.23.1",
38
+ "@sentry/cli-win32-i686": "2.23.1",
39
+ "@sentry/cli-win32-x64": "2.23.1"
40
40
  },
41
41
  "scripts": {
42
42
  "fix": "npm-run-all fix:eslint fix:prettier",
@@ -84,6 +84,10 @@ function getDownloadUrl(platform, arch) {
84
84
  case 'darwin':
85
85
  return `${releasesUrl}-Darwin-universal`;
86
86
  case 'win32':
87
+ // Windows arm machines can run x64 binaries
88
+ if (arch === 'arm64') {
89
+ archString = 'x86_64';
90
+ }
87
91
  return `${releasesUrl}-Windows-${archString}.exe`;
88
92
  case 'linux':
89
93
  case 'freebsd':