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: docs/migration/draft-v9-migration-guide.md
+21
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,27 @@
41
41
42
42
- Deprecated `Request` in favor of `RequestEventData`.
43
43
44
+
## `@sentry/vue`
45
+
46
+
- Deprecated `tracingOptions`, `trackComponents`, `timeout`, `hooks` options everywhere other than in the `tracingOptions` option of the `vueIntegration()`.
47
+
These options should now be set as follows:
48
+
49
+
```ts
50
+
import*asSentryfrom'@sentry/vue';
51
+
52
+
Sentry.init({
53
+
integrations: [
54
+
Sentry.vueIntegration({
55
+
tracingOptions: {
56
+
trackComponents: true,
57
+
timeout: 1000,
58
+
hooks: ['mount', 'update', 'unmount'],
59
+
},
60
+
}),
61
+
],
62
+
});
63
+
```
64
+
44
65
## Server-side SDKs (`@sentry/node` and all dependents)
45
66
46
67
- Deprecated `processThreadBreadcrumbIntegration` in favor of `childProcessIntegration`. Functionally they are the same.
'[@sentry/vue]: Misconfigured SDK. Vue specific errors will not be captured. Update your `Sentry.init` call with an appropriate config option: `app` (Application Instance - Vue 3) or `Vue` (Vue Constructor - Vue 2).',
'[@sentry/vue]: Misconfigured SDK. Vue specific errors will not be captured. Update your `Sentry.init` call with an appropriate config option: `app` (Application Instance - Vue 3) or `Vue` (Vue Constructor - Vue 2).',
0 commit comments