Skip to content

5.19.0

Compare
Choose a tag to compare
@getsentry-bot getsentry-bot released this 14 Feb 09:33

This release contains upgrade of sentry-android dependency to major version 7. There are no breaking changes in the JS API. If you are using the Android API please check the migration guide.

Features

  • Add Android profiles to React Native Profiling (#3397)

  • Add Sentry.metrics (#3590)

    To learn more, see the Set Up Metrics guide.

    import * as Sentry from '@sentry/react-native';
    
    Sentry.init({
      dsn: '___DSN___',
      integrations: [
        Sentry.metrics.metricsAggregatorIntegration(),
      ],
    });
    
    Sentry.metrics.increment("button_click", 1, {
      tags: { system: "iOS", app_version: "1.0.0" },
    });

Fixes

  • Upload Debug Symbols Build Phase continues when node not found in WITH_ENVIRONMENT (#3573)
  • Fix proguardUuid loading on Android (#3591)

Dependencies