You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@sentry/react-native

Package Overview
Dependencies
Maintainers
10
Versions
275
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sentry/react-native - npm Package Versions

2345
28

7.0.0-rc.1

Diff
s
sentry-bot
published 7.0.0-rc.1 •
s
sentry-bot
published 6.19.0 •

Changelog

Source

6.19.0

Fixes

  • Warnings when .env.sentry-build-plugin is not set on Sentry/CLI (#5029)
  • Fix for sentry-cli path discovery not working on Android (#5009)
  • Export addIntegration from @sentry/core (#5020)

Features

  • Adds replaysSessionQuality Session Replay option to control replay quality and performance overhead on mobile (#5001)

    import * as Sentry from '@sentry/react-native';
    
    Sentry.init({
      replaysSessionSampleRate: 1.0,
      replaysSessionQuality: 'low', // possible values: low, medium (default), high
      integrations: [Sentry.mobileReplayIntegration()],
    });
    

Dependencies

s
sentry-bot
published 6.18.1 •

Changelog

Source

6.18.1

Fixes

  • Fixed Sentry CLI executable path resolution that was causing iOS build script failures (#5003)
s
sentry-bot
published 6.18.0 •

Changelog

Source

6.18.0

Fixes

  • SDK now Builds when using PnPM (#4977)
  • Skip idle span creation when app is in background (#4995)

Dependencies

s
sentry-bot
published 7.0.0-beta.2 •
s
sentry-bot
published 6.17.0 •

Changelog

Source

6.17.0

Features

  • Add experimental flag enableUnhandledCPPExceptionsV2 on iOS (#4975)

    import * as Sentry from '@sentry/react-native';
    
    Sentry.init({
      _experiments: {
        enableUnhandledCPPExceptionsV2: true,
      },
    });
    

Dependencies

s
sentry-bot
published 6.16.1 •

Changelog

Source

6.16.1

Fixes

  • Fixes Replay Custom Masking issue on Android (#4957)

Dependencies

s
sentry-bot
published 7.0.0-beta.1 •
s
sentry-bot
published 6.16.0 •

Changelog

Source

6.16.0

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.
s
sentry-bot
published 6.15.1 •

Changelog

Source

6.15.1

Dependencies

2345
28