Skip to content

Commit 5702fef

Browse files
committed
revert changelog change, oops
1 parent 390d3a2 commit 5702fef

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
@@ -185,6 +185,33 @@ user IP addresses, if you set `sendDefaultPii: true` in your `Sentry.init` optio
185185

186186
We apologize for any inconvenience caused!
187187

188+
- **feat(node): Add `ignoreStaticAssets` ([#17370](https://github.com/getsentry/sentry-javascript/pull/17370))**
189+
190+
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`:
191+
192+
```js
193+
Sentry.init({
194+
integrations: [
195+
Sentry.httpIntegration({
196+
// defaults to true, set to false to enable traces for static assets
197+
ignoreStaticAssets: false,
198+
}),
199+
],
200+
});
201+
```
202+
203+
### Other Changes
204+
205+
- fix(nuxt): Do not drop parametrized routes ([#17357](https://github.com/getsentry/sentry-javascript/pull/17357))
206+
207+
<details>
208+
<summary> <strong>Internal Changes</strong> </summary>
209+
210+
- ref(node): Split up incoming & outgoing http handling ([#17358](https://github.com/getsentry/sentry-javascript/pull/17358))
211+
- test(node): Enable additionalDependencies in integration runner ([#17361](https://github.com/getsentry/sentry-javascript/pull/17361))
212+
213+
</details>
214+
188215
## 10.3.0
189216

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

0 commit comments

Comments
 (0)