Skip to content

Releases: getsentry/sentry-react-native

v0.32.1

05 Jan 12:37
Compare
Choose a tag to compare
  • Update sentry-wizard

v0.32.0

13 Dec 09:37
Compare
Choose a tag to compare

Breaking changes

Migration guide upgrading from < 0.32.0

Since we now use @sentry/wizard for linking with out new @sentry/cli package, the old
sentry-cli-bin package has been deprecated.
You have to search your codebase for sentry-cli-binary and replace it with @sentry/cli.
There are few places where we put it during the link process:

  • In both sentry.properties files in ios/android folder
  • In your Xcode build scripts once in Bundle React Native code and images and once in Upload Debug Symbols to Sentry

So e.g.:

The Upload Debug Symbols to Sentry build script looks like this:

export SENTRY_PROPERTIES=sentry.properties
../node_modules/sentry-cli-binary/bin/sentry-cli upload-dsym

should be changed to this:

export SENTRY_PROPERTIES=sentry.properties
../node_modules/@sentry/cli/bin/sentry-cli upload-dsym

General

  • Bump @sentry/wizard to 0.7.3
  • Bump sentry-cocoa to 3.10.0
  • Fixed #169

v0.31.0

04 Dec 14:04
Compare
Choose a tag to compare

v0.30.3

25 Nov 20:53
Compare
Choose a tag to compare
  • Fix podspec file
  • Fix gradle regex to allow number in projectname

v0.30.2

31 Oct 22:15
Compare
Choose a tag to compare

Updated npm dependencies

v0.30.1

30 Oct 12:07
Compare
Choose a tag to compare

Deploy and release over Probot

v0.30.0

24 Oct 19:17
Compare
Choose a tag to compare

Refactored iOS to use shared component from sentry-cocoa.
Also squashed many little bugs on iOS.

v0.29.0

19 Oct 14:23
Compare
Choose a tag to compare

v0.28.0

13 Oct 15:25
Compare
Choose a tag to compare

We had to rename project.ext.sentry to project.ext.sentryCli because our own proguard gradle plugin was conflicting with the name.
The docs already reflect this change.
#257

We now use the mainThread to report errors to RNSentry. This change is necessary in order for react-native to export constants.
This change shouldn't impact anyone using react-native-sentry since most of the "heavy" load was handled by sentry-cocoa in its own background queue anyway.
#259 #244

Bump sentry-cocoa to 3.8.3

v0.27.0

13 Oct 07:47
Compare
Choose a tag to compare

We decided to deactivate stack trace merging by default on iOS since it seems to unstable right now.
To activate it set:

Sentry.config("___DSN___", {
      deactivateStacktraceMerging: false
});

We are looking into ways making this more stable and plan to re-enable it again in the future.