github getsentry/sentry-react-native 7.0.0-beta.2

latest releases: 7.0.1, 7.0.0, 6.21.0...
pre-releaseone month ago

Features

  • Automatically detect Release name and version for Expo Web (#4967)

Changes

  • Expose featureFlagsIntegration (#4984)

Breaking changes

  • Tags formatting logic updated (#4965)
    Here are the altered/unaltered types, make sure to update your UI filters and alerts.

    Unaltered: string, null, number, and undefined values remain unchanged.

    Altered: Boolean values are now capitalized: true -> True, false -> False.

Fixes

  • tags with symbol are now logged (#4965)
  • ignoreError now filters Native errors (#4948)

You can use strings to filter errors or RegEx for filtering with a pattern.

example:

  ignoreErrors: [
    '1234', // Will filter any error message that contains 1234.
    '.*1234', // Will not filter as regex, instead will filter messages that contains '.*1234"
    /.*1234/, // Regex will filter any error message that ends with 1234
    /.*1234.*/ // Regex will filter any error message that contains 1234.
  ]

Dependencies

Don't miss a new sentry-react-native release

NewReleases is sending notifications on new releases.