We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5af0ee9 commit 6a37477Copy full SHA for 6a37477
MIGRATION.md
@@ -1,5 +1,22 @@
1
# Upgrading from 7.x to 8.x
2
3
+## Removal of `trackHeaders` option for Astro middleware
4
+
5
+Instead of opting-in via the middleware config, you can configure if headers should be captured via
6
+`requestDataIntegration` options, which defaults to `true` but can be disabled like this:
7
8
+```
9
+Sentry.init({
10
+ integrations: [
11
+ Sentry.requestDataIntegration({
12
+ include: {
13
+ headers: false
14
+ },
15
+ }),
16
+ ],
17
+});
18
19
20
## Removal of Client-Side health check transaction filters
21
22
The SDK no longer filters out health check transactions by default. Instead, they are sent to Sentry but still dropped
0 commit comments