-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(nuxt): Deprecate tracingOptions
in favor of vueIntegration
#14530
Conversation
size-limit report 📦
|
l: The changelog and the PR title reference nuxt, but the change is in the vue package? |
Good point actually. I seem to have fumbled that deprecation before - we already have it in the migration guide. Now it is actually correct. |
/** | ||
* @deprecated Add the `vueIntegration()` and pass the `tracingOptions` there instead. | ||
*/ | ||
tracingOptions: Partial<TracingOptions>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good but same concern as here: https://github.com/getsentry/sentry-javascript/pull/14526/files#r1863577094
Ref: #14265
Deprecates the
tracingOptions
in favor of the newly exposedvueIntegration
so that we can streamline the setting of these options.