@sentry/cli 2.33.1 → 2.34.1
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 +1 -1
- package/bin/sentry-cli-dev +19 -0
- package/checksums.txt +9 -9
- package/package.json +8 -8
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.
|
|
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=
|
|
2
|
-
sentry-cli-Darwin-universal=
|
|
3
|
-
sentry-cli-Darwin-x86_64=
|
|
4
|
-
sentry-cli-Linux-aarch64=
|
|
5
|
-
sentry-cli-Linux-armv7=
|
|
6
|
-
sentry-cli-Linux-i686=
|
|
7
|
-
sentry-cli-Linux-x86_64=
|
|
8
|
-
sentry-cli-Windows-i686.exe=
|
|
9
|
-
sentry-cli-Windows-x86_64.exe=
|
|
1
|
+
sentry-cli-Darwin-arm64=56df4f9b1c625cc6d44c661d5b0428e583dda7867f3a19212e7ac549227e3bb3
|
|
2
|
+
sentry-cli-Darwin-universal=47557d56cdf17cd3b428d37c2642dc0cf9ed7a159f754d2a5810b52f04e98a64
|
|
3
|
+
sentry-cli-Darwin-x86_64=a67dbe6b2d594c4eeb6d4c838f812df885d8d2b75561c06f8ecbbe6f86c639c8
|
|
4
|
+
sentry-cli-Linux-aarch64=884205693031f9c3d574ca5d41ada9f8cd3bac4402baf8e3013293d13fa2d450
|
|
5
|
+
sentry-cli-Linux-armv7=3775794675ba02af930766966b57e0fdd67ae5ff15ae266f5bc5169002d462db
|
|
6
|
+
sentry-cli-Linux-i686=53fa966e20ff024cbf5f26e7410a13d00fbc122fec6fc9d74c3daa96c87f63ff
|
|
7
|
+
sentry-cli-Linux-x86_64=55952c5804f0867ac4bbe9db52d99de5562cad8e3c0a617905b087f621237415
|
|
8
|
+
sentry-cli-Windows-i686.exe=739afb882aa086c712252b4a262602763fa2f1f5305341e9657e4257bbeb4391
|
|
9
|
+
sentry-cli-Windows-x86_64.exe=38a358adf634a9bd5dda3039fd6a24c9914284cf76b1a5f11a02696679a7c4f5
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.34.1",
|
|
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.
|
|
34
|
-
"@sentry/cli-linux-arm": "2.
|
|
35
|
-
"@sentry/cli-linux-arm64": "2.
|
|
36
|
-
"@sentry/cli-linux-i686": "2.
|
|
37
|
-
"@sentry/cli-linux-x64": "2.
|
|
38
|
-
"@sentry/cli-win32-i686": "2.
|
|
39
|
-
"@sentry/cli-win32-x64": "2.
|
|
33
|
+
"@sentry/cli-darwin": "2.34.1",
|
|
34
|
+
"@sentry/cli-linux-arm": "2.34.1",
|
|
35
|
+
"@sentry/cli-linux-arm64": "2.34.1",
|
|
36
|
+
"@sentry/cli-linux-i686": "2.34.1",
|
|
37
|
+
"@sentry/cli-linux-x64": "2.34.1",
|
|
38
|
+
"@sentry/cli-win32-i686": "2.34.1",
|
|
39
|
+
"@sentry/cli-win32-x64": "2.34.1"
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
42
42
|
"postinstall": "node ./scripts/install.js",
|