You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,21 @@
4
4
5
5
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
6
6
7
+
-**feat(tanstackstart-react): Auto-instrument global middleware in `sentryTanstackStart` Vite plugin**
8
+
9
+
The `sentryTanstackStart` Vite plugin now automatically instruments `requestMiddleware` and `functionMiddleware` arrays in `createStart()`. This captures performance data without requiring manual wrapping.
10
+
11
+
Auto-instrumentation is enabled by default. To disable it:
12
+
13
+
```ts
14
+
// vite.config.ts
15
+
sentryTanstackStart({
16
+
org: 'your-org',
17
+
project: 'your-project',
18
+
autoInstrumentMiddleware: false,
19
+
});
20
+
```
21
+
7
22
-**feat(tanstackstart-react): Add `sentryTanstackStart` Vite plugin for source maps upload**
8
23
9
24
You can now configure source maps upload for TanStack Start using the `sentryTanstackStart` Vite plugin:
0 commit comments