@sentry/cli 2.33.0 → 2.34.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/README.md CHANGED
@@ -32,7 +32,7 @@ If you are on OS X or Linux, you can use the automated downloader which will fet
32
32
  We do, however, encourage you to pin the specific version of the CLI, so your builds are always reproducible.
33
33
  To do that, you can use the exact same method, with an additional version specifier:
34
34
 
35
- curl -sL https://sentry.io/get-cli/ | SENTRY_CLI_VERSION=2.0.4 bash
35
+ curl -sL https://sentry.io/get-cli/ | SENTRY_CLI_VERSION=2.33.1 bash
36
36
 
37
37
  This will automatically download the correct version of `sentry-cli` for your operating system and install it. If necessary, it will prompt for your admin password for `sudo`. For a different installation location or for systems without `sudo` (like Windows), you can `export INSTALL_DIR=/custom/installation/path` before running this command.
38
38
 
@@ -0,0 +1,19 @@
1
+ #!/usr/bin/env node
2
+
3
+ 'use strict';
4
+
5
+ const childProcess = require('child_process');
6
+ const path = require('path');
7
+
8
+ const child = childProcess
9
+ .spawn(path.join(__dirname, '../target/debug/sentry-cli'), process.argv.slice(2), {
10
+ stdio: 'inherit',
11
+ })
12
+ .on('error', (err) => {
13
+ console.error(err); // eslint-disable-line no-console
14
+ process.exit(1);
15
+ })
16
+ .on('exit', (code) => process.exit(code));
17
+
18
+ process.on('SIGTERM', () => child.kill('SIGTERM'));
19
+ process.on('SIGINT', () => child.kill('SIGINT'));
package/checksums.txt CHANGED
@@ -1,9 +1,9 @@
1
- sentry-cli-Darwin-arm64=21b417392b8ff8512bae4d863a46a379864e1ceff00bc873a7f8165b9dd4aefa
2
- sentry-cli-Darwin-universal=3a8d31d4189c90054198b215d26f21d50f622f134036ff3f573b42e124669ec3
3
- sentry-cli-Darwin-x86_64=6fcc60536ee8c6d8d3f4640f3c9441bd7837ae13460a6618b4bb2920af96b190
4
- sentry-cli-Linux-aarch64=10b142d6aa67e0f678a15bee4e7b8699b0305f3c813f9cfbf67ec112b7a01a90
5
- sentry-cli-Linux-armv7=3cdc85a113fe6805e468b6771c28682fd85e2670b6ab92da9b93174a9d7bc064
6
- sentry-cli-Linux-i686=cae978b1345de79c9b04e316e2c3c5f305d76e12e8a206af7b4e120869233aba
7
- sentry-cli-Linux-x86_64=652fe25aef94870b7a266a97e9c1cab3b6f09b1b9629e9729ffc18358c1fc0e7
8
- sentry-cli-Windows-i686.exe=f6e355b556fda1e57879bce6b6b3e7053a70d9161cf147361ad480c3f07d3ad3
9
- sentry-cli-Windows-x86_64.exe=a49885b721cf3d1333e2dd654f5a753a5a389a67caf1717971360d717f3d1f93
1
+ sentry-cli-Darwin-arm64=5bfb92bf26f97d2cf42371a7743ac03e347d264fc6b282925ecf9e341124086a
2
+ sentry-cli-Darwin-universal=6704130938b41b914d6dc3fb99130f860062a0e1fbb7870b178c5c842c85ed45
3
+ sentry-cli-Darwin-x86_64=6198e6b5a998168d2d1d1d91f55202a69ebe31175d6330e82f01cdada8a56c62
4
+ sentry-cli-Linux-aarch64=0e739e82848388f3319a506840ddada4b8d47a6ffcb12c9d70c588e3b037894c
5
+ sentry-cli-Linux-armv7=eb8372143ce3a969e41f43c015f8cd0ac59237adf2d95083b2c5a49a1ec5e83f
6
+ sentry-cli-Linux-i686=a2415db0edd7210a7325f1c63ba9c2b4221babf9684de16702bc24777ec940c0
7
+ sentry-cli-Linux-x86_64=13b9338a927a6826ba455699dc0615678918a631c48e72b204fa7b65adb7d032
8
+ sentry-cli-Windows-i686.exe=1a47533a745b65e9e7337e79da7c988726d9009a5ff39e8f6572b97205b0fefe
9
+ sentry-cli-Windows-x86_64.exe=1af3cda13f9c78013b0b427bb97e6f4fe7294489e062900ce0b306cbfe27af12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/cli",
3
- "version": "2.33.0",
3
+ "version": "2.34.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,13 +30,13 @@
30
30
  "prettier": "2.8.8"
31
31
  },
32
32
  "optionalDependencies": {
33
- "@sentry/cli-darwin": "2.33.0",
34
- "@sentry/cli-linux-arm": "2.33.0",
35
- "@sentry/cli-linux-arm64": "2.33.0",
36
- "@sentry/cli-linux-i686": "2.33.0",
37
- "@sentry/cli-linux-x64": "2.33.0",
38
- "@sentry/cli-win32-i686": "2.33.0",
39
- "@sentry/cli-win32-x64": "2.33.0"
33
+ "@sentry/cli-darwin": "2.34.0",
34
+ "@sentry/cli-linux-arm": "2.34.0",
35
+ "@sentry/cli-linux-arm64": "2.34.0",
36
+ "@sentry/cli-linux-i686": "2.34.0",
37
+ "@sentry/cli-linux-x64": "2.34.0",
38
+ "@sentry/cli-win32-i686": "2.34.0",
39
+ "@sentry/cli-win32-x64": "2.34.0"
40
40
  },
41
41
  "scripts": {
42
42
  "postinstall": "node ./scripts/install.js",