Skip to content

Commit bcebd87

Browse files
authored
Merge pull request #12935 from getsentry/ab/sync-master
[Gitflow] Merge master into develop
2 parents 52eb466 + 626d00a commit bcebd87

File tree

49 files changed

+211
-190
lines changed

Some content is hidden

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

49 files changed

+211
-190
lines changed

CHANGELOG.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,37 @@
88

99
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
1010

11+
## 8.18.0
12+
1113
### Important Changes
1214

1315
- **ref: Deprecate `enableTracing` (12897)**
1416

1517
The `enableTracing` option has been deprecated and will be removed in the next major version. We recommend removing it
1618
in favor of the `tracesSampleRate` and `tracesSampler` options. If you want to enable performance monitoring, please set
1719
the `tracesSampleRate` to a sample rate of your choice, or provide a sampling function as `tracesSampler` option
18-
instead. If you wan't to disable performance monitoring, remove the `tracesSampler` and `tracesSampleRate` options.
20+
instead. If you want to disable performance monitoring, remove the `tracesSampler` and `tracesSampleRate` options.
21+
22+
### Other Changes
1923

20-
Work in this release was contributed by @GitSquared. Thank you for your contribution!
24+
- feat(node): Expose `exclude` and `include` options for ESM loader (#12910)
25+
- feat(browser): Add user agent to INP standalone span attributes (#12896)
26+
- feat(nextjs): Add `experimental_captureRequestError` for `onRequestError` hook (#12885)
27+
- feat(replay): Bump `rrweb` to 2.25.0 (#12478)
28+
- feat(tracing): Add long animation frame tracing (#12646)
29+
- fix: Cleanup hooks when they are not used anymore (#12852)
30+
- fix(angular): Guard `ErrorEvent` check in ErrorHandler to avoid throwing in Node environments (#12892)
31+
- fix(inp): Ensure INP spans have correct transaction (#12871)
32+
- fix(nestjs): Do not make SentryTraced() decorated functions async (#12879)
33+
- fix(nextjs): Support automatic instrumentation for app directory with custom page extensions (#12858)
34+
- fix(node): Ensure correct URL is passed to `ignoreIncomingRequests` callback (#12929)
35+
- fix(otel): Do not add `otel.kind: INTERNAL` attribute (#12841)
36+
- fix(solidstart): Set proper sentry origin for solid router integration when used in solidstart sdk (#12919)
37+
- fix(sveltekit): Add Vite peer dep for proper type resolution (#12926)
38+
- fix(tracing): Ensure you can pass `null` as `parentSpan` in `startSpan*` (#12928)
39+
- ref(core): Small bundle size improvement (#12830)
40+
41+
Work in this release was contributed by @GitSquared and @mcous. Thank you for your contributions!
2142

2243
## 8.17.0
2344

dev-packages/browser-integration-tests/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/browser-integration-tests",
3-
"version": "8.17.0",
3+
"version": "8.18.0",
44
"main": "index.js",
55
"license": "MIT",
66
"engines": {
@@ -43,7 +43,7 @@
4343
"@babel/preset-typescript": "^7.16.7",
4444
"@playwright/test": "^1.44.1",
4545
"@sentry-internal/rrweb": "2.11.0",
46-
"@sentry/browser": "8.17.0",
46+
"@sentry/browser": "8.18.0",
4747
"axios": "1.6.7",
4848
"babel-loader": "^8.2.2",
4949
"html-webpack-plugin": "^5.5.0",

dev-packages/bundle-analyzer-scenarios/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/bundle-analyzer-scenarios",
3-
"version": "8.17.0",
3+
"version": "8.18.0",
44
"description": "Scenarios to test bundle analysis with",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/dev-packages/bundle-analyzer-scenarios",

dev-packages/e2e-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/e2e-tests",
3-
"version": "8.17.0",
3+
"version": "8.18.0",
44
"license": "MIT",
55
"private": true,
66
"scripts": {

dev-packages/external-contributor-gh-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@sentry-internal/external-contributor-gh-action",
33
"description": "An internal Github Action to add external contributors to the CHANGELOG.md file.",
4-
"version": "8.17.0",
4+
"version": "8.18.0",
55
"license": "MIT",
66
"engines": {
77
"node": ">=18"

dev-packages/node-integration-tests/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/node-integration-tests",
3-
"version": "8.17.0",
3+
"version": "8.18.0",
44
"license": "MIT",
55
"engines": {
66
"node": ">=14.18"
@@ -31,8 +31,8 @@
3131
"@nestjs/core": "^10.3.3",
3232
"@nestjs/platform-express": "^10.3.3",
3333
"@prisma/client": "5.9.1",
34-
"@sentry/node": "8.17.0",
35-
"@sentry/types": "8.17.0",
34+
"@sentry/node": "8.18.0",
35+
"@sentry/types": "8.18.0",
3636
"@types/mongodb": "^3.6.20",
3737
"@types/mysql": "^2.15.21",
3838
"@types/pg": "^8.6.5",

dev-packages/overhead-metrics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "8.17.0",
3+
"version": "8.18.0",
44
"name": "@sentry-internal/overhead-metrics",
55
"main": "index.js",
66
"author": "Sentry",

dev-packages/rollup-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/rollup-utils",
3-
"version": "8.17.0",
3+
"version": "8.18.0",
44
"description": "Rollup utilities used at Sentry for the Sentry JavaScript SDK",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/rollup-utils",

dev-packages/size-limit-gh-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@sentry-internal/size-limit-gh-action",
33
"description": "An internal Github Action to compare the current size of a PR against the one on develop.",
4-
"version": "8.17.0",
4+
"version": "8.18.0",
55
"license": "MIT",
66
"engines": {
77
"node": ">=18"

dev-packages/test-utils/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "8.17.0",
3+
"version": "8.18.0",
44
"name": "@sentry-internal/test-utils",
55
"author": "Sentry",
66
"license": "MIT",
@@ -45,8 +45,8 @@
4545
},
4646
"devDependencies": {
4747
"@playwright/test": "^1.44.1",
48-
"@sentry/types": "8.17.0",
49-
"@sentry/utils": "8.17.0"
48+
"@sentry/types": "8.18.0",
49+
"@sentry/utils": "8.18.0"
5050
},
5151
"volta": {
5252
"extends": "../../package.json"

0 commit comments

Comments
 (0)