Skip to content

5.23.0-alpha.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@getsentry-bot getsentry-bot released this 29 Apr 13:00

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,
      },
      integrations: [
        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