From aabbc9a7a0407ad2f4c8effcf5de0d858c8b9c2f Mon Sep 17 00:00:00 2001 From: Aly ezz Date: Thu, 9 May 2019 19:22:39 +0200 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=93=9DHotfix=20typo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index bb629e344..a73a78d6d 100644 --- a/index.js +++ b/index.js @@ -19,7 +19,7 @@ import Replies from './modules/Replies'; import CrashReporting from './modules/CrashReporting'; import NetworkLogger from './modules/NetworkLogger'; -captureJsErrors(); +InstabugUtils.captureJsErrors(); NetworkLogger.setEnabled(true); var _isOnReportHandlerSet = false; From 8010432fdb1b4b24185a5e356d878b41c89d705d Mon Sep 17 00:00:00 2001 From: Aly ezz Date: Thu, 9 May 2019 19:23:36 +0200 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=92=8EBump=20Version=20to=20v8.3.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 00032ef01..e9099024b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "instabug-reactnative", - "version": "8.3.0", + "version": "8.3.1", "description": "React Native plugin for integrating the Instabug SDK", "main": "index.js", "types": "index.d.ts", From 6c9d5542b6ad6b716b6397cb941d0c7fd10acc0a Mon Sep 17 00:00:00 2001 From: Aly ezz Date: Thu, 9 May 2019 19:32:41 +0200 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=93=9D=20CapturerJserror=20fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index a73a78d6d..9328fe138 100644 --- a/index.js +++ b/index.js @@ -8,7 +8,7 @@ import { } from 'react-native'; let { Instabug } = NativeModules; import IBGEventEmitter from './utils/IBGEventEmitter'; -import InstabugUtils from './utils/InstabugUtils'; +import { captureJsErrors } from './utils/InstabugUtils'; import InstabugConstants from './utils/InstabugConstants'; import Report from './models/Report'; import BugReporting from './modules/BugReporting'; @@ -19,7 +19,7 @@ import Replies from './modules/Replies'; import CrashReporting from './modules/CrashReporting'; import NetworkLogger from './modules/NetworkLogger'; -InstabugUtils.captureJsErrors(); +captureJsErrors(); NetworkLogger.setEnabled(true); var _isOnReportHandlerSet = false;