github getsentry/sentry-react-native 5.23.0-alpha.0

latest releases: 5.23.0-alpha.1, 5.22.2, 5.22.1...
pre-release16 days ago

Features

  • Mobile Session Replay Alpha (#3714)

    To enable Replay for React Native on mobile and web add the following options.

    Sentry.init({
      _experiments: {
        replaysSessionSampleRate: 1.0,
        replaysOnErrorSampleRate: 1.0,
      },
    });

    To change the default Mobile Replay options add the mobileReplayIntegration.

    Sentry.init({
      _experiments: {
        replaysSessionSampleRate: 1.0,
        replaysOnErrorSampleRate: 1.0,
      },
      integration: [
        Sentry.mobileReplayIntegration({
          maskAllText: true,
          maskAllImages: true,
        }),
      ],
    });

    Access is limited to early access orgs on Sentry. If you're interested, sign up for the waitlist

Dependencies

Don't miss a new sentry-react-native release

NewReleases is sending notifications on new releases.