Skip to content

Commit 294527c

Browse files
andreiborzadependabot[bot]chargomeAbhiPrasadJPeer264
authored
meta(changelog): Update changelog for 10.28.0 (#18378)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Charly Gomez <[email protected]> Co-authored-by: Abhijeet Prasad <[email protected]> Co-authored-by: Jan Peer Stöcklmair <[email protected]> Co-authored-by: Lukas Stracke <[email protected]> Co-authored-by: Onur Temizkan <[email protected]> Co-authored-by: Abdelrahman Awad <[email protected]> Co-authored-by: Rola Abuhasna <[email protected]> Co-authored-by: Nicolas Hrubec <[email protected]> Co-authored-by: Daniel Walsh <[email protected]> Co-authored-by: Max Kosty Maleyev <[email protected]> Co-authored-by: Luca Forstner <[email protected]> Co-authored-by: Neha Prasad <[email protected]>
2 parents 514eeb4 + 301edd8 commit 294527c

File tree

230 files changed

+7798
-524
lines changed

Some content is hidden

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

230 files changed

+7798
-524
lines changed

.craft.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ targets:
153153
- nodejs18.x
154154
- nodejs20.x
155155
- nodejs22.x
156+
- nodejs24.x
156157
license: MIT
157158

158159
# CDN Bundle Target

.cursor/BUGBOT.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ Do not flag the issues below if they appear in tests.
3232

3333
- When calling any `startSpan` API (`startInactiveSpan`, `startSpanManual`, etc), always ensure that the following span attributes are set:
3434
- `SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN` (`'sentry.origin'`) with a proper span origin
35+
- a proper origin must only contain [a-z], [A-Z], [0-9], `_` and `.` characters.
36+
- flag any non-conforming origin values as invalid and link to the trace origin specification (https://develop.sentry.dev/sdk/telemetry/traces/trace-origin/)
3537
- `SEMANTIC_ATTRIBUTE_SENTRY_OP` (`'sentry.op'`) with a proper span op
38+
- Span ops should be lower case only, and use snake_case. The `.` character is used to delimit op parts.
39+
- flag any non-conforming origin values as invalid and link to the span op specification (https://develop.sentry.dev/sdk/telemetry/traces/span-operations/)
3640
- When calling `captureException`, always make sure that the `mechanism` is set:
3741
- `handled`: must be set to `true` or `false`
3842
- `type`: must be set to a proper origin (i.e. identify the integration and part in the integration that caught the exception).

.github/workflows/auto-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
2121
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
2222

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

.github/workflows/build.yml

Lines changed: 26 additions & 26 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@v5
74+
uses: actions/checkout@v6
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@v5
134+
uses: actions/checkout@v6
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@v5
140+
uses: actions/checkout@v6
141141
with:
142142
ref: ${{ env.HEAD_COMMIT }}
143143

@@ -238,7 +238,7 @@ jobs:
238238
needs.job_get_metadata.outputs.is_release == 'true'
239239
steps:
240240
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
241-
uses: actions/checkout@v5
241+
uses: actions/checkout@v6
242242
with:
243243
ref: ${{ env.HEAD_COMMIT }}
244244
- name: Set up Node
@@ -267,7 +267,7 @@ jobs:
267267
needs.job_get_metadata.outputs.is_base_branch == 'true' || needs.job_get_metadata.outputs.is_release == 'true'
268268
steps:
269269
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
270-
uses: actions/checkout@v5
270+
uses: actions/checkout@v6
271271
with:
272272
ref: ${{ env.HEAD_COMMIT }}
273273
- name: Set up Node
@@ -296,7 +296,7 @@ jobs:
296296
runs-on: ubuntu-24.04
297297
steps:
298298
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
299-
uses: actions/checkout@v5
299+
uses: actions/checkout@v6
300300
with:
301301
ref: ${{ env.HEAD_COMMIT }}
302302
- name: Set up Node
@@ -325,7 +325,7 @@ jobs:
325325
runs-on: ubuntu-24.04
326326
steps:
327327
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
328-
uses: actions/checkout@v5
328+
uses: actions/checkout@v6
329329
with:
330330
ref: ${{ env.HEAD_COMMIT }}
331331

@@ -348,7 +348,7 @@ jobs:
348348
runs-on: ubuntu-24.04
349349
steps:
350350
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
351-
uses: actions/checkout@v5
351+
uses: actions/checkout@v6
352352
with:
353353
ref: ${{ env.HEAD_COMMIT }}
354354
- name: Set up Node
@@ -370,7 +370,7 @@ jobs:
370370
if: needs.job_get_metadata.outputs.is_release == 'true'
371371
steps:
372372
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
373-
uses: actions/checkout@v5
373+
uses: actions/checkout@v6
374374
with:
375375
ref: ${{ env.HEAD_COMMIT }}
376376
- name: Set up Node
@@ -405,13 +405,13 @@ jobs:
405405
runs-on: ubuntu-24.04
406406
steps:
407407
- name: Check out base commit (${{ github.event.pull_request.base.sha }})
408-
uses: actions/checkout@v5
408+
uses: actions/checkout@v6
409409
if: github.event_name == 'pull_request'
410410
with:
411411
ref: ${{ github.event.pull_request.base.sha }}
412412

413413
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
414-
uses: actions/checkout@v5
414+
uses: actions/checkout@v6
415415
with:
416416
ref: ${{ env.HEAD_COMMIT }}
417417
- name: Set up Node
@@ -452,7 +452,7 @@ jobs:
452452
runs-on: ubuntu-24.04
453453
steps:
454454
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
455-
uses: actions/checkout@v5
455+
uses: actions/checkout@v6
456456
with:
457457
ref: ${{ env.HEAD_COMMIT }}
458458
- name: Set up Node
@@ -477,7 +477,7 @@ jobs:
477477
runs-on: ubuntu-24.04
478478
steps:
479479
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
480-
uses: actions/checkout@v5
480+
uses: actions/checkout@v6
481481
with:
482482
ref: ${{ env.HEAD_COMMIT }}
483483
- name: Set up Node
@@ -509,12 +509,12 @@ jobs:
509509
node: [18, 20, 22, 24]
510510
steps:
511511
- name: Check out base commit (${{ github.event.pull_request.base.sha }})
512-
uses: actions/checkout@v5
512+
uses: actions/checkout@v6
513513
if: github.event_name == 'pull_request'
514514
with:
515515
ref: ${{ github.event.pull_request.base.sha }}
516516
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
517-
uses: actions/checkout@v5
517+
uses: actions/checkout@v6
518518
with:
519519
ref: ${{ env.HEAD_COMMIT }}
520520
- name: Set up Node
@@ -603,7 +603,7 @@ jobs:
603603

604604
steps:
605605
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
606-
uses: actions/checkout@v5
606+
uses: actions/checkout@v6
607607
with:
608608
ref: ${{ env.HEAD_COMMIT }}
609609
- name: Set up Node
@@ -667,7 +667,7 @@ jobs:
667667

668668
steps:
669669
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
670-
uses: actions/checkout@v5
670+
uses: actions/checkout@v6
671671
with:
672672
ref: ${{ env.HEAD_COMMIT }}
673673
- name: Set up Node
@@ -715,7 +715,7 @@ jobs:
715715
timeout-minutes: 5
716716
steps:
717717
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
718-
uses: actions/checkout@v5
718+
uses: actions/checkout@v6
719719
with:
720720
ref: ${{ env.HEAD_COMMIT }}
721721
- name: Set up Node
@@ -753,7 +753,7 @@ jobs:
753753
typescript: '3.8'
754754
steps:
755755
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
756-
uses: actions/checkout@v5
756+
uses: actions/checkout@v6
757757
with:
758758
ref: ${{ env.HEAD_COMMIT }}
759759
- name: Set up Node
@@ -789,7 +789,7 @@ jobs:
789789
timeout-minutes: 15
790790
steps:
791791
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
792-
uses: actions/checkout@v5
792+
uses: actions/checkout@v6
793793
with:
794794
ref: ${{ env.HEAD_COMMIT }}
795795
- name: Set up Node
@@ -810,14 +810,14 @@ jobs:
810810
needs: [job_get_metadata, job_build]
811811
if: needs.job_build.outputs.changed_remix == 'true' || github.event_name != 'pull_request'
812812
runs-on: ubuntu-24.04
813-
timeout-minutes: 10
813+
timeout-minutes: 15
814814
strategy:
815815
fail-fast: false
816816
matrix:
817817
node: [18, 20, 22, 24]
818818
steps:
819819
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
820-
uses: actions/checkout@v5
820+
uses: actions/checkout@v6
821821
with:
822822
ref: ${{ env.HEAD_COMMIT }}
823823
- name: Set up Node
@@ -864,12 +864,12 @@ jobs:
864864
matrix-optional: ${{ steps.matrix-optional.outputs.matrix }}
865865
steps:
866866
- name: Check out base commit (${{ github.event.pull_request.base.sha }})
867-
uses: actions/checkout@v5
867+
uses: actions/checkout@v6
868868
if: github.event_name == 'pull_request'
869869
with:
870870
ref: ${{ github.event.pull_request.base.sha }}
871871
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
872-
uses: actions/checkout@v5
872+
uses: actions/checkout@v6
873873
with:
874874
ref: ${{ env.HEAD_COMMIT }}
875875
- name: Set up Node
@@ -934,7 +934,7 @@ jobs:
934934
matrix: ${{ fromJson(needs.job_e2e_prepare.outputs.matrix) }}
935935
steps:
936936
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
937-
uses: actions/checkout@v5
937+
uses: actions/checkout@v6
938938
with:
939939
ref: ${{ env.HEAD_COMMIT }}
940940
- uses: pnpm/action-setup@v4
@@ -1064,7 +1064,7 @@ jobs:
10641064

10651065
steps:
10661066
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
1067-
uses: actions/checkout@v5
1067+
uses: actions/checkout@v6
10681068
with:
10691069
ref: ${{ env.HEAD_COMMIT }}
10701070
- uses: pnpm/action-setup@v4

.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@v5
34+
uses: actions/checkout@v6
3535
with:
3636
ref: ${{ env.HEAD_COMMIT }}
3737
- name: Set up Node
@@ -117,7 +117,7 @@ jobs:
117117

118118
steps:
119119
- name: Check out current commit
120-
uses: actions/checkout@v5
120+
uses: actions/checkout@v6
121121
with:
122122
ref: ${{ env.HEAD_COMMIT }}
123123
- 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@v5
17+
uses: actions/checkout@v6
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@v5
26+
- uses: actions/checkout@v6
2727

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

.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@v5
49+
uses: actions/checkout@v6
5050

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

0 commit comments

Comments
 (0)