Skip to content

Commit ce6aaa1

Browse files
committed
revert changelog change, oops
1 parent 4b3add7 commit ce6aaa1

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,33 @@ user IP addresses, if you set `sendDefaultPii: true` in your `Sentry.init` optio
5252

5353
We apologize for any inconvenience caused!
5454

55+
- **feat(node): Add `ignoreStaticAssets` ([#17370](https://github.com/getsentry/sentry-javascript/pull/17370))**
56+
57+
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`:
58+
59+
```js
60+
Sentry.init({
61+
integrations: [
62+
Sentry.httpIntegration({
63+
// defaults to true, set to false to enable traces for static assets
64+
ignoreStaticAssets: false,
65+
}),
66+
],
67+
});
68+
```
69+
70+
### Other Changes
71+
72+
- fix(nuxt): Do not drop parametrized routes ([#17357](https://github.com/getsentry/sentry-javascript/pull/17357))
73+
74+
<details>
75+
<summary> <strong>Internal Changes</strong> </summary>
76+
77+
- ref(node): Split up incoming & outgoing http handling ([#17358](https://github.com/getsentry/sentry-javascript/pull/17358))
78+
- test(node): Enable additionalDependencies in integration runner ([#17361](https://github.com/getsentry/sentry-javascript/pull/17361))
79+
80+
</details>
81+
5582
## 10.3.0
5683

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

0 commit comments

Comments
 (0)