Requested by: @alwx
Merge target: (default)
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
- Add
enableTombstone option for improved native crash reporting on Android 12+ (#5680)
- When enabled, uses Android's
ApplicationExitInfo.REASON_CRASH_NATIVE to capture native crashes with more detailed thread information
import * as Sentry from '@sentry/react-native';
Sentry.init({
dsn: 'YOUR_DSN',
enableTombstone: true,
});
- 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'],
}),
],
});
Fixes
- Fix race condition where iOS dSYM upload runs before debug symbols are fully generated (#5653)
Dependencies
- Bump JavaScript SDK from v10.38.0 to v10.39.0 (#5674)
Requested by: @alwx
Merge target: (default)
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
enableTombstoneoption for improved native crash reporting on Android 12+ (#5680)ApplicationExitInfo.REASON_CRASH_NATIVEto capture native crashes with more detailed thread informationincludedViewClassesto only traverse specific view classes, orexcludedViewClassesto skip problematic view classes during session replay and screenshot captureFixes
Dependencies