Skip to content

Commit 143510b

Browse files
andreiborzaLms24AbhiPrasadmjqmydea
authored
meta(changelog): Update changelog for 10.9.0 (#17518)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Lukas Stracke <[email protected]> Co-authored-by: Abhijeet Prasad <[email protected]> Co-authored-by: Matt Quinn <[email protected]> Co-authored-by: Francesco Gringl-Novy <[email protected]> Co-authored-by: Martin Sonnberger <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2 parents 3e58e31 + 10b5928 commit 143510b

File tree

272 files changed

+4307
-1903
lines changed

Some content is hidden

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

272 files changed

+4307
-1903
lines changed

.claude/settings.local.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
],
1212
"deny": []
1313
}
14-
}
14+
}

.git-blame-ignore-revs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@ aecf26f22dbf65ce2c0caadc4ce71b46266c9f45
2121
971b51d4b8e92aa1b93c51074e28c7cbed63b486
2222
ebc9b539548953bb9dd81d6a18adcdd91e804563
2323
c88ff463a5566194a454b58bc555f183cf9ee813
24+
25+
# chore: Ensure prettier is run on all files #17497
26+
90edf65b3d93c89ae576b063a839541022f478cf

.github/workflows/auto-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
steps:
1616
- name: Get auth token
1717
id: token
18-
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
18+
uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
1919
with:
2020
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
2121
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
2222

23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
token: ${{ steps.token.outputs.token }}
2626
fetch-depth: 0

.github/workflows/build.yml

Lines changed: 59 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
pull-requests: read
7272
steps:
7373
- name: Check out current commit
74-
uses: actions/checkout@v4
74+
uses: actions/checkout@v5
7575
with:
7676
ref: ${{ env.HEAD_COMMIT }}
7777
# We need to check out not only the fake merge commit between the PR and the base branch which GH creates, but
@@ -131,13 +131,13 @@ jobs:
131131
(needs.job_get_metadata.outputs.is_gitflow_sync == 'false' && needs.job_get_metadata.outputs.has_gitflow_label == 'false')
132132
steps:
133133
- name: Check out base commit (${{ github.event.pull_request.base.sha }})
134-
uses: actions/checkout@v4
134+
uses: actions/checkout@v5
135135
if: github.event_name == 'pull_request'
136136
with:
137137
ref: ${{ github.event.pull_request.base.sha }}
138138

139139
- name: 'Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})'
140-
uses: actions/checkout@v4
140+
uses: actions/checkout@v5
141141
with:
142142
ref: ${{ env.HEAD_COMMIT }}
143143

@@ -200,6 +200,9 @@ jobs:
200200
changed_node:
201201
${{ needs.job_get_metadata.outputs.changed_ci == 'true' || contains(steps.checkForAffected.outputs.affected,
202202
'@sentry/node') }}
203+
changed_node_overhead_action:
204+
${{ needs.job_get_metadata.outputs.changed_ci == 'true' || contains(steps.checkForAffected.outputs.affected,
205+
'@sentry-internal/node-overhead-gh-action') }}
203206
changed_deno:
204207
${{ needs.job_get_metadata.outputs.changed_ci == 'true' || contains(steps.checkForAffected.outputs.affected,
205208
'@sentry/deno') }}
@@ -235,7 +238,7 @@ jobs:
235238
needs.job_get_metadata.outputs.is_release == 'true'
236239
steps:
237240
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
238-
uses: actions/checkout@v4
241+
uses: actions/checkout@v5
239242
with:
240243
ref: ${{ env.HEAD_COMMIT }}
241244
- name: Set up Node
@@ -253,6 +256,37 @@ jobs:
253256
# Only run comparison against develop if this is a PR
254257
comparison_branch: ${{ (github.event_name == 'pull_request' && github.base_ref) || ''}}
255258

259+
job_node_overhead_check:
260+
name: Node Overhead Check
261+
needs: [job_get_metadata, job_build]
262+
timeout-minutes: 15
263+
runs-on: ubuntu-24.04
264+
if:
265+
(needs.job_build.outputs.changed_node == 'true' && github.event_name == 'pull_request') ||
266+
(needs.job_build.outputs.changed_node_overhead_action == 'true' && github.event_name == 'pull_request') ||
267+
needs.job_get_metadata.outputs.is_base_branch == 'true' || needs.job_get_metadata.outputs.is_release == 'true'
268+
steps:
269+
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
270+
uses: actions/checkout@v5
271+
with:
272+
ref: ${{ env.HEAD_COMMIT }}
273+
- name: Set up Node
274+
uses: actions/setup-node@v4
275+
with:
276+
node-version-file: 'package.json'
277+
- name: Restore caches
278+
uses: ./.github/actions/restore-cache
279+
with:
280+
dependency_cache_key: ${{ needs.job_build.outputs.dependency_cache_key }}
281+
- name: Check node overhead
282+
uses: ./dev-packages/node-overhead-gh-action
283+
env:
284+
DEBUG: '1'
285+
with:
286+
github_token: ${{ secrets.GITHUB_TOKEN }}
287+
# Only run comparison against develop if this is a PR
288+
comparison_branch: ${{ (github.event_name == 'pull_request' && github.base_ref) || ''}}
289+
256290
job_lint:
257291
name: Lint
258292
# Even though the linter only checks source code, not built code, it needs the built code in order check that all
@@ -262,7 +296,7 @@ jobs:
262296
runs-on: ubuntu-24.04
263297
steps:
264298
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
265-
uses: actions/checkout@v4
299+
uses: actions/checkout@v5
266300
with:
267301
ref: ${{ env.HEAD_COMMIT }}
268302
- name: Set up Node
@@ -288,7 +322,7 @@ jobs:
288322
runs-on: ubuntu-24.04
289323
steps:
290324
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
291-
uses: actions/checkout@v4
325+
uses: actions/checkout@v5
292326
with:
293327
ref: ${{ env.HEAD_COMMIT }}
294328

@@ -311,7 +345,7 @@ jobs:
311345
runs-on: ubuntu-24.04
312346
steps:
313347
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
314-
uses: actions/checkout@v4
348+
uses: actions/checkout@v5
315349
with:
316350
ref: ${{ env.HEAD_COMMIT }}
317351
- name: Set up Node
@@ -333,7 +367,7 @@ jobs:
333367
if: needs.job_get_metadata.outputs.is_release == 'true'
334368
steps:
335369
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
336-
uses: actions/checkout@v4
370+
uses: actions/checkout@v5
337371
with:
338372
ref: ${{ env.HEAD_COMMIT }}
339373
- name: Set up Node
@@ -368,13 +402,13 @@ jobs:
368402
runs-on: ubuntu-24.04
369403
steps:
370404
- name: Check out base commit (${{ github.event.pull_request.base.sha }})
371-
uses: actions/checkout@v4
405+
uses: actions/checkout@v5
372406
if: github.event_name == 'pull_request'
373407
with:
374408
ref: ${{ github.event.pull_request.base.sha }}
375409

376410
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
377-
uses: actions/checkout@v4
411+
uses: actions/checkout@v5
378412
with:
379413
ref: ${{ env.HEAD_COMMIT }}
380414
- name: Set up Node
@@ -415,7 +449,7 @@ jobs:
415449
runs-on: ubuntu-24.04
416450
steps:
417451
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
418-
uses: actions/checkout@v4
452+
uses: actions/checkout@v5
419453
with:
420454
ref: ${{ env.HEAD_COMMIT }}
421455
- name: Set up Node
@@ -440,7 +474,7 @@ jobs:
440474
runs-on: ubuntu-24.04
441475
steps:
442476
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
443-
uses: actions/checkout@v4
477+
uses: actions/checkout@v5
444478
with:
445479
ref: ${{ env.HEAD_COMMIT }}
446480
- name: Set up Node
@@ -472,12 +506,12 @@ jobs:
472506
node: [18, 20, 22, 24]
473507
steps:
474508
- name: Check out base commit (${{ github.event.pull_request.base.sha }})
475-
uses: actions/checkout@v4
509+
uses: actions/checkout@v5
476510
if: github.event_name == 'pull_request'
477511
with:
478512
ref: ${{ github.event.pull_request.base.sha }}
479513
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
480-
uses: actions/checkout@v4
514+
uses: actions/checkout@v5
481515
with:
482516
ref: ${{ env.HEAD_COMMIT }}
483517
- name: Set up Node
@@ -566,7 +600,7 @@ jobs:
566600

567601
steps:
568602
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
569-
uses: actions/checkout@v4
603+
uses: actions/checkout@v5
570604
with:
571605
ref: ${{ env.HEAD_COMMIT }}
572606
- name: Set up Node
@@ -630,7 +664,7 @@ jobs:
630664

631665
steps:
632666
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
633-
uses: actions/checkout@v4
667+
uses: actions/checkout@v5
634668
with:
635669
ref: ${{ env.HEAD_COMMIT }}
636670
- name: Set up Node
@@ -678,7 +712,7 @@ jobs:
678712
timeout-minutes: 5
679713
steps:
680714
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
681-
uses: actions/checkout@v4
715+
uses: actions/checkout@v5
682716
with:
683717
ref: ${{ env.HEAD_COMMIT }}
684718
- name: Set up Node
@@ -716,7 +750,7 @@ jobs:
716750
typescript: '3.8'
717751
steps:
718752
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
719-
uses: actions/checkout@v4
753+
uses: actions/checkout@v5
720754
with:
721755
ref: ${{ env.HEAD_COMMIT }}
722756
- name: Set up Node
@@ -752,7 +786,7 @@ jobs:
752786
timeout-minutes: 15
753787
steps:
754788
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
755-
uses: actions/checkout@v4
789+
uses: actions/checkout@v5
756790
with:
757791
ref: ${{ env.HEAD_COMMIT }}
758792
- name: Set up Node
@@ -780,7 +814,7 @@ jobs:
780814
node: [18, 20, 22, 24]
781815
steps:
782816
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
783-
uses: actions/checkout@v4
817+
uses: actions/checkout@v5
784818
with:
785819
ref: ${{ env.HEAD_COMMIT }}
786820
- name: Set up Node
@@ -827,12 +861,12 @@ jobs:
827861
matrix-optional: ${{ steps.matrix-optional.outputs.matrix }}
828862
steps:
829863
- name: Check out base commit (${{ github.event.pull_request.base.sha }})
830-
uses: actions/checkout@v4
864+
uses: actions/checkout@v5
831865
if: github.event_name == 'pull_request'
832866
with:
833867
ref: ${{ github.event.pull_request.base.sha }}
834868
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
835-
uses: actions/checkout@v4
869+
uses: actions/checkout@v5
836870
with:
837871
ref: ${{ env.HEAD_COMMIT }}
838872
- name: Set up Node
@@ -897,7 +931,7 @@ jobs:
897931
matrix: ${{ fromJson(needs.job_e2e_prepare.outputs.matrix) }}
898932
steps:
899933
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
900-
uses: actions/checkout@v4
934+
uses: actions/checkout@v5
901935
with:
902936
ref: ${{ env.HEAD_COMMIT }}
903937
- uses: pnpm/action-setup@v4
@@ -1027,7 +1061,7 @@ jobs:
10271061

10281062
steps:
10291063
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
1030-
uses: actions/checkout@v4
1064+
uses: actions/checkout@v5
10311065
with:
10321066
ref: ${{ env.HEAD_COMMIT }}
10331067
- uses: pnpm/action-setup@v4
@@ -1137,6 +1171,6 @@ jobs:
11371171
runs-on: ubuntu-24.04
11381172
steps:
11391173
- name: Check for failures
1140-
if: contains(needs.*.result, 'failure')
1174+
if: cancelled() || contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
11411175
run: |
11421176
echo "One of the dependent jobs have failed. You may need to re-run it." && exit 1

.github/workflows/canary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
timeout-minutes: 30
3232
steps:
3333
- name: Check out current commit
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
with:
3636
ref: ${{ env.HEAD_COMMIT }}
3737
- name: Set up Node
@@ -120,7 +120,7 @@ jobs:
120120

121121
steps:
122122
- name: Check out current commit
123-
uses: actions/checkout@v4
123+
uses: actions/checkout@v5
124124
with:
125125
ref: ${{ env.HEAD_COMMIT }}
126126
- uses: pnpm/action-setup@v4

.github/workflows/cleanup-pr-caches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
contents: read
1515
steps:
1616
- name: Check out code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Cleanup
2020
run: |

.github/workflows/clear-cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
name: Delete all caches
2424
runs-on: ubuntu-24.04
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727

2828
- name: Set up Node
2929
uses: actions/setup-node@v4

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
steps:
4848
- name: Checkout repository
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@v5
5050

5151
# Initializes the CodeQL tools for scanning.
5252
- name: Initialize CodeQL

.github/workflows/external-contributors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
&& github.event.pull_request.author_association != 'OWNER'
2121
&& endsWith(github.event.pull_request.user.login, '[bot]') == false
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
- name: Set up Node
2525
uses: actions/setup-node@v4
2626
with:

.github/workflows/flaky-test-detector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
if: ${{ github.base_ref != 'master' && github.ref != 'refs/heads/master' }}
3131
steps:
3232
- name: Check out current branch
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434
- name: Set up Node
3535
uses: actions/setup-node@v4
3636
with:

0 commit comments

Comments
 (0)