@sentry/cli 2.21.1 → 2.21.3

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
@@ -122,6 +122,14 @@ docker run --rm -u "$(id -u):$(id -g)" -v $(pwd):/work getsentry/sentry-cli --he
122
122
 
123
123
  This is required due to security issue in older `git` implementations. See [here](https://github.blog/2022-04-12-git-security-vulnerability-announced/) for more details.
124
124
 
125
+ ## Update
126
+
127
+ To update sentry-cli to the latest version run:
128
+
129
+ ```sh
130
+ sentry-cli update
131
+ ```
132
+
125
133
  ## Compiling
126
134
 
127
135
  In case you want to compile this yourself, you need to install at minimum the
package/checksums.txt CHANGED
@@ -1,9 +1,9 @@
1
- sentry-cli-Darwin-arm64=14873f24b9b35b5fa164899e35461d296c54910c149834495fc09890aad3e476
2
- sentry-cli-Darwin-universal=b3fa785eb951a1baa19c5eadff88f62294249e34f57bc3ca619e6ed3fcc191d8
3
- sentry-cli-Darwin-x86_64=52fb15bfb2d90fc279ae8aee2fb4adf91a93e8b56fe3969d907045c08927e03e
4
- sentry-cli-Linux-aarch64=14a0085f8008313a27b89332682d81a61621d7d368c76c93c46c5f01b34ee441
5
- sentry-cli-Linux-armv7=6363f60fbad5204abc7f70f7ca82c857c9b3c0ecde073fb5f89b23f3c808fcad
6
- sentry-cli-Linux-i686=f30d67893c9eb7b193658fb7cf2f066aa9c44af37d0c9ad4f2fd885b2abe5a1b
7
- sentry-cli-Linux-x86_64=dbdd719481867f55072c7769d04ad3f70dda648ef406b87f613722d09a0ec625
8
- sentry-cli-Windows-i686.exe=d2a3ea8c7ecdaddd8cf5fb8da09667b647a926870a6c172f42a7686cd71abdaf
9
- sentry-cli-Windows-x86_64.exe=f0fcd76905e8f0f06a7d8c35d667a485fefd88495cdc1ac0603c99e6c39e9b98
1
+ sentry-cli-Darwin-arm64=9eacdcb87c420f423c382b98ad0a001f40d8441ca691c619231794fb168effc1
2
+ sentry-cli-Darwin-universal=4aa578b939e889ade56f725e598a5b2b305c7b86ca60131c7677ac1cfd74386c
3
+ sentry-cli-Darwin-x86_64=671f4d566cd3ff35d1abb1fe644139bedf3aba22c985ecc91b552ceae3064318
4
+ sentry-cli-Linux-aarch64=ddee3ac95e065ca73108266994dc4778a057c270c61a05c304c3fd07526928ea
5
+ sentry-cli-Linux-armv7=cbb2dcbe0fe6c920db18a85a048937200bd09e72e37b7dda69aae7c34a2c82f2
6
+ sentry-cli-Linux-i686=95601d6accfb9f7d4786ae35b2852e20545e0548f8f827c2387237f033d4fe57
7
+ sentry-cli-Linux-x86_64=89c72a4bac6b49f67218807ca39a13b09babf8f8d7b385b69af189509b1e351e
8
+ sentry-cli-Windows-i686.exe=74277a3d31b631622d5e8e9c0b231e0beba3a40c7a6fe3801b5c18e0e2adeaa0
9
+ sentry-cli-Windows-x86_64.exe=4acfcd8f428c634e6abe7dee464e50b0dfac25a45797fada1dfcd75bffa422fb
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/cli",
3
- "version": "2.21.1",
3
+ "version": "2.21.3",
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/",
@@ -1,7 +1,7 @@
1
1
  #!/bin/bash
2
2
  set -eux
3
3
 
4
- DOCKER_IMAGE="getsentry/rust-musl-cross:${DOCKER_TAG}"
4
+ DOCKER_IMAGE="messense/rust-musl-cross:${DOCKER_TAG}"
5
5
  BUILD_DIR="/work"
6
6
 
7
7
  DOCKER_RUN_OPTS="
@@ -9,7 +9,6 @@ DOCKER_RUN_OPTS="
9
9
  -v $(pwd):${BUILD_DIR}:ro
10
10
  -v $(pwd)/target:${BUILD_DIR}/target
11
11
  -v $HOME/.cargo/registry:/root/.cargo/registry
12
- -e ARMV7_UNKNOWN_LINUX_MUSLEABI_OPENSSL_NO_VENDOR=1
13
12
  ${DOCKER_IMAGE}
14
13
  "
15
14