Skip to content

6.16.0

Compare
Choose a tag to compare
@sentry-release-bot sentry-release-bot released this 24 Jun 16:11

Features

  • Introducing @sentry/react-native/playground (#4916)

    The new withSentryPlayground component allows developers to verify
    that the SDK is properly configured and reports errors as expected.

    import * as Sentry from '@sentry/react-native';
    import { withSentryPlayground } from '@sentry/react-native/playground';
    
    function App() {
      return <View>...</View>;
    }
    
    export default withSentryPlayground(
      Sentry.wrap(App)
    );

Fixes

  • Adds support for React Native 0.80 (#4938)
  • Report slow and frozen frames as app start span data (#4865)
  • User set by Sentry.setUser is prefilled in Feedback Widget (#4901)
    • User data are considered from all scopes in the following order current, isolation and global.