Skip to content

Commit d698748

Browse files
committed
meta(changelog): Update changelog for 10.4.0
internal changes, important changes
1 parent 508afcc commit d698748

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

CHANGELOG.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

7-
## Unreleased
7+
## 10.4.0
88

99
### Important Changes
1010

@@ -22,6 +22,33 @@ user IP addresses, if you set `sendDefaultPii: true` in your `Sentry.init` optio
2222

2323
We apologize for any inconvenience caused!
2424

25+
- **feat(node): Add `ignoreStaticAssets` ([#17370](https://github.com/getsentry/sentry-javascript/pull/17370))**
26+
27+
This release adds a new option to `httpIntegration` to ignore requests for static assets (e.g. `favicon.xml` or `robots.txt`). The option defaults to `true`, meaning that going forward, such requests will not be traced by default. You can still enable tracing for these requests by setting the option to `false`:
28+
29+
```js
30+
Sentry.init({
31+
integrations: [
32+
Sentry.httpIntegration({
33+
// defaults to true, set to false to enable traces for static assets
34+
ignoreStaticAssets: false,
35+
}),
36+
],
37+
});
38+
```
39+
40+
### Other Changes
41+
42+
- fix(nuxt): Do not drop parametrized routes ([#17357](https://github.com/getsentry/sentry-javascript/pull/17357))
43+
44+
<details>
45+
<summary> <strong>Internal Changes</strong> </summary>
46+
47+
- ref(node): Split up incoming & outgoing http handling ([#17358](https://github.com/getsentry/sentry-javascript/pull/17358))
48+
- test(node): Enable additionalDependencies in integration runner ([#17361](https://github.com/getsentry/sentry-javascript/pull/17361))
49+
50+
</details>
51+
2552
## 10.3.0
2653

2754
- feat(core): MCP Server - Capture prompt results from prompt function calls (#17284)

0 commit comments

Comments
 (0)