Skip to content

Commit c30b264

Browse files
author
getsentry-bot
committed
Merge branch 'release/2.45.0'
2 parents 47e426d + bed438e commit c30b264

File tree

12 files changed

+36
-19
lines changed

12 files changed

+36
-19
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

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

5+
## 2.45.0
6+
7+
### New feature
8+
- feat(sourcemaps): Multi-project sourcemaps upload (#2497) by @szokeasaurusrex
9+
- Sourcemaps can now be uploaded to multiple projects at once by passing each project to the `sentry-cli sourcemaps upload` command, like so:
10+
```sh
11+
sentry-cli sourcemaps upload -p project1 -p project2 /path/to/sourcemaps
12+
```
13+
- Note that users on old versions of self-hosted Sentry may need to upgrade their self-hosted server to a newer version to take advantage of multi-project uploads.
14+
15+
### Various fixes & improvements
16+
17+
- ref: Rename `fixup_js_file_end` (#2475) by @szokeasaurusrex
18+
- ref: Use slice instead of vec for assemble artifact request (#2498) by @szokeasaurusrex
19+
- ref: Separate `LegacyUploadContext` for legacy uploads (#2494) by @szokeasaurusrex
20+
- feat: Remove organization and project info log (#2490) by @szokeasaurusrex
21+
522
## 2.44.0
623

724
### Various fixes & improvements

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["Armin Ronacher <[email protected]>"]
33
build = "build.rs"
44
name = "sentry-cli"
5-
version = "2.44.0"
5+
version = "2.45.0"
66
edition = "2021"
77
rust-version = "1.80"
88

npm-binary-distributions/darwin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/cli-darwin",
3-
"version": "2.44.0",
3+
"version": "2.45.0",
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/cli-linux-arm",
3-
"version": "2.44.0",
3+
"version": "2.45.0",
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/cli-linux-arm64",
3-
"version": "2.44.0",
3+
"version": "2.45.0",
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/cli-linux-i686",
3-
"version": "2.44.0",
3+
"version": "2.45.0",
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/cli-linux-x64",
3-
"version": "2.44.0",
3+
"version": "2.45.0",
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-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/cli-win32-arm64",
3-
"version": "2.44.0",
3+
"version": "2.45.0",
44
"description": "The windows arm64 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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/cli-win32-i686",
3-
"version": "2.44.0",
3+
"version": "2.45.0",
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/cli-win32-x64",
3-
"version": "2.44.0",
3+
"version": "2.45.0",
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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/cli",
3-
"version": "2.44.0",
3+
"version": "2.45.0",
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,14 +30,14 @@
3030
"prettier": "2.8.8"
3131
},
3232
"optionalDependencies": {
33-
"@sentry/cli-darwin": "2.44.0",
34-
"@sentry/cli-linux-arm": "2.44.0",
35-
"@sentry/cli-linux-arm64": "2.44.0",
36-
"@sentry/cli-linux-i686": "2.44.0",
37-
"@sentry/cli-linux-x64": "2.44.0",
38-
"@sentry/cli-win32-i686": "2.44.0",
39-
"@sentry/cli-win32-x64": "2.44.0",
40-
"@sentry/cli-win32-arm64": "2.44.0"
33+
"@sentry/cli-darwin": "2.45.0",
34+
"@sentry/cli-linux-arm": "2.45.0",
35+
"@sentry/cli-linux-arm64": "2.45.0",
36+
"@sentry/cli-linux-i686": "2.45.0",
37+
"@sentry/cli-linux-x64": "2.45.0",
38+
"@sentry/cli-win32-i686": "2.45.0",
39+
"@sentry/cli-win32-x64": "2.45.0",
40+
"@sentry/cli-win32-arm64": "2.45.0"
4141
},
4242
"scripts": {
4343
"postinstall": "node ./scripts/install.js",

0 commit comments

Comments
 (0)