Skip to content

Commit c26763f

Browse files
Merge remote-tracking branch 'origin/master' into fix-litestar-middleware-failed-request-status-codes
2 parents 524e77e + c2d5a76 commit c26763f

File tree

91 files changed

+2023
-751
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

+2023
-751
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @getsentry/team-web-sdk-backend
1+
* @getsentry/owners-python-sdk

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: 🐞 Bug Report
22
description: Tell us about something that's not working the way we (probably) intend.
3+
labels: ["Python", "Bug"]
34
body:
45
- type: dropdown
56
id: type

.github/ISSUE_TEMPLATE/feature.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: 💡 Feature Request
22
description: Create a feature request for sentry-python SDK.
3-
labels: 'enhancement'
3+
labels: ["Python", "Feature"]
44
body:
55
- type: markdown
66
attributes:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
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@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1.12.0
23+
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
2424
with:
2525
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
2626
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
python-version: ["3.7","3.9","3.11","3.12"]
32+
python-version: ["3.9","3.11","3.12"]
3333
# python3.6 reached EOL and is no longer being supported on
3434
# new versions of hosted runners on Github Actions
3535
# ubuntu-20.04 is the last version that supported python3.6
@@ -83,7 +83,7 @@ jobs:
8383
coverage xml
8484
- name: Upload coverage to Codecov
8585
if: ${{ !cancelled() }}
86-
uses: codecov/[email protected].0
86+
uses: codecov/[email protected].3
8787
with:
8888
token: ${{ secrets.CODECOV_TOKEN }}
8989
files: coverage.xml
@@ -104,7 +104,7 @@ jobs:
104104
strategy:
105105
fail-fast: false
106106
matrix:
107-
python-version: ["3.8","3.9","3.11","3.12"]
107+
python-version: ["3.8","3.9","3.10","3.11","3.12","3.13"]
108108
# python3.6 reached EOL and is no longer being supported on
109109
# new versions of hosted runners on Github Actions
110110
# ubuntu-20.04 is the last version that supported python3.6
@@ -158,7 +158,7 @@ jobs:
158158
coverage xml
159159
- name: Upload coverage to Codecov
160160
if: ${{ !cancelled() }}
161-
uses: codecov/[email protected].0
161+
uses: codecov/[email protected].3
162162
with:
163163
token: ${{ secrets.CODECOV_TOKEN }}
164164
files: coverage.xml

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
coverage xml
8888
- name: Upload coverage to Codecov
8989
if: ${{ !cancelled() }}
90-
uses: codecov/[email protected].0
90+
uses: codecov/[email protected].3
9191
with:
9292
token: ${{ secrets.CODECOV_TOKEN }}
9393
files: coverage.xml
@@ -166,7 +166,7 @@ jobs:
166166
coverage xml
167167
- name: Upload coverage to Codecov
168168
if: ${{ !cancelled() }}
169-
uses: codecov/[email protected].0
169+
uses: codecov/[email protected].3
170170
with:
171171
token: ${{ secrets.CODECOV_TOKEN }}
172172
files: coverage.xml

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
coverage xml
6868
- name: Upload coverage to Codecov
6969
if: ${{ !cancelled() }}
70-
uses: codecov/[email protected].0
70+
uses: codecov/[email protected].3
7171
with:
7272
token: ${{ secrets.CODECOV_TOKEN }}
7373
files: coverage.xml

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
coverage xml
108108
- name: Upload coverage to Codecov
109109
if: ${{ !cancelled() }}
110-
uses: codecov/[email protected].0
110+
uses: codecov/[email protected].3
111111
with:
112112
token: ${{ secrets.CODECOV_TOKEN }}
113113
files: coverage.xml
@@ -206,7 +206,7 @@ jobs:
206206
coverage xml
207207
- name: Upload coverage to Codecov
208208
if: ${{ !cancelled() }}
209-
uses: codecov/[email protected].0
209+
uses: codecov/[email protected].3
210210
with:
211211
token: ${{ secrets.CODECOV_TOKEN }}
212212
files: coverage.xml

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
coverage xml
8080
- name: Upload coverage to Codecov
8181
if: ${{ !cancelled() }}
82-
uses: codecov/[email protected].0
82+
uses: codecov/[email protected].3
8383
with:
8484
token: ${{ secrets.CODECOV_TOKEN }}
8585
files: coverage.xml

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
coverage xml
6868
- name: Upload coverage to Codecov
6969
if: ${{ !cancelled() }}
70-
uses: codecov/[email protected].0
70+
uses: codecov/[email protected].3
7171
with:
7272
token: ${{ secrets.CODECOV_TOKEN }}
7373
files: coverage.xml

0 commit comments

Comments
 (0)