@sentry/cli 2.42.4 → 2.42.5

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,10 @@
1
- sentry-cli-Darwin-arm64=9dc0dbcce902f615a5d5b859ac8ebfcf580eb34eadf9fe0dd31048534bf05216
2
- sentry-cli-Darwin-universal=fea9491bd9038fe0343318b5459ad256d1f1b1794bd03b1d78db8f3d8700f47b
3
- sentry-cli-Darwin-x86_64=f63f0539ebb6dbc8b410393813536893104cd74c66c50e192da51fde24d55674
4
- sentry-cli-Linux-aarch64=134c9e2b21d341a19710c90eaadb6dc817230f13edbb11a3ec9e41f04d118066
5
- sentry-cli-Linux-armv7=24efad8053b17710d3f67887cb0aad3490b3f38825a9d1d95f255bc952987087
6
- sentry-cli-Linux-i686=0316e17671cf661ca1167793d4b2ddecf8d231aa557e89193201de3db8233823
7
- sentry-cli-Linux-x86_64=6d61432bc47f78fcfeb615302a58796e5d135f1471d5b9bc7dde576b1ac956b6
8
- sentry-cli-Windows-i686.exe=0d33323cf0e7aa1e8c3acb4239558689c7bbf3aa5d4f8e4fd6ff27b08d40fc77
9
- sentry-cli-Windows-x86_64.exe=051aa138fa192b3cbe7ddeb3d682c3acab54fc0bfa21a27fed7ebef8b646cf05
1
+ sentry-cli-Darwin-arm64=833a7a87be13f4b28f52928b3890b1112684a8b3d148a3c0cdc0d1e3b65e80f7
2
+ sentry-cli-Darwin-universal=4226fb582bd4551dfabf4d58b0713cc66825e6fd8071e9f59c2604373b28048c
3
+ sentry-cli-Darwin-x86_64=5110eb2e6568d836901c3f8f0c02cc596fa36663fab37e2d5f995207e878f8aa
4
+ sentry-cli-Linux-aarch64=2d4f9df6e567ffaf90aab1a6dd892b1ba9fd580edd8b9ffe7d8484e5530263eb
5
+ sentry-cli-Linux-armv7=79ecfd56f0153e87ca3d4adf68d759d449c2e9af3593a26fd2151d3cf4b98bb3
6
+ sentry-cli-Linux-i686=61ea5059835bb2d092afbf3193400270978506102700f5ab12f90c0880efbbb8
7
+ sentry-cli-Linux-x86_64=ece674996d051b3d236bb3b3e2ae4c315d0aa55373fa3bcde2d6d474b7c6ba96
8
+ sentry-cli-Windows-aarch64.exe=f985cfd982c75441aa3b3e5c8e8c79e3a82570f407476d44f55a02d7e999f22f
9
+ sentry-cli-Windows-i686.exe=906b2c5cb3ad203fb795b44feb35d6a90adee9cdacb7359df9eaad39043395f9
10
+ sentry-cli-Windows-x86_64.exe=ea1f5a9ad24ed1ac43c238166857490772fb823d868997e874517648cace13d7
package/js/helper.js CHANGED
@@ -13,6 +13,7 @@ const BINARY_DISTRIBUTIONS = [
13
13
  { packageName: '@sentry/cli-linux-arm', subpath: 'bin/sentry-cli' },
14
14
  { packageName: '@sentry/cli-win32-x64', subpath: 'bin/sentry-cli.exe' },
15
15
  { packageName: '@sentry/cli-win32-i686', subpath: 'bin/sentry-cli.exe' },
16
+ { packageName: '@sentry/cli-win32-arm64', subpath: 'bin/sentry-cli.exe' },
16
17
  ];
17
18
 
18
19
  /**
@@ -58,14 +59,15 @@ function getDistributionForThisPlatform() {
58
59
  } else if (platform === 'win32') {
59
60
  switch (arch) {
60
61
  case 'x64':
61
- // Windows arm64 can run x64 binaries
62
- case 'arm64':
63
62
  packageName = '@sentry/cli-win32-x64';
64
63
  break;
65
64
  case 'x86':
66
65
  case 'ia32':
67
66
  packageName = '@sentry/cli-win32-i686';
68
67
  break;
68
+ case 'arm64':
69
+ packageName = '@sentry/cli-win32-arm64';
70
+ break;
69
71
  }
70
72
  }
71
73
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/cli",
3
- "version": "2.42.4",
3
+ "version": "2.42.5",
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,14 @@
30
30
  "prettier": "2.8.8"
31
31
  },
32
32
  "optionalDependencies": {
33
- "@sentry/cli-darwin": "2.42.4",
34
- "@sentry/cli-linux-arm": "2.42.4",
35
- "@sentry/cli-linux-arm64": "2.42.4",
36
- "@sentry/cli-linux-i686": "2.42.4",
37
- "@sentry/cli-linux-x64": "2.42.4",
38
- "@sentry/cli-win32-i686": "2.42.4",
39
- "@sentry/cli-win32-x64": "2.42.4"
33
+ "@sentry/cli-darwin": "2.42.5",
34
+ "@sentry/cli-linux-arm": "2.42.5",
35
+ "@sentry/cli-linux-arm64": "2.42.5",
36
+ "@sentry/cli-linux-i686": "2.42.5",
37
+ "@sentry/cli-linux-x64": "2.42.5",
38
+ "@sentry/cli-win32-i686": "2.42.5",
39
+ "@sentry/cli-win32-x64": "2.42.5",
40
+ "@sentry/cli-win32-arm64": "2.42.5"
40
41
  },
41
42
  "scripts": {
42
43
  "postinstall": "node ./scripts/install.js",
@@ -78,10 +78,6 @@ function getDownloadUrl(platform, arch) {
78
78
  case 'darwin':
79
79
  return `${releasesUrl}-Darwin-universal`;
80
80
  case 'win32':
81
- // Windows arm machines can run x64 binaries
82
- if (arch === 'arm64') {
83
- archString = 'x86_64';
84
- }
85
81
  return `${releasesUrl}-Windows-${archString}.exe`;
86
82
  case 'linux':
87
83
  case 'freebsd':
package/scripts/wheels CHANGED
@@ -54,6 +54,11 @@ WHEELS = (
54
54
  plat='win_amd64',
55
55
  exe='sentry-cli.exe',
56
56
  ),
57
+ Wheel(
58
+ src='sentry-cli-Windows-aarch64.exe',
59
+ plat='win_arm64',
60
+ exe='sentry-cli.exe',
61
+ ),
57
62
  )
58
63
 
59
64