Skip to content

Releases: Instabug/Instabug-React-Native

Release v2.0.2

04 Sep 20:20
Compare
Choose a tag to compare

Fix the import in the bridge header file to account for changes in RN 0.48

Release v2.0.1

01 Sep 00:30
Compare
Choose a tag to compare

Update post linking script

Release v2.0.0

31 Aug 15:07
Compare
Choose a tag to compare
  • Removes dependency on Cocoapods when installing Instabug
  • Ensures consistency between React Native SDK, and the Native SDK

Release v1.2.4

28 Aug 11:07
Compare
Choose a tag to compare
  • Add api setSuccessDialogEnabled(boolean)
  • Add api setEnableInAppNotificationSound(boolean) for Android
  • Automatically run pod install after installing the SDK to install the latest native iOS version of the SDK
  • Upgrade the native Android version of the SDK

Release v1.2.3

17 Aug 19:40
Compare
Choose a tag to compare

Fix a bug in the setUserAttribute API in iOS where the key and value were mixed

Release v1.2.2

17 Aug 17:45
Compare
Choose a tag to compare

Update to use the latest version of the native SDK

Release v1.2.1

10 Aug 10:34
Compare
Choose a tag to compare

Add sendEvent method to the module class
Add missing imports in the module class

Release v1.2.0

08 Aug 16:31
Compare
Choose a tag to compare

Fix bug where callbacks could only get invoked once
Fix bug where appendTags() accepted a String, and not an array of tags
Remove setPrimaryColor() from android

Release v1.1.9

24 Jul 18:50
Compare
Choose a tag to compare

Added support for setting the floating button edge and, the floating button offset from the top.

Added Set Intro Message Enabled Instabug.setIntroMessageEnabled(true); for Android.

Deprecate the old package constructor

new RNInstabugReactnativePackage("YOUR_APP_TOKEN", MainApplication.this,"shake","#1D82DC")

for the new

new RNInstabugReactnativePackage.Builder("YOUR_APP_TOKEN", MainApplication.this)
                           .setInvocationEvent("shake")
                           .setPrimaryColor("#1D82DC")
                           .setFloatingEdge("left")
                           .setFloatingButtonOffsetFromTop(250)
                           .build()

Release v1.1.8

18 Jul 18:28
Compare
Choose a tag to compare

Fixes the bug where the SDK gets invoked automatically at app launch
and need to press twice on a button to manually invoke the SDK
Fixes a bug where changing the value of the strings did not work correctly