Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
5e30a3d
chore: Remove experimental from Nuxt SDK package description (#17483)
Lms24 Aug 29, 2025
614e343
Merge branch 'develop' into manual-develop-sync-10.8.0
Lms24 Aug 29, 2025
ff09016
Merge pull request #17486 from getsentry/manual-develop-sync-10.8.0
Lms24 Aug 29, 2025
499b79a
fix(core): Only set template attributes on logs if parameters exist (…
AbhiPrasad Aug 29, 2025
7931f8d
fix(nextjs): Fix parameterization for root catchall routes (#17489)
mjq Sep 1, 2025
abdc3b5
feat(browser): Add replay.feedback CDN bundle (#17496)
mydea Sep 1, 2025
e19c3ef
feat(browser): Export `sendFeedback` from CDN bundles (#17495)
mydea Sep 1, 2025
90edf65
chore: Ensure prettier is run on all files (#17497)
mydea Sep 1, 2025
ec29e5d
chore: Ignore prettier commit for git blame (#17498)
mydea Sep 1, 2025
4c6c012
fix(node-core): Shut down OTel TraceProvider when calling `Sentry.clo…
Lms24 Sep 1, 2025
1854214
fix(astro): Ensure span name from `beforeStartSpan` isn't overwritten…
Lms24 Sep 1, 2025
5d9e1bb
test(aws): Improve reliability on CI (#17502)
msonnb Sep 2, 2025
1df660b
fix(browser): Ensure source is set correctly when updating span name …
Lms24 Sep 2, 2025
d269f1c
ci: Ensure we fail on cancelled jobs (#17506)
mydea Sep 2, 2025
94b268d
ci: Capture overhead in node app (#17420)
mydea Sep 2, 2025
dcbe98d
ci(deps): bump actions/create-github-app-token from 2.0.6 to 2.1.1 (#…
dependabot[bot] Sep 2, 2025
12528ec
ci(deps): bump actions/checkout from 4 to 5 (#17505)
dependabot[bot] Sep 2, 2025
84243e6
feat(node): Update `httpIntegration` handling of incoming requests (#…
mydea Sep 3, 2025
14eba56
chore: Add `changelog` script back to package.json (#17517)
andreiborza Sep 3, 2025
10b5928
meta(changelog): Update changelog for 10.9.0
andreiborza Sep 3, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude/settings.local.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
],
"deny": []
}
}
}
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ aecf26f22dbf65ce2c0caadc4ce71b46266c9f45
971b51d4b8e92aa1b93c51074e28c7cbed63b486
ebc9b539548953bb9dd81d6a18adcdd91e804563
c88ff463a5566194a454b58bc555f183cf9ee813

# chore: Ensure prettier is run on all files #17497
90edf65b3d93c89ae576b063a839541022f478cf
4 changes: 2 additions & 2 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
steps:
- name: Get auth token
id: token
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
with:
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}

- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
token: ${{ steps.token.outputs.token }}
fetch-depth: 0
Expand Down
84 changes: 59 additions & 25 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
pull-requests: read
steps:
- name: Check out current commit
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
# We need to check out not only the fake merge commit between the PR and the base branch which GH creates, but
Expand Down Expand Up @@ -131,13 +131,13 @@ jobs:
(needs.job_get_metadata.outputs.is_gitflow_sync == 'false' && needs.job_get_metadata.outputs.has_gitflow_label == 'false')
steps:
- name: Check out base commit (${{ github.event.pull_request.base.sha }})
uses: actions/checkout@v4
uses: actions/checkout@v5
if: github.event_name == 'pull_request'
with:
ref: ${{ github.event.pull_request.base.sha }}

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

Expand Down Expand Up @@ -200,6 +200,9 @@ jobs:
changed_node:
${{ needs.job_get_metadata.outputs.changed_ci == 'true' || contains(steps.checkForAffected.outputs.affected,
'@sentry/node') }}
changed_node_overhead_action:
${{ needs.job_get_metadata.outputs.changed_ci == 'true' || contains(steps.checkForAffected.outputs.affected,
'@sentry-internal/node-overhead-gh-action') }}
changed_deno:
${{ needs.job_get_metadata.outputs.changed_ci == 'true' || contains(steps.checkForAffected.outputs.affected,
'@sentry/deno') }}
Expand Down Expand Up @@ -235,7 +238,7 @@ jobs:
needs.job_get_metadata.outputs.is_release == 'true'
steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- name: Set up Node
Expand All @@ -253,6 +256,37 @@ jobs:
# Only run comparison against develop if this is a PR
comparison_branch: ${{ (github.event_name == 'pull_request' && github.base_ref) || ''}}

job_node_overhead_check:
name: Node Overhead Check
needs: [job_get_metadata, job_build]
timeout-minutes: 15
runs-on: ubuntu-24.04
if:
(needs.job_build.outputs.changed_node == 'true' && github.event_name == 'pull_request') ||
(needs.job_build.outputs.changed_node_overhead_action == 'true' && github.event_name == 'pull_request') ||
needs.job_get_metadata.outputs.is_base_branch == 'true' || needs.job_get_metadata.outputs.is_release == 'true'
steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
- name: Restore caches
uses: ./.github/actions/restore-cache
with:
dependency_cache_key: ${{ needs.job_build.outputs.dependency_cache_key }}
- name: Check node overhead
uses: ./dev-packages/node-overhead-gh-action
env:
DEBUG: '1'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# Only run comparison against develop if this is a PR
comparison_branch: ${{ (github.event_name == 'pull_request' && github.base_ref) || ''}}

job_lint:
name: Lint
# Even though the linter only checks source code, not built code, it needs the built code in order check that all
Expand All @@ -262,7 +296,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- name: Set up Node
Expand All @@ -288,7 +322,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}

Expand All @@ -311,7 +345,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- name: Set up Node
Expand All @@ -333,7 +367,7 @@ jobs:
if: needs.job_get_metadata.outputs.is_release == 'true'
steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- name: Set up Node
Expand Down Expand Up @@ -368,13 +402,13 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Check out base commit (${{ github.event.pull_request.base.sha }})
uses: actions/checkout@v4
uses: actions/checkout@v5
if: github.event_name == 'pull_request'
with:
ref: ${{ github.event.pull_request.base.sha }}

- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- name: Set up Node
Expand Down Expand Up @@ -415,7 +449,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- name: Set up Node
Expand All @@ -440,7 +474,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- name: Set up Node
Expand Down Expand Up @@ -472,12 +506,12 @@ jobs:
node: [18, 20, 22, 24]
steps:
- name: Check out base commit (${{ github.event.pull_request.base.sha }})
uses: actions/checkout@v4
uses: actions/checkout@v5
if: github.event_name == 'pull_request'
with:
ref: ${{ github.event.pull_request.base.sha }}
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- name: Set up Node
Expand Down Expand Up @@ -566,7 +600,7 @@ jobs:

steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- name: Set up Node
Expand Down Expand Up @@ -630,7 +664,7 @@ jobs:

steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- name: Set up Node
Expand Down Expand Up @@ -678,7 +712,7 @@ jobs:
timeout-minutes: 5
steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- name: Set up Node
Expand Down Expand Up @@ -716,7 +750,7 @@ jobs:
typescript: '3.8'
steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- name: Set up Node
Expand Down Expand Up @@ -752,7 +786,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- name: Set up Node
Expand Down Expand Up @@ -780,7 +814,7 @@ jobs:
node: [18, 20, 22, 24]
steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- name: Set up Node
Expand Down Expand Up @@ -827,12 +861,12 @@ jobs:
matrix-optional: ${{ steps.matrix-optional.outputs.matrix }}
steps:
- name: Check out base commit (${{ github.event.pull_request.base.sha }})
uses: actions/checkout@v4
uses: actions/checkout@v5
if: github.event_name == 'pull_request'
with:
ref: ${{ github.event.pull_request.base.sha }}
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- name: Set up Node
Expand Down Expand Up @@ -897,7 +931,7 @@ jobs:
matrix: ${{ fromJson(needs.job_e2e_prepare.outputs.matrix) }}
steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- uses: pnpm/action-setup@v4
Expand Down Expand Up @@ -1027,7 +1061,7 @@ jobs:

steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- uses: pnpm/action-setup@v4
Expand Down Expand Up @@ -1137,6 +1171,6 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Check for failures
if: contains(needs.*.result, 'failure')
if: cancelled() || contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
run: |
echo "One of the dependent jobs have failed. You may need to re-run it." && exit 1
4 changes: 2 additions & 2 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
timeout-minutes: 30
steps:
- name: Check out current commit
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- name: Set up Node
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:

steps:
- name: Check out current commit
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
- uses: pnpm/action-setup@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cleanup-pr-caches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
contents: read
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Cleanup
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clear-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: Delete all caches
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Set up Node
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/external-contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
&& github.event.pull_request.author_association != 'OWNER'
&& endsWith(github.event.pull_request.user.login, '[bot]') == false
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Node
uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flaky-test-detector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
if: ${{ github.base_ref != 'master' && github.ref != 'refs/heads/master' }}
steps:
- name: Check out current branch
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Node
uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gitflow-sync-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
contents: write
steps:
- name: git checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

# https://github.com/marketplace/actions/github-pull-request-action
- name: Create Pull Request
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
steps:
- name: Get auth token
id: token
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
with:
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
token: ${{ steps.token.outputs.token }}
fetch-depth: 0
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
packages/browser/test/loader.js
packages/replay-worker/examples/worker.min.js
dev-packages/browser-integration-tests/fixtures
**/test.ts-snapshots/**
7 changes: 0 additions & 7 deletions .prettierrc.json

This file was deleted.

Loading
Loading