Skip to content

Commit 880ee29

Browse files
committed
meta: Add Changelog entry for 9.25.0
1 parent aa24b14 commit 880ee29

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,31 @@
1010

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

13+
## 9.25.0
14+
15+
### Important Changes
16+
17+
- **feat(browser): Add option to ignore `mark` and `measure` spans ([#16443](https://github.com/getsentry/sentry-javascript/pull/16443))**
18+
19+
This release adds an option to `browserTracingIntegration` that lets you ignore
20+
`mark` and `measure` spans created from the `performance.mark(...)` and `performance.measure(...)` browser APIs:
21+
22+
```js
23+
Sentry.init({
24+
integrations: [
25+
Sentry.browserTracingIntegration({
26+
ignorePerformanceApiSpans: ['measure-to-ignore', /mark-to-ignore/],
27+
}),
28+
],
29+
});
30+
```
31+
32+
### Other Changes
33+
34+
- feat(browser): Export getTraceData from the browser sdks ([#16433](https://github.com/getsentry/sentry-javascript/pull/16433))
35+
- feat(node): Add `includeServerName` option ([#16442](https://github.com/getsentry/sentry-javascript/pull/16442))
36+
- fix(nuxt): Remove setting `@sentry/nuxt` external ([#16444](https://github.com/getsentry/sentry-javascript/pull/16444))
37+
1338
## 9.24.0
1439

1540
### Important Changes

0 commit comments

Comments
 (0)