@sentry/cli 2.45.0 → 2.46.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,10 +1,10 @@
1
- sentry-cli-Darwin-arm64=c3fa5ff75f8359bfa2ea7a46f5a402c8b82fab7124c01f0dcf58f37e6e970413
2
- sentry-cli-Darwin-universal=bec01e4afabfb88c30c9b86d92e1c4857c2dd3b6e6870e37380f1cc680a3dede
3
- sentry-cli-Darwin-x86_64=900545bdd9f56e30d45a8c267c995abc87b3760e6cded2f9bbbe8fb1f2c3cd89
4
- sentry-cli-Linux-aarch64=bcb31138b5b9581d1f61fbbcd31f4b7587407833651e31d265e54c227a25898e
5
- sentry-cli-Linux-armv7=965ee3b781f60da223af1f1dfd6d985b0ba97c6e38f48ec05105e5e7276d2def
6
- sentry-cli-Linux-i686=bf95215958a49e9da32d3d8123a1edd49f35fe00a40098eb6b3a7458a8735a98
7
- sentry-cli-Linux-x86_64=ed3db82f44ecdfb8fc17b163ce5580f3af67d335df63e9dd73c0c457a2346a3d
8
- sentry-cli-Windows-aarch64.exe=90a79187fcbb10c4a945222a5562bd49d8c55e742af177f249c061d00eec14d7
9
- sentry-cli-Windows-i686.exe=46dad8c72c44135014c43776fbd5b42dd7f53b58abd23f93b0b870081f7ceb4a
10
- sentry-cli-Windows-x86_64.exe=80ea63208346995844a184604ad09bfc9a91f747704d176fa9c4515dcb269050
1
+ sentry-cli-Darwin-arm64=6ba604d1241e989025500bd031f6a6fea5b2291deeff6ae1a1dcd2abc0c622c3
2
+ sentry-cli-Darwin-universal=8b90c89cbff071230457b80344c6ac7a1d04a76debefb6d702b4509605beba23
3
+ sentry-cli-Darwin-x86_64=afbd4c7d3b60bdf6d02f252fed316af75a61238f02946fe94676f74aeed2f4ab
4
+ sentry-cli-Linux-aarch64=00b292f4edc9c13b079123b574abe73c012b7357426d34bbbf0bd0a5ab59a491
5
+ sentry-cli-Linux-armv7=a0c2c9eec2d9c25e99c6e9acde8b0cae295d9c9a291a6964340f5f19dd72fa21
6
+ sentry-cli-Linux-i686=a87f426738a3f32dcbb84973d1b5fb6d78bdc2fa4b172236f7b3a72c30bc8c14
7
+ sentry-cli-Linux-x86_64=a55b96a0d5391c5206c2bc028e52dd9797dc3646556291cca09d00a19707f85e
8
+ sentry-cli-Windows-aarch64.exe=633470992be9f03ee79f0c0fb724a81057922324031010a93473b6d85fe70c4f
9
+ sentry-cli-Windows-i686.exe=c7f4cfdfe9a84a84c10fa00b6bd9bd92ea3d807579242f551701853c538150d0
10
+ sentry-cli-Windows-x86_64.exe=aa86012bd7cc27ceac04357399a00373f1f0909f93b7735778dca7b9e1f4099c
package/js/helper.js CHANGED
@@ -40,7 +40,7 @@ function getDistributionForThisPlatform() {
40
40
  let packageName = undefined;
41
41
  if (platform === 'darwin') {
42
42
  packageName = '@sentry/cli-darwin';
43
- } else if (platform === 'linux' || platform === 'freebsd') {
43
+ } else if (platform === 'linux' || platform === 'freebsd' || platform === 'android') {
44
44
  switch (arch) {
45
45
  case 'x64':
46
46
  packageName = '@sentry/cli-linux-x64';
@@ -79,6 +79,7 @@ function getDistributionForThisPlatform() {
79
79
  case 'darwin':
80
80
  case 'linux':
81
81
  case 'freebsd':
82
+ case 'android':
82
83
  subpath = 'bin/sentry-cli';
83
84
  break;
84
85
  default:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/cli",
3
- "version": "2.45.0",
3
+ "version": "2.46.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,14 +30,14 @@
30
30
  "prettier": "2.8.8"
31
31
  },
32
32
  "optionalDependencies": {
33
- "@sentry/cli-darwin": "2.45.0",
34
- "@sentry/cli-linux-arm": "2.45.0",
35
- "@sentry/cli-linux-arm64": "2.45.0",
36
- "@sentry/cli-linux-i686": "2.45.0",
37
- "@sentry/cli-linux-x64": "2.45.0",
38
- "@sentry/cli-win32-i686": "2.45.0",
39
- "@sentry/cli-win32-x64": "2.45.0",
40
- "@sentry/cli-win32-arm64": "2.45.0"
33
+ "@sentry/cli-darwin": "2.46.0",
34
+ "@sentry/cli-linux-arm": "2.46.0",
35
+ "@sentry/cli-linux-arm64": "2.46.0",
36
+ "@sentry/cli-linux-i686": "2.46.0",
37
+ "@sentry/cli-linux-x64": "2.46.0",
38
+ "@sentry/cli-win32-i686": "2.46.0",
39
+ "@sentry/cli-win32-x64": "2.46.0",
40
+ "@sentry/cli-win32-arm64": "2.46.0"
41
41
  },
42
42
  "scripts": {
43
43
  "postinstall": "node ./scripts/install.js",
@@ -81,6 +81,7 @@ function getDownloadUrl(platform, arch) {
81
81
  return `${releasesUrl}-Windows-${archString}.exe`;
82
82
  case 'linux':
83
83
  case 'freebsd':
84
+ case 'android':
84
85
  return `${releasesUrl}-Linux-${archString}`;
85
86
  default:
86
87
  return null;