@sentry/cli 2.21.2 → 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/checksums.txt CHANGED
@@ -1,9 +1,9 @@
1
- sentry-cli-Darwin-arm64=e8a9c4849e72b05c8b7c0ecfdd4fded04a312cb39870c16e7fa18c627e1398d3
2
- sentry-cli-Darwin-universal=805faf6e05247e5d6e8c755321eeaadac37686a54d4cf2fdde7d62fc54ab33df
3
- sentry-cli-Darwin-x86_64=88ba4a057db6169ca18ce342db8f8593222b3cec842cd8698a8767397b1c4eb1
4
- sentry-cli-Linux-aarch64=aa6085a9b24e349dbcef301127aebc6e8c3adfa8389964df5e91d96b3fb92e08
5
- sentry-cli-Linux-armv7=c208f78196cb14a6b3758d934e0d8ade32d784fe6d3b6ad32996976a5ee85172
6
- sentry-cli-Linux-i686=f354aaa0c4942820ed5c342a384c23dc077ccdd106dcb858d966812e3757c8ed
7
- sentry-cli-Linux-x86_64=0016d21b20d6b83fe10d514d10ca1dbed854e8694d71fada9749e702730ed728
8
- sentry-cli-Windows-i686.exe=2060d806c12d7f71e43c860973a18609f075a6b17c8875fc058398f61f35215d
9
- sentry-cli-Windows-x86_64.exe=53d48d3da7b24b04f686b75195eb18250b743999841f6305dab2a40443925ca4
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.2",
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