@sentry/cli 2.53.0-alpha → 2.54.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/checksums.txt CHANGED
@@ -1,10 +1,7 @@
1
- sentry-cli-Darwin-arm64=f7bd6636a31aea75f9cdb828ecea10017ae288e20b8d59a23105bf83ef793166
2
- sentry-cli-Darwin-universal=bd9f0afce0a38d1854205c0b608a7a336b287686aeb3be39753a9a92ba8b9dce
3
- sentry-cli-Darwin-x86_64=b5fb8bee1cd2212829c3a088788b4b1df9616dd376c3fa8907f43502da60768d
4
- sentry-cli-Linux-aarch64=a432521cd699c8d4ace732f8002b0f25ee4b458baae9c5d184fb3144b13a257c
5
- sentry-cli-Linux-armv7=91001894587f5569999a82068b101b0302aaaf0acbda7b314462e1b533b6863c
6
- sentry-cli-Linux-i686=205e4ba22e5a3882bf83d9b7a0a8d9a5259ddbe8957db577a9df65c48270516c
7
- sentry-cli-Linux-x86_64=4e9b7d4455218d66efdbdaf7408796ba0845480fb79f2e2364d8d55da0bca3f0
8
- sentry-cli-Windows-aarch64.exe=aa29ba402bc211c0a116aa31424d1f2a864d787a5ac36f1db2e4fa435d043110
9
- sentry-cli-Windows-i686.exe=ffc2494a8c7f63914eec2d802dffef40bcea0eda4294ebe290610558c31857aa
10
- sentry-cli-Windows-x86_64.exe=e9042b4abb28f57ef3ed4e6dc3211fbb498cb9479a531591b7c7b05d799ab20a
1
+ sentry-cli-Linux-aarch64=8c59d5d93a5cb6cc09873a7548e011d6e594f42f88d50e4ad5542c1494586047
2
+ sentry-cli-Linux-armv7=ba062d3bd4e3ab56e8c9dcb7d85c4b1a17392356e0a393c41195411e30e0070d
3
+ sentry-cli-Linux-i686=600e78cd10dd2a8e3a0deb0ba5ccd14b2be2984c4bae831219b4b430b89d4c02
4
+ sentry-cli-Linux-x86_64=3bd243899a31908154e19f65219fd13984166c45ce95393aa4d90c4f37c14194
5
+ sentry-cli-Windows-aarch64.exe=43d87b409c8efda51df6f7866b6421c1bd6d8354032006a46901a652ad9d768d
6
+ sentry-cli-Windows-i686.exe=070f513b06b42604a68fdeb80c6dc2c6b8c9cff139ae5f819f93ad459a093313
7
+ sentry-cli-Windows-x86_64.exe=0a445473c83d6609ec8fde303588adb5d208615b7f802fdd8f0a37e22d95e426
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/cli",
3
- "version": "2.53.0-alpha",
3
+ "version": "2.54.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/",
@@ -32,14 +32,14 @@
32
32
  "typescript": "~5.8.3"
33
33
  },
34
34
  "optionalDependencies": {
35
- "@sentry/cli-darwin": "2.53.0-alpha",
36
- "@sentry/cli-linux-arm": "2.53.0-alpha",
37
- "@sentry/cli-linux-arm64": "2.53.0-alpha",
38
- "@sentry/cli-linux-i686": "2.53.0-alpha",
39
- "@sentry/cli-linux-x64": "2.53.0-alpha",
40
- "@sentry/cli-win32-i686": "2.53.0-alpha",
41
- "@sentry/cli-win32-x64": "2.53.0-alpha",
42
- "@sentry/cli-win32-arm64": "2.53.0-alpha"
35
+ "@sentry/cli-darwin": "2.54.0",
36
+ "@sentry/cli-linux-arm": "2.54.0",
37
+ "@sentry/cli-linux-arm64": "2.54.0",
38
+ "@sentry/cli-linux-i686": "2.54.0",
39
+ "@sentry/cli-linux-x64": "2.54.0",
40
+ "@sentry/cli-win32-i686": "2.54.0",
41
+ "@sentry/cli-win32-x64": "2.54.0",
42
+ "@sentry/cli-win32-arm64": "2.54.0"
43
43
  },
44
44
  "scripts": {
45
45
  "postinstall": "node ./scripts/install.js",
@@ -62,7 +62,10 @@
62
62
  ]
63
63
  },
64
64
  "volta": {
65
- "node": "20.10.0",
66
- "yarn": "1.22.19"
65
+ "node": "24.8.0",
66
+ "npm": "11.6.0"
67
+ },
68
+ "overrides": {
69
+ "browserslist": "<4.26.0 || >4.26.0"
67
70
  }
68
71
  }
@@ -0,0 +1,22 @@
1
+ #!/bin/bash
2
+
3
+ # This script is run by Craft after a release is created.
4
+ # We currently use it to bump the platform-specific optional dependencies to their new versions
5
+ # in the package-lock.json, immediately after a release is created. This is needed for CI to
6
+ # pass after the release is created.c
7
+
8
+ set -eux
9
+ OLD_VERSION="${1}"
10
+ NEW_VERSION="${2}"
11
+
12
+ git checkout master
13
+
14
+ # We need to update the package-lock.json to include the new version of the optional dependencies.
15
+ npm install --package-lock-only
16
+
17
+ git add package-lock.json
18
+
19
+ # Only commit if there are changes
20
+ git diff --staged --quiet || git commit -m "build(npm): 🤖 Bump optional dependencies to ${NEW_VERSION}"
21
+ git pull --rebase
22
+ git push
@@ -1,33 +0,0 @@
1
- #!/bin/bash
2
- set -eux
3
-
4
- DOCKER_IMAGE="messense/rust-musl-cross:${DOCKER_TAG}"
5
- BUILD_DIR="/work"
6
-
7
- DOCKER_RUN_OPTS="
8
- -w ${BUILD_DIR}
9
- -v $(pwd):${BUILD_DIR}:ro
10
- -v $(pwd)/target:${BUILD_DIR}/target
11
- -v $HOME/.cargo/registry:/root/.cargo/registry
12
- ${DOCKER_IMAGE}
13
- "
14
-
15
- docker run \
16
- ${DOCKER_RUN_OPTS} \
17
- cargo build --release --target=${TARGET} --locked
18
-
19
- # Smoke test (but only when building from the same repo).
20
- # $TRAVIS_PULL_REQUEST_SLUG is set either to head repo slug, or to "" when
21
- # building branches.
22
- if [[ "${TRAVIS_PULL_REQUEST_SLUG:-x}" =~ ^(getsentry/sentry-cli)?$ ]]; then
23
- env | grep SENTRY_ > .env
24
- docker run \
25
- --env-file=.env \
26
- ${DOCKER_RUN_OPTS} \
27
- cargo run --release --target=${TARGET} -- releases list
28
- fi
29
-
30
- # Fix permissions for shared directories
31
- USER_ID=$(id -u)
32
- GROUP_ID=$(id -g)
33
- sudo chown -R ${USER_ID}:${GROUP_ID} target/ $HOME/.cargo