sentry-react-native

Official Sentry SDK for React-Native

MIT License

Downloads
1.6M
Stars
1.5K
Committers
141

Bot releases are visible (Hide)

sentry-react-native - 1.3.5

Published by HazAT over 4 years ago

  • Bump @sentry/* to ^5.15.2
sentry-react-native - 1.3.4

Published by HazAT over 4 years ago

  • Bump @sentry/* to ^5.15.1
  • Fix a bug in DebugSymbolicator to fetch the correct file
  • Bump to io.sentry:sentry-android:2.0.2
sentry-react-native - 1.3.3

Published by HazAT over 4 years ago

  • Fix sourcemap path for Android and react-native version < 0.61
  • Expose Android SDK in Java
sentry-react-native - 1.3.2

Published by HazAT over 4 years ago

  • Bump io.sentry:sentry-android:2.0.0
  • Fixes a bug on Android when sending events with wrong envelope size
sentry-react-native - 1.3.1

Published by HazAT over 4 years ago

  • Bump @sentry/wizard to 1.1.1 fixing iOS release identifiers
  • console.warn und unhandled rejections in DEV
sentry-react-native - 1.3.0

Published by HazAT over 4 years ago

  • Bump io.sentry:sentry-android:2.0.0-rc04
  • Added support for Hermes runtime!!
  • Fixed a lot of issues on Android
  • NDK support
sentry-react-native - 1.2.2

Published by HazAT over 4 years ago

  • fix(android): Crash if stacktrace.frames is empty (#742)
sentry-react-native - 1.2.1

Published by HazAT almost 5 years ago

  • Bump io.sentry:sentry-android:1.7.29
sentry-react-native - 1.2.0

Published by HazAT almost 5 years ago

  • Bump @sentry/* to ^5.10.0
  • Allow overriding sentry.properties location (#722)
sentry-react-native - 1.1.0

Published by HazAT almost 5 years ago

  • Bump @sentry/* to ^5.9.0
  • fix(android): Feedback not working (#706)
  • fix(types): Fix type mismatch when copying breadcrumb type (#693)
sentry-react-native - 1.0.9

Published by mitsuhiko about 5 years ago

  • Fixed an issue where breadcrumbs failed to be copied correctly
sentry-react-native - 1.0.8

Published by HazAT about 5 years ago

  • Fix missing type, miscast status_code entries in Android breadcrumbs
sentry-react-native - 1.0.7

Published by HazAT about 5 years ago

  • Store environment, release & dist on native iOS and Android clients in case of an native crash
sentry-react-native - 1.0.6

Published by HazAT about 5 years ago

  • Fix error message to guide towards correct docs page
sentry-react-native - 1.0.5

Published by HazAT about 5 years ago

  • Convert message in Java to string if it's a map (#653)
sentry-react-native - 1.0.4

Published by HazAT about 5 years ago

  • Also catch ClassCastException to support react-native versions < 0.60 (#651)
sentry-react-native - 1.0.3

Published by HazAT about 5 years ago

  • Expose BrowserIntegrations to change browser integrations (#639)
sentry-react-native - 1.0.2

Published by HazAT about 5 years ago

  • Fixes breadcrumb.data cast if it's not a hashmap (#651)
sentry-react-native - 1.0.1

Published by HazAT about 5 years ago

  • Fixed typo in RNSentry.m (#658)
sentry-react-native - 1.0.0

Published by HazAT about 5 years ago

This is a new major release of the Sentry's React Native SDK rewritten in TypeScript.
This SDK is now unified with the rest of our JavaScript SDKs and published under a new name @sentry/react-native.
It uses @sentry/browser and both sentry-cocoa and sentry-android for native handling.

This release is a breaking change an code changes are necessary.

New way to import and init the SDK:

import * as Sentry from "@sentry/react-native";

Sentry.init({
  dsn: "DSN"
});