Skip to content

Commit 55fbe34

Browse files
authored
Merge branch 'master' into antonpirker/deprecation-warnings
2 parents 047db79 + 12b3ca3 commit 55fbe34

File tree

91 files changed

+3872
-1889
lines changed

Some content is hidden

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

91 files changed

+3872
-1889
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
Thank you for contributing to `sentry-python`! Please add tests to validate your changes, and lint your code using `tox -e linters`.
66

7-
Running the test suite on your PR might require maintainer approval. The AWS Lambda tests additionally require a maintainer to add a special label, and they will fail until this label is added.
7+
Running the test suite on your PR might require maintainer approval.

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- name: Get auth token
2222
id: token
23-
uses: actions/create-github-app-token@0d564482f06ca65fa9e77e2510873638c82206f2 # v1.11.5
23+
uses: actions/create-github-app-token@21cfef2b496dd8ef5b904c159339626a10ad380e # v1.11.6
2424
with:
2525
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
2626
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}

.github/workflows/scripts/trigger_tests_on_label.py

-72
This file was deleted.

.github/workflows/test-integrations-ai.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
coverage xml
8181
- name: Upload coverage to Codecov
8282
if: ${{ !cancelled() }}
83-
uses: codecov/codecov-action@v5.3.1
83+
uses: codecov/codecov-action@v5.4.0
8484
with:
8585
token: ${{ secrets.CODECOV_TOKEN }}
8686
files: coverage.xml
@@ -152,7 +152,7 @@ jobs:
152152
coverage xml
153153
- name: Upload coverage to Codecov
154154
if: ${{ !cancelled() }}
155-
uses: codecov/codecov-action@v5.3.1
155+
uses: codecov/codecov-action@v5.4.0
156156
with:
157157
token: ${{ secrets.CODECOV_TOKEN }}
158158
files: coverage.xml

.github/workflows/test-integrations-aws.yml

-126
This file was deleted.

.github/workflows/test-integrations-cloud.yml

+19-3
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ jobs:
3535
# ubuntu-20.04 is the last version that supported python3.6
3636
# see https://github.com/actions/setup-python/issues/544#issuecomment-1332535877
3737
os: [ubuntu-20.04]
38+
services:
39+
docker:
40+
image: docker:dind # Required for Docker network management
41+
options: --privileged # Required for Docker-in-Docker operations
3842
steps:
3943
- uses: actions/[email protected]
4044
- uses: actions/setup-python@v5
@@ -47,6 +51,10 @@ jobs:
4751
- name: Erase coverage
4852
run: |
4953
coverage erase
54+
- name: Test aws_lambda latest
55+
run: |
56+
set -x # print commands that are executed
57+
./scripts/runtox.sh "py${{ matrix.python-version }}-aws_lambda-latest"
5058
- name: Test boto3 latest
5159
run: |
5260
set -x # print commands that are executed
@@ -76,7 +84,7 @@ jobs:
7684
coverage xml
7785
- name: Upload coverage to Codecov
7886
if: ${{ !cancelled() }}
79-
uses: codecov/codecov-action@v5.3.1
87+
uses: codecov/codecov-action@v5.4.0
8088
with:
8189
token: ${{ secrets.CODECOV_TOKEN }}
8290
files: coverage.xml
@@ -97,12 +105,16 @@ jobs:
97105
strategy:
98106
fail-fast: false
99107
matrix:
100-
python-version: ["3.6","3.7","3.9","3.11","3.12","3.13"]
108+
python-version: ["3.6","3.7","3.8","3.9","3.11","3.12","3.13"]
101109
# python3.6 reached EOL and is no longer being supported on
102110
# new versions of hosted runners on Github Actions
103111
# ubuntu-20.04 is the last version that supported python3.6
104112
# see https://github.com/actions/setup-python/issues/544#issuecomment-1332535877
105113
os: [ubuntu-20.04]
114+
services:
115+
docker:
116+
image: docker:dind # Required for Docker network management
117+
options: --privileged # Required for Docker-in-Docker operations
106118
steps:
107119
- uses: actions/[email protected]
108120
- uses: actions/setup-python@v5
@@ -115,6 +127,10 @@ jobs:
115127
- name: Erase coverage
116128
run: |
117129
coverage erase
130+
- name: Test aws_lambda pinned
131+
run: |
132+
set -x # print commands that are executed
133+
./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-aws_lambda"
118134
- name: Test boto3 pinned
119135
run: |
120136
set -x # print commands that are executed
@@ -144,7 +160,7 @@ jobs:
144160
coverage xml
145161
- name: Upload coverage to Codecov
146162
if: ${{ !cancelled() }}
147-
uses: codecov/codecov-action@v5.3.1
163+
uses: codecov/codecov-action@v5.4.0
148164
with:
149165
token: ${{ secrets.CODECOV_TOKEN }}
150166
files: coverage.xml

.github/workflows/test-integrations-common.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
coverage xml
6565
- name: Upload coverage to Codecov
6666
if: ${{ !cancelled() }}
67-
uses: codecov/codecov-action@v5.3.1
67+
uses: codecov/codecov-action@v5.4.0
6868
with:
6969
token: ${{ secrets.CODECOV_TOKEN }}
7070
files: coverage.xml

.github/workflows/test-integrations-dbs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
coverage xml
105105
- name: Upload coverage to Codecov
106106
if: ${{ !cancelled() }}
107-
uses: codecov/codecov-action@v5.3.1
107+
uses: codecov/codecov-action@v5.4.0
108108
with:
109109
token: ${{ secrets.CODECOV_TOKEN }}
110110
files: coverage.xml
@@ -200,7 +200,7 @@ jobs:
200200
coverage xml
201201
- name: Upload coverage to Codecov
202202
if: ${{ !cancelled() }}
203-
uses: codecov/codecov-action@v5.3.1
203+
uses: codecov/codecov-action@v5.4.0
204204
with:
205205
token: ${{ secrets.CODECOV_TOKEN }}
206206
files: coverage.xml

.github/workflows/test-integrations-flags.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
coverage xml
7777
- name: Upload coverage to Codecov
7878
if: ${{ !cancelled() }}
79-
uses: codecov/codecov-action@v5.3.1
79+
uses: codecov/codecov-action@v5.4.0
8080
with:
8181
token: ${{ secrets.CODECOV_TOKEN }}
8282
files: coverage.xml

.github/workflows/test-integrations-gevent.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
coverage xml
6565
- name: Upload coverage to Codecov
6666
if: ${{ !cancelled() }}
67-
uses: codecov/codecov-action@v5.3.1
67+
uses: codecov/codecov-action@v5.4.0
6868
with:
6969
token: ${{ secrets.CODECOV_TOKEN }}
7070
files: coverage.xml

.github/workflows/test-integrations-graphql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
coverage xml
7777
- name: Upload coverage to Codecov
7878
if: ${{ !cancelled() }}
79-
uses: codecov/codecov-action@v5.3.1
79+
uses: codecov/codecov-action@v5.4.0
8080
with:
8181
token: ${{ secrets.CODECOV_TOKEN }}
8282
files: coverage.xml

.github/workflows/test-integrations-misc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
coverage xml
8585
- name: Upload coverage to Codecov
8686
if: ${{ !cancelled() }}
87-
uses: codecov/codecov-action@v5.3.1
87+
uses: codecov/codecov-action@v5.4.0
8888
with:
8989
token: ${{ secrets.CODECOV_TOKEN }}
9090
files: coverage.xml

.github/workflows/test-integrations-network.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
coverage xml
7373
- name: Upload coverage to Codecov
7474
if: ${{ !cancelled() }}
75-
uses: codecov/codecov-action@v5.3.1
75+
uses: codecov/codecov-action@v5.4.0
7676
with:
7777
token: ${{ secrets.CODECOV_TOKEN }}
7878
files: coverage.xml
@@ -136,7 +136,7 @@ jobs:
136136
coverage xml
137137
- name: Upload coverage to Codecov
138138
if: ${{ !cancelled() }}
139-
uses: codecov/codecov-action@v5.3.1
139+
uses: codecov/codecov-action@v5.4.0
140140
with:
141141
token: ${{ secrets.CODECOV_TOKEN }}
142142
files: coverage.xml

0 commit comments

Comments
 (0)