@sentry/cli 2.28.6 → 2.29.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=edd243745f2f7bb49625c9168b1b5f330d9599724fa6125e38c6ecde243c5ae7
2
- sentry-cli-Darwin-universal=642160062d1873e41828c26cddd30065358f33613bcd1152df31d1e95839a67c
3
- sentry-cli-Darwin-x86_64=2f25d8872d85dad154b68342d7c0b3135477342e4253af799d31195270caf044
4
- sentry-cli-Linux-aarch64=de763704846669f2b8345327333850aecea372310f573aa5838d5868b5ffb681
5
- sentry-cli-Linux-armv7=c37a6c4fbb5c7f0c3a02c608d71753396a041de1188add6241588022a1c3650d
6
- sentry-cli-Linux-i686=4ba889f03d984628cd41d3957ef779b43a262b3eefd30d57469c517c7ffb7eb2
7
- sentry-cli-Linux-x86_64=790c1c4a0e59112d25b8efdf00211881851f4f33443c4e885df336d16b88b457
8
- sentry-cli-Windows-i686.exe=7a0ee9dfe78841e0ae9e9965a8dc74d544539ed0689b90141fe0323b423c9096
9
- sentry-cli-Windows-x86_64.exe=162da8bc6e96f0081976f33a66ee8a034f3f8eaf5fb377309b20b36831b42234
1
+ sentry-cli-Darwin-arm64=7ab793302f4d36c8513bbe784bfc2c439af913642e743dee2e4d7231139552fc
2
+ sentry-cli-Darwin-universal=c6bd1f86edfe6889e8f35388065afa6caa567a52c7ad881b18be372c4cdfcca2
3
+ sentry-cli-Darwin-x86_64=9dbc86e9d4717f417bed0fc959ff1a44079c61b454832de4d3d227b39a9fac2f
4
+ sentry-cli-Linux-aarch64=7a2ce27a6d27fdc1c3fe6e02ff4716eb3f1e0a774f012b017bd3c761b25a245d
5
+ sentry-cli-Linux-armv7=78bc5233d6cac2a7743b2caface066a258050fef7fcf9f5f7bebe0baaa61b172
6
+ sentry-cli-Linux-i686=916c25adbd7e959228842a3fecb292a0ab323e224249deaf44ab00f2ff2da377
7
+ sentry-cli-Linux-x86_64=e2c14f5723cb4e4bd64458147ff349f754a4eb4d228a6176992bda9b39d4510f
8
+ sentry-cli-Windows-i686.exe=54349a4624dac285290623e1b4177f58d46b1ae5e76cdb083a6ba9644598e139
9
+ sentry-cli-Windows-x86_64.exe=3a7ebf3feb81327547a105e2a86e092458041acac054c4184edc103cae2b91dc
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.6",
3
+ "version": "2.29.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.28.6",
34
- "@sentry/cli-linux-arm": "2.28.6",
35
- "@sentry/cli-linux-arm64": "2.28.6",
36
- "@sentry/cli-linux-i686": "2.28.6",
37
- "@sentry/cli-linux-x64": "2.28.6",
38
- "@sentry/cli-win32-i686": "2.28.6",
39
- "@sentry/cli-win32-x64": "2.28.6"
33
+ "@sentry/cli-darwin": "2.29.1",
34
+ "@sentry/cli-linux-arm": "2.29.1",
35
+ "@sentry/cli-linux-arm64": "2.29.1",
36
+ "@sentry/cli-linux-i686": "2.29.1",
37
+ "@sentry/cli-linux-x64": "2.29.1",
38
+ "@sentry/cli-win32-i686": "2.29.1",
39
+ "@sentry/cli-win32-x64": "2.29.1"
40
40
  },
41
41
  "scripts": {
42
42
  "postinstall": "node ./scripts/install.js",