Skip to content

5.26.0-alpha.3

Pre-release
Pre-release
Compare
Choose a tag to compare
@getsentry-bot getsentry-bot released this 12 Jul 13:24

Features

  • Redact react-native-svg SVGs when maskAllVectors (#3930)

  • Add annotateReactComponents option to @sentry/react-native/metro (#3916)

    // For Expo
    const { getSentryExpoConfig } = require("@sentry/react-native/metro");
    const config = getSentryExpoConfig(__dirname, { annotateReactComponents: true });
    
    // For RN
    const { getDefaultConfig } = require('@react-native/metro-config');
    const { withSentryConfig } = require('@sentry/react-native/metro');
    module.exports = withSentryConfig(getDefaultConfig(__dirname), { annotateReactComponents: true });

Fixes

  • Add app.foreground/background breadcrumbs to iOS Replays (#3932)

Dependencies