Skip to content

Commit 0bbaf70

Browse files
committed
Update Sentry, Ariakit, and other dependencies to latest versions
1 parent d2a9f6e commit 0bbaf70

File tree

4 files changed

+4164
-3710
lines changed

4 files changed

+4164
-3710
lines changed

apps/changelog/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@
6666
"extends": "../../package.json"
6767
},
6868
"resolutions": {
69-
"@types/react": "npm:[email protected]",
70-
"@types/react-dom": "npm:[email protected]",
7169
"@sentry/core": "9.27.0",
72-
"@sentry/types": "9.27.0"
70+
"@sentry/types": "9.27.0",
71+
"@sentry/nextjs": "9.27.0",
72+
"@sentry/node": "9.27.0"
7373
}
7474
}

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,12 @@
136136
"ws": "^8.17.1"
137137
},
138138
"resolutions": {
139-
"dompurify": "3.2.4",
140-
"@types/dompurify": "3.0.5",
141139
"@sentry/core": "9.27.0",
142-
"@sentry/types": "9.27.0"
140+
"@sentry/types": "9.27.0",
141+
"@sentry/nextjs": "9.27.0",
142+
"@sentry/node": "9.27.0",
143+
"dompurify": "3.2.4",
144+
"@types/dompurify": "3.0.5"
143145
},
144146
"volta": {
145147
"node": "20.11.0",

src/instrumentation-client.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,20 @@ Sentry.init({
1616
// in development and sample at a lower rate in production
1717
replaysSessionSampleRate: 0.1,
1818

19-
// Simplified integrations to avoid type conflicts
19+
// You can remove this option if you're not planning to use the Sentry Session Replay feature:
2020
integrations: [
2121
Sentry.replayIntegration({
2222
// Additional Replay configuration goes in here, for example:
2323
maskAllText: false,
2424
blockAllMedia: false,
2525
}),
26+
Sentry.thirdPartyErrorFilterIntegration({
27+
filterKeys: ['sentry-docs'],
28+
behaviour: 'apply-tag-if-contains-third-party-frames',
29+
}),
30+
Sentry.browserTracingIntegration({
31+
linkPreviousTrace: 'session-storage',
32+
}),
2633
],
2734
});
2835

0 commit comments

Comments
 (0)