Skip to content

6.10.0 (Stable)

Compare
Choose a tag to compare
@sentry-release-bot sentry-release-bot released this 25 Mar 18:01

Features

  • Add thread information to spans (#4579)

  • Exposed getDataFromUri as a public API to retrieve data from a URI (#4638)

  • Add enableExperimentalViewRenderer to enable up to 5x times more performance in Session Replay on iOS (#4660)

    import * as Sentry from '@sentry/react-native';
    
    Sentry.init({
      integrations: [
        Sentry.mobileReplayIntegration({
          enableExperimentalViewRenderer: true,
        }),
      ],
    });

Fixes

  • Considers the SENTRY_DISABLE_AUTO_UPLOAD and SENTRY_DISABLE_NATIVE_DEBUG_UPLOAD environment variables in the configuration of the Sentry Android Gradle Plugin for Expo plugin (#4583)
  • Handle non-string category in getCurrentScreen on iOS (#4629)
  • Use route name instead of route key for current route tracking (#4650)
    • Using key caused user interaction transaction names to contain route hash in the name.

Dependencies