Skip to content

Commit 162f472

Browse files
committedMar 19, 2025·
release: 2.42.4
1 parent 4d4a47e commit 162f472

File tree

11 files changed

+24
-17
lines changed

11 files changed

+24
-17
lines changed
 

‎CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
"You know what they say. Fool me once, strike one, but fool me twice... strike three." — Michael Scott
44

5+
## 2.42.4
6+
7+
### Various fixes & improvements
8+
9+
- build(macos): Sign macOS binaries (#2401) by @szokeasaurusrex
10+
- ci(docker): Fix GHCR releases so they are multiarch (#2418) by @szokeasaurusrex
11+
512
## 2.42.3
613

714
### Various fixes & improvements

‎Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["Armin Ronacher <armin.ronacher@active-4.com>"]
33
build = "build.rs"
44
name = "sentry-cli"
5-
version = "2.42.3"
5+
version = "2.42.4"
66
edition = "2021"
77
rust-version = "1.80"
88

‎npm-binary-distributions/darwin/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/cli-darwin",
3-
"version": "2.42.3",
3+
"version": "2.42.4",
44
"description": "The darwin distribution of the Sentry CLI binary.",
55
"repository": "https://github.com/getsentry/sentry-cli",
66
"license": "BSD-3-Clause",

‎npm-binary-distributions/linux-arm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/cli-linux-arm",
3-
"version": "2.42.3",
3+
"version": "2.42.4",
44
"description": "The linux arm distribution of the Sentry CLI binary.",
55
"repository": "https://github.com/getsentry/sentry-cli",
66
"license": "BSD-3-Clause",

‎npm-binary-distributions/linux-arm64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/cli-linux-arm64",
3-
"version": "2.42.3",
3+
"version": "2.42.4",
44
"description": "The linux arm64 distribution of the Sentry CLI binary.",
55
"repository": "https://github.com/getsentry/sentry-cli",
66
"license": "BSD-3-Clause",

‎npm-binary-distributions/linux-i686/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/cli-linux-i686",
3-
"version": "2.42.3",
3+
"version": "2.42.4",
44
"description": "The linux x86 and ia32 distribution of the Sentry CLI binary.",
55
"repository": "https://github.com/getsentry/sentry-cli",
66
"license": "BSD-3-Clause",

‎npm-binary-distributions/linux-x64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/cli-linux-x64",
3-
"version": "2.42.3",
3+
"version": "2.42.4",
44
"description": "The linux x64 distribution of the Sentry CLI binary.",
55
"repository": "https://github.com/getsentry/sentry-cli",
66
"license": "BSD-3-Clause",

‎npm-binary-distributions/win32-i686/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/cli-win32-i686",
3-
"version": "2.42.3",
3+
"version": "2.42.4",
44
"description": "The windows x86 and ia32 distribution of the Sentry CLI binary.",
55
"repository": "https://github.com/getsentry/sentry-cli",
66
"license": "BSD-3-Clause",

‎npm-binary-distributions/win32-x64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/cli-win32-x64",
3-
"version": "2.42.3",
3+
"version": "2.42.4",
44
"description": "The windows x64 distribution of the Sentry CLI binary.",
55
"repository": "https://github.com/getsentry/sentry-cli",
66
"license": "BSD-3-Clause",

‎package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/cli",
3-
"version": "2.42.3",
3+
"version": "2.42.4",
44
"description": "A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/",
55
"repository": "git://github.com/getsentry/sentry-cli.git",
66
"homepage": "https://docs.sentry.io/hosted/learn/cli/",
@@ -30,13 +30,13 @@
3030
"prettier": "2.8.8"
3131
},
3232
"optionalDependencies": {
33-
"@sentry/cli-darwin": "2.42.3",
34-
"@sentry/cli-linux-arm": "2.42.3",
35-
"@sentry/cli-linux-arm64": "2.42.3",
36-
"@sentry/cli-linux-i686": "2.42.3",
37-
"@sentry/cli-linux-x64": "2.42.3",
38-
"@sentry/cli-win32-i686": "2.42.3",
39-
"@sentry/cli-win32-x64": "2.42.3"
33+
"@sentry/cli-darwin": "2.42.4",
34+
"@sentry/cli-linux-arm": "2.42.4",
35+
"@sentry/cli-linux-arm64": "2.42.4",
36+
"@sentry/cli-linux-i686": "2.42.4",
37+
"@sentry/cli-linux-x64": "2.42.4",
38+
"@sentry/cli-win32-i686": "2.42.4",
39+
"@sentry/cli-win32-x64": "2.42.4"
4040
},
4141
"scripts": {
4242
"postinstall": "node ./scripts/install.js",

0 commit comments

Comments
 (0)
Please sign in to comment.