@sentry/cli 2.44.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=9d1dedeac34bb93ed4d556ec3bd6a62f5027867bedda114b41d7453e93e341fd
2
- sentry-cli-Darwin-universal=73bb1d6e53a92a33bd31e473b419ed30d6b0e0618c320bc62ec50bf8bc5097a2
3
- sentry-cli-Darwin-x86_64=9e0f72ae74bc6cb1a4ba8560f9adf6f247b3b7727e9ad5574f1c56793e978f64
4
- sentry-cli-Linux-aarch64=98d98edc82c96c29e63175890e7b04077258bb109df98c826bc276fce367f292
5
- sentry-cli-Linux-armv7=c6d105d1b088a4e5115a18c96aa45a5379d05e845e0772f10f7c5fc7010de7b3
6
- sentry-cli-Linux-i686=a29e04547c2e6da315ab0b64e176f617e8aa13c323da3b250e960392047c0eb9
7
- sentry-cli-Linux-x86_64=1961fe5654a20541ed887880a705278c0913d63705c74b48f6835524ce415d1b
8
- sentry-cli-Windows-aarch64.exe=5a9a85d8498c88611f509f99691ac7fa21af5815f8d02bf5040507a6fc89cd66
9
- sentry-cli-Windows-i686.exe=c954486554851e8efc421d17096a3166e27b1268c765539364548d1345954dfa
10
- sentry-cli-Windows-x86_64.exe=e9a3416fa401e5a4e92c8d9d69ceda075218297ca8d890a01b05628f596ea261
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.44.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.44.0",
34
- "@sentry/cli-linux-arm": "2.44.0",
35
- "@sentry/cli-linux-arm64": "2.44.0",
36
- "@sentry/cli-linux-i686": "2.44.0",
37
- "@sentry/cli-linux-x64": "2.44.0",
38
- "@sentry/cli-win32-i686": "2.44.0",
39
- "@sentry/cli-win32-x64": "2.44.0",
40
- "@sentry/cli-win32-arm64": "2.44.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;