@sentry/cli 2.28.5 → 2.29.0

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=b402571c7b162702262ced9df8ced6fa28147d403f8aa07ae0762709be80be00
2
- sentry-cli-Darwin-universal=21dcd0d50cade650578d54e94965c4da0cc3c3c21a0a352dc17d76b4f51465f5
3
- sentry-cli-Darwin-x86_64=2ff02d3f969077e80c8b80a95a9db810ea5488186922e982c076deb873416e61
4
- sentry-cli-Linux-aarch64=5bc6646bf4dcf6de3406e2b17e83f6602dce506ce809d2778448fe26ed23a64d
5
- sentry-cli-Linux-armv7=f504c05273c5be0a289fa1dfe4b3ee49bfd06be63ea4bfb1084be382c191f7b8
6
- sentry-cli-Linux-i686=5f5365caa0ec739db415df2f3244cd48b25cede275bf39651aa4acf29c2af3a2
7
- sentry-cli-Linux-x86_64=76697ea25422a2fa3e9aa1f64a22f0901b5c0a74bcfc0dbf4510fa66a9c146a4
8
- sentry-cli-Windows-i686.exe=e20cb37fdb8fbf7495f9657f66d0098cf5f42f83e14e0037320c37a4e099e03e
9
- sentry-cli-Windows-x86_64.exe=df9e0a53c0a2869843ebb3499fcdaaff1fc4b2c96f7e29f8545d3e2701b70cab
1
+ sentry-cli-Darwin-arm64=9675d675406408ff7d209b6fb0b34a3304a0f3cf79bae9a2df4b1e5ca2cf97ca
2
+ sentry-cli-Darwin-universal=f293dca4e495e191537bdf3713114015503f15fd5d03f0710bb184dca4be5a5e
3
+ sentry-cli-Darwin-x86_64=11ad35bc8b6d39bcef16a525522e2de18b6f6395b05be6e514bfd538a858bc04
4
+ sentry-cli-Linux-aarch64=ea568ec8b566db7714efc6c7af522768a50a519cbe782a8e03e2f37b957e1164
5
+ sentry-cli-Linux-armv7=9cd60d72dc036d079337996c5d483efaf23c8c70d0d5522791371e705c303d59
6
+ sentry-cli-Linux-i686=d0f4d0a157b3519f40726ef7695c63f80b60dac724b7544664fd23a5175f1242
7
+ sentry-cli-Linux-x86_64=5f0d3ea6a007c1e4dab85e35a84eb828410b52967eae64a6ff338ef901a6c219
8
+ sentry-cli-Windows-i686.exe=18a056f444e686e8a64dadb312d995eec718eb6c5c77f1d37c38c2cb5ac7ea8c
9
+ sentry-cli-Windows-x86_64.exe=f87e9b049f0f7e3accf9a53f6b332f76145beb4f318115133756d3d3a5547208
package/js/helper.js CHANGED
@@ -58,6 +58,8 @@ function getDistributionForThisPlatform() {
58
58
  } else if (platform === 'win32') {
59
59
  switch (arch) {
60
60
  case 'x64':
61
+ // Windows arm64 can run x64 binaries
62
+ case 'arm64':
61
63
  packageName = '@sentry/cli-win32-x64';
62
64
  break;
63
65
  case 'x86':
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/cli",
3
- "version": "2.28.5",
3
+ "version": "2.29.0",
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.28.5",
34
- "@sentry/cli-linux-arm": "2.28.5",
35
- "@sentry/cli-linux-arm64": "2.28.5",
36
- "@sentry/cli-linux-i686": "2.28.5",
37
- "@sentry/cli-linux-x64": "2.28.5",
38
- "@sentry/cli-win32-i686": "2.28.5",
39
- "@sentry/cli-win32-x64": "2.28.5"
33
+ "@sentry/cli-darwin": "2.29.0",
34
+ "@sentry/cli-linux-arm": "2.29.0",
35
+ "@sentry/cli-linux-arm64": "2.29.0",
36
+ "@sentry/cli-linux-i686": "2.29.0",
37
+ "@sentry/cli-linux-x64": "2.29.0",
38
+ "@sentry/cli-win32-i686": "2.29.0",
39
+ "@sentry/cli-win32-x64": "2.29.0"
40
40
  },
41
41
  "scripts": {
42
42
  "postinstall": "node ./scripts/install.js",