@sentry/cli 2.0.4 → 2.3.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 +19 -3
- package/checksums.txt +9 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
|
|
3
|
-
<
|
|
2
|
+
<a href="https://sentry.io/?utm_source=github&utm_medium=logo" target="_blank">
|
|
3
|
+
<picture>
|
|
4
|
+
<source srcset="https://sentry-brand.storage.googleapis.com/sentry-logo-white.png" media="(prefers-color-scheme: dark)" />
|
|
5
|
+
<source srcset="https://sentry-brand.storage.googleapis.com/sentry-logo-black.png" media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" />
|
|
6
|
+
<img src="https://sentry-brand.storage.googleapis.com/sentry-logo-black.png" alt="Sentry" width="280">
|
|
7
|
+
</picture>
|
|
8
|
+
</a>
|
|
4
9
|
</p>
|
|
5
10
|
|
|
6
11
|
# Official Sentry Command Line Interface
|
|
@@ -20,10 +25,21 @@ fastlane tools.
|
|
|
20
25
|
|
|
21
26
|
## Installation
|
|
22
27
|
|
|
23
|
-
|
|
28
|
+
If you are on OS X or Linux, you can use the automated downloader which will fetch the latest release version for you and install it:
|
|
24
29
|
|
|
25
30
|
curl -sL https://sentry.io/get-cli/ | bash
|
|
26
31
|
|
|
32
|
+
We do however, encourage you to pin the specific version of the CLI, so your builds are always reproducible.
|
|
33
|
+
To do that, you can use the exact same method, with an additional version specifier:
|
|
34
|
+
|
|
35
|
+
curl -sL https://sentry.io/get-cli/ | SENTRY_CLI_VERSION=2.0.4 bash
|
|
36
|
+
|
|
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
|
+
|
|
39
|
+
To verify it’s installed correctly you can bring up the help:
|
|
40
|
+
|
|
41
|
+
sentry-cli --help
|
|
42
|
+
|
|
27
43
|
### Node
|
|
28
44
|
|
|
29
45
|
Additionally you can also install this binary via npm:
|
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=bc2a50eb9db45dfb2157723bcd0b0995436e57883389b8a26f99342de83083a3
|
|
2
|
+
sentry-cli-Darwin-universal=64daf76a3611e75440326f47064f7d2ed6eb726e69315bf4ed3ff263fd496617
|
|
3
|
+
sentry-cli-Darwin-x86_64=8bbd093b3648fcd128158dfbe048c45e9ac30e99b41204b019dc16bba53d6c3d
|
|
4
|
+
sentry-cli-Linux-aarch64=826359cc670730361ab444248a922e6276c61801ebdd5c4634107388d8e64cab
|
|
5
|
+
sentry-cli-Linux-armv7=7d83ba9e473b4bfda92ff3770d58a09820bb2649c824797b236b8d2fa3f4997f
|
|
6
|
+
sentry-cli-Linux-i686=bf7c5ebf8d173831932a4be1627431076f0f625df2056598c98b37dd5c6fa753
|
|
7
|
+
sentry-cli-Linux-x86_64=900fb305c6122a3e99671d62f64c99c91f74fc2f30bec802e668820493e30fb0
|
|
8
|
+
sentry-cli-Windows-i686.exe=ca8e144e2262210f1e77c1448f69ab91bc23f83e08f966bb52364855443ab606
|
|
9
|
+
sentry-cli-Windows-x86_64.exe=4033a4c30c493135d16e69c747e10e90ca596f78ec8b56ec815d790fd46a9dec
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/cli",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.3.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/",
|