@sentry/cli 2.45.0 → 2.46.0-alpha

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=a346439eb16695ccd1dd70da850b8c64b26249b1990b24420cbf7a26929026b1
2
+ sentry-cli-Darwin-universal=317d34edfa9ca75a4e40c76a12fff878dfec15ae4f4e51d710952f05d4635def
3
+ sentry-cli-Darwin-x86_64=d66ec81948667dccc4273a7c14e12db8e7ba4ffb7b7be90a2401e3c068ea462b
4
+ sentry-cli-Linux-aarch64=fb90b86236d4afd5b726096fe91408ef42961bb962dd84f6a70622bf8d1a1adf
5
+ sentry-cli-Linux-armv7=09c79dc553258f7b6c8cfd7be3926c8ce3739af0fee5230810d68cd72ef14830
6
+ sentry-cli-Linux-i686=ec9352e11ba8313877383d05fa0a77a38f57f806d2ffd3ae06efecb13508e719
7
+ sentry-cli-Linux-x86_64=65f59031f8f5f45acf6998c491aec3f8fddc7607339eb7d3037e3c9dd79d365a
8
+ sentry-cli-Windows-aarch64.exe=9b197e4288cb00792531cde09ecde5ced063cc57dabf20f0ec553f16a97838af
9
+ sentry-cli-Windows-i686.exe=4471f72280a1a990a659bfc57b9568ab8b64760ab46a3a5a77d30ce31c4a96c9
10
+ sentry-cli-Windows-x86_64.exe=a7d20234cbaee11a5979b4dada8a3b3b2e9cb0fdbe96cde8884172e081655260
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-alpha",
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-alpha",
34
+ "@sentry/cli-linux-arm": "2.46.0-alpha",
35
+ "@sentry/cli-linux-arm64": "2.46.0-alpha",
36
+ "@sentry/cli-linux-i686": "2.46.0-alpha",
37
+ "@sentry/cli-linux-x64": "2.46.0-alpha",
38
+ "@sentry/cli-win32-i686": "2.46.0-alpha",
39
+ "@sentry/cli-win32-x64": "2.46.0-alpha",
40
+ "@sentry/cli-win32-arm64": "2.46.0-alpha"
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;