-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
feat(v8/replay): Opt-in options for unmask
and unblock
#11049
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
Conversation
MIGRATION.md
Outdated
unblock: '.sentry-unblock, [data-sentry-unblock]', | ||
unmask: '.sentry-unmask, [data-sentry-unmask]', |
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.
unblock: '.sentry-unblock, [data-sentry-unblock]', | |
unmask: '.sentry-unmask, [data-sentry-unmask]', | |
unblock: ['.sentry-unblock, [data-sentry-unblock]'], | |
unmask: ['.sentry-unmask, [data-sentry-unmask]'], |
packages/replay/MIGRATION.md
Outdated
Sentry Replay is now out of Beta. This means that the usual stability guarantees apply. | ||
|
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.
Sentry Replay is now out of Beta. This means that the usual stability guarantees apply. |
Let's also remove this while we are here!
3a1760e
to
359bcc6
Compare
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.
btw: I only changed the test snapshots in the privacyDefault
folder. Thought this makes sense, as the default behavior is now "mask everything", even with the data attribute.
In the other tests, I added the unmask
array to the options.
359bcc6
to
c695867
Compare
Thanks for making this change! This should help a bit with perf as it will have less selectors query when snapshotting DOM changes. |
closes #8887
docs changes: getsentry/sentry-docs#9422