-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
[Breaking Change] Replay options unblock and unmask will require explicit opt-in #8887
Copy link
Copy link
Closed
Labels
Meta: BreakingPackage: replayIssues related to the Sentry Replay SDKIssues related to the Sentry Replay SDK
Milestone
Description
Currently, we have default selectors configured for unblock and unmask options for Replay. This means we have to perform additional DOM queries even if you do not use the unmasking features. In version 8.0 of the Replay SDK, we will change these options to default to false and you will need to specify selectors to be used for the respective unmasking options.
If you currently use the default Sentry selectors for unblock and unmask, then we recommend you to explicitly specify them in your configuration:
Sentry.init({
integrations: [
Sentry.Replay({
unblock: '.sentry-unblock, [data-sentry-unblock]',
unmask: '.sentry-unmask, [data-sentry-unmask]',
}),
]
});
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Meta: BreakingPackage: replayIssues related to the Sentry Replay SDKIssues related to the Sentry Replay SDK
Fields
Give feedbackNo fields configured for issues without a type.