Skip to content

Commit af5369d

Browse files
committed
Merge branch 'master' into vg/log-streaming
2 parents d18413f + c7e2731 commit af5369d

51 files changed

Lines changed: 373 additions & 495 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.craft.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,6 @@ targets:
9494
checksums:
9595
- algorithm: sha256
9696
format: hex
97-
- name: pypi
98-
- name: sentry-pypi
99-
internalPypiRepo: getsentry/pypi
10097
- name: docker
10198
id: Docker Hub (release)
10299
source: ghcr.io/getsentry/sentry-cli
@@ -117,5 +114,3 @@ requireNames:
117114
- /^sentry-cli-Windows-i686.exe$/
118115
- /^sentry-cli-Windows-x86_64.exe$/
119116
- /^sentry-cli-Windows-aarch64.exe$/
120-
- /^sentry_cli-.*.tar.gz$/
121-
- /^sentry_cli-.*.whl$/

.github/workflows/build.yml

Lines changed: 3 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -234,49 +234,6 @@ jobs:
234234
path: '*.tgz'
235235
if-no-files-found: 'error'
236236

237-
python-base:
238-
name: python (base)
239-
runs-on: ubuntu-24.04
240-
steps:
241-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
242-
- name: Add Rustup Target
243-
run: rustup target add x86_64-unknown-linux-musl
244-
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # 5.6.0
245-
with:
246-
python-version: '3.11'
247-
- run: python3 -m pip install build && python3 -m build
248-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # 4.6.2
249-
with:
250-
name: python-base
251-
path: dist/*
252-
if-no-files-found: 'error'
253-
254-
python:
255-
name: python
256-
runs-on: ubuntu-24.04
257-
needs: [linux, sign-macos-binaries, windows, python-base]
258-
steps:
259-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
260-
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # 5.6.0
261-
with:
262-
python-version: '3.11'
263-
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # 4.3.0
264-
with:
265-
pattern: artifact-bin-*
266-
merge-multiple: true
267-
path: binaries
268-
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # 4.3.0
269-
with:
270-
name: python-base
271-
merge-multiple: true
272-
path: python-base
273-
- run: scripts/wheels --binaries binaries --base python-base --dest dist
274-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # 4.6.2
275-
with:
276-
name: artifact-pkg-python
277-
path: dist/*
278-
if-no-files-found: 'error'
279-
280237
npm-distributions:
281238
name: 'Build NPM distributions'
282239
runs-on: ubuntu-24.04
@@ -340,7 +297,7 @@ jobs:
340297
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # 3.11.1
341298

342299
- name: Login to GitHub Container Registry
343-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # 3.4.0
300+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # 3.5.0
344301
with:
345302
registry: ghcr.io
346303
username: ${{ github.actor }}
@@ -364,7 +321,7 @@ jobs:
364321
packages: write
365322
steps:
366323
- name: Login to GitHub Container Registry
367-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # 3.4.0
324+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # 3.5.0
368325
with:
369326
registry: ghcr.io
370327
username: ${{ github.actor }}
@@ -379,7 +336,7 @@ jobs:
379336
merge:
380337
name: Create Release Artifact
381338
runs-on: ubuntu-24.04
382-
needs: [linux, sign-macos-binaries, windows, npm-distributions, node, python]
339+
needs: [linux, sign-macos-binaries, windows, npm-distributions, node]
383340
steps:
384341
- uses: actions/upload-artifact/merge@ea165f8d65b6e75b540449e92b4886f43607fa02 # 4.6.2
385342
with:

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
# Initializes the CodeQL tools for scanning.
3939
- name: Initialize CodeQL
40-
uses: github/codeql-action/init@d6bbdef45e766d081b84a2def353b0055f728d3e # 3.29.3
40+
uses: github/codeql-action/init@51f77329afa6477de8c49fc9c7046c15b9a4e79d # 3.29.5
4141
with:
4242
languages: ${{ matrix.language }}
4343
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -48,7 +48,7 @@ jobs:
4848
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
4949
# If this step fails, then you should remove it and run the build manually (see below)
5050
- name: Autobuild
51-
uses: github/codeql-action/autobuild@d6bbdef45e766d081b84a2def353b0055f728d3e # 3.29.3
51+
uses: github/codeql-action/autobuild@51f77329afa6477de8c49fc9c7046c15b9a4e79d # 3.29.5
5252

5353
# ℹ️ Command-line programs to run using the OS shell.
5454
# 📚 https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
@@ -59,4 +59,4 @@ jobs:
5959
# make bootstrap
6060
# make release
6161
- name: Perform CodeQL Analysis
62-
uses: github/codeql-action/analyze@d6bbdef45e766d081b84a2def353b0055f728d3e # 3.29.3
62+
uses: github/codeql-action/analyze@51f77329afa6477de8c49fc9c7046c15b9a4e79d # 3.29.5

.github/workflows/lint.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- x86_64-unknown-linux-musl
2020
- x86_64-pc-windows-msvc
2121
- aarch64-apple-darwin
22+
- x86_64-apple-darwin
2223
feature-args: ['', '-Funstable-mobile-app']
2324
include:
2425
- target: x86_64-unknown-linux-musl
@@ -29,7 +30,10 @@ jobs:
2930
display-os: Windows
3031
- target: aarch64-apple-darwin
3132
os: macos-14
32-
display-os: macOS
33+
display-os: macOS – aarch64
34+
- target: x86_64-apple-darwin
35+
os: macos-14
36+
display-os: macOS – x86_64
3337
- feature-args: ''
3438
feature-suffix: ''
3539
- feature-args: '-Funstable-mobile-app'

.github/workflows/release-ghcr-latest-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-24.04
1010
steps:
1111
- name: Log in to GitHub Container Registry
12-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # 3.4.0
12+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # 3.5.0
1313
with:
1414
registry: ghcr.io
1515
username: ${{ github.actor }}

.github/workflows/release-ghcr-version-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-24.04
1010
steps:
1111
- name: Log in to GitHub Container Registry
12-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # 3.4.0
12+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # 3.5.0
1313
with:
1414
registry: ghcr.io
1515
username: ${{ github.actor }}

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- x86_64-unknown-linux-musl
2020
- x86_64-pc-windows-msvc
2121
- aarch64-apple-darwin
22+
- x86_64-apple-darwin
2223
feature-args: ['', '-Funstable-mobile-app']
2324
include:
2425
- target: x86_64-unknown-linux-musl
@@ -29,7 +30,10 @@ jobs:
2930
display-os: Windows
3031
- target: aarch64-apple-darwin
3132
os: macos-14
32-
display-os: macOS
33+
display-os: macOS – aarch64
34+
- target: x86_64-apple-darwin
35+
os: macos-14
36+
display-os: macOS – x86_64
3337
- feature-args: ''
3438
feature-suffix: ''
3539
- feature-args: '-Funstable-mobile-app'

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
22
"rust-analyzer.cargo.features": ["unstable-mobile-app"],
3-
"rust-analyzer.cargo.noDefaultFeatures": false
3+
"rust-analyzer.cargo.noDefaultFeatures": false,
4+
"rust-analyzer.check.command": "clippy"
45
}

CHANGELOG.md

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

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

5+
## 2.51.1
6+
7+
### Various fixes & improvements
8+
9+
- fix(logs): Mark `logs` command as beta (#2690) by @szokeasaurusrex
10+
11+
## 2.51.0
12+
13+
### Logs command
14+
15+
This release introduces a [new `sentry-cli logs list` command](https://github.com/getsentry/sentry-cli/pull/2664), which lists your Sentry logs. For more details, see `sentry-cli logs list --help`.
16+
17+
Please note: if you receive a `403` error when using the new command, you may need to generate a new auth token with different permissions. You can do this by navigating to _Settings_ → _Developer Settings_ → _Personal Tokens_ in Sentry. On the _Personal Tokens_ page, generate a token with `org:read` scope, and pass this to the command using `--auth-token` or by setting the `SENTRY_AUTH_TOKEN` environment variable.
18+
19+
### Various fixes & improvements
20+
21+
- fix(js): Stop calling `releases files upload-sourcemaps` (#2676) by @szokeasaurusrex
22+
523
## 2.50.2
624

725
This change removes the `mobile-app upload` experimental feature which was introduced in 2.50.1.

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.

0 commit comments

Comments
 (0)