@sentry/cli 2.0.4 → 2.1.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
@@ -1,6 +1,11 @@
1
1
  <p align="center">
2
- <img src="https://sentry-brand.storage.googleapis.com/sentry-logo-black.png" width="280">
3
- <br />
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
- The recommended way to install is with everybody's favorite curl to bash:
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=6ad23605f6e345375a80aeebc5db7dc9e42226abf63e39dd91730b8b831511a8
2
- sentry-cli-Darwin-universal=283370a6bf7356a422f39ab805094edefe15f087d512c4579b60e584cf4a3e20
3
- sentry-cli-Darwin-x86_64=f1f3ea7f5d1ed481080e8eb150b3adbf4ab02890f9ec1227e1703f7ec8e25c84
4
- sentry-cli-Linux-aarch64=e796a2d535cc59c6d72e5e19aa7604e964328b5a7e09a62f695e0d9acde9b07e
5
- sentry-cli-Linux-armv7=19ea3f1a843b37df82b310ab82e330f6f26e4ff8b20b4c98c2a47c894c2164ff
6
- sentry-cli-Linux-i686=abb2f9daeb78ba01ae3f2c36e4d64fb54fd3e937683c25f980872331c2a0e1b3
7
- sentry-cli-Linux-x86_64=46b6d913e3bfeccaf3170493942120a1b7b11b07c04e932b8fa643187c621fdf
8
- sentry-cli-Windows-i686.exe=7df3c7e672dae7338245a07685a05847dfa8d18daea51bbbab78feb95a7c0199
9
- sentry-cli-Windows-x86_64.exe=ecbc89c357bf67cfa9a2f937a10253c46f1183e8480a86c688885a0e3017003b
1
+ sentry-cli-Darwin-arm64=3cf33362885ed0ee35714c9a71f07075dc122dd6340cc2df22d3ea5033fb5094
2
+ sentry-cli-Darwin-universal=60f320848ed6f97d1c3ef0a43b5767eda6bc52a31ed3c8ed27c60cadd26f65ed
3
+ sentry-cli-Darwin-x86_64=10c51fe438e51f4a8f23d7fe35424b4a7bd5c9e76725801548b76726fdda4933
4
+ sentry-cli-Linux-aarch64=69b4499d9e9bf26a55f7f656dd0ba544bf6d0265bbe4f6ae21b37c90e07ff042
5
+ sentry-cli-Linux-armv7=699e8da7931b5890f929b4c57ca4de3e6f32cc33aa08ff461fd00d998c7131d3
6
+ sentry-cli-Linux-i686=a9e1a8c854e8bfed05b057451f47dc7cfcc005cd8ec9a0632125f9f2cc57b589
7
+ sentry-cli-Linux-x86_64=1f232077b4e689c7fea66a9e80311e3a1bd87f5b1b0c817cf43d0fa128c21c87
8
+ sentry-cli-Windows-i686.exe=0956300907078d33d7c0d02abde1fc9ccdc85102e210236734d7a0d5ca4aa684
9
+ sentry-cli-Windows-x86_64.exe=d01b88f6b0584ea3614c54e96bd7cf28b90d8551a5566c9c9d1538d6dfe77e1f
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/cli",
3
- "version": "2.0.4",
3
+ "version": "2.1.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/",