Requested by: @antonis
Merge target: dependabot/github_actions/getsentry/craft-2.21.4
Quick links:
Assign the accepted label to this issue to approve the release.
Targets
Checked targets will be skipped (either already published or user-requested skip). Uncheck to retry a target.
📋 Changelog
Features
- Expose iOS options to ignore views from subtree traversal in version 8 (#5663)
- Use
includedViewClasses to only traverse specific view classes, or excludedViewClasses to skip problematic view classes during session replay and screenshot capture
import * as Sentry from '@sentry/react-native';
Sentry.init({
replaysSessionSampleRate: 1.0,
integrations: [
Sentry.mobileReplayIntegration({
includedViewClasses: ['UILabel', 'UIView', 'MyCustomView'],
excludedViewClasses: ['WKWebView', 'UIWebView'],
}),
],
});
Requested by: @antonis
Merge target: dependabot/github_actions/getsentry/craft-2.21.4
Quick links:
Assign the accepted label to this issue to approve the release.
Targets
Checked targets will be skipped (either already published or user-requested skip). Uncheck to retry a target.
📋 Changelog
Features
includedViewClassesto only traverse specific view classes, orexcludedViewClassesto skip problematic view classes during session replay and screenshot capture