Skip to content

Commit 6f127bd

Browse files
TheBuggedYRNymabdallah
authored andcommitted
[MOB-11949] Release v11.9.0 (#928)
1 parent 81f9401 commit 6f127bd

File tree

4 files changed

+24
-16
lines changed

4 files changed

+24
-16
lines changed

CHANGELOG.md

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,24 @@
1-
## Unreleased
2-
3-
- Bumps Instabug Android SDK to v11.9.0
4-
- Bumps Instabug iOS SDK to v11.9.0
5-
- Adds monorepo support for source maps scripts
1+
## 11.9.0 (2023-02-20)
2+
3+
- Bumps Instabug Android SDK to v11.9.0.
4+
- Bumps Instabug iOS SDK to v11.9.0.
5+
- Adds the new `Instabug.init` API to start the SDK as follows:
6+
```js
7+
Instabug.init({
8+
token: '<APP_TOKEN>',
9+
invocationEvents: [InvocationEvent.floatingButton],
10+
debugLogsLevel: LogLevel.verbose,
11+
});
12+
```
13+
- Adds monorepo support for source maps automatic upload scripts.
614
- Adds gradle and ruby files to integrate native SDKs within exiting native apps. See [#919](https://github.com/Instabug/Instabug-React-Native/pull/919) for more info.
7-
- Fixes global error handler not being called.
8-
- Deprecates all module-enums (e.g. `Instabug.invocationEvent`) in favour of standalone-enums (e.g. `InvocationEvent`). See [#914](https://github.com/Instabug/Instabug-React-Native/pull/914) for more info and detailed list of Enums.
9-
- Deprecates Instabug.start in favour of Instabug.init that takes a configuration object for SDK initialization.
10-
- Deprecates Instabug.setDebugEnabled, Instabug.setSdkDebugLogsLevel, and APM.setLogLevel in favour of debugLogsLevel property, which can be passed to InstabugConfig while initializing the SDK using Instabug.init.
11-
- Deprecates the enums: sdkDebugLogsLevel and logLevel in favour of a new enum LogLevel.
12-
- Deprecates Instabug.isRunningLive API.
13-
- Exports native Android SDK
15+
- Deprecates all module-enums (e.g. `Instabug.invocationEvent`) in favour of standalone-enums (e.g. `InvocationEvent`). See [#914](https://github.com/Instabug/Instabug-React-Native/pull/914) for more info and the detailed list of Enums.
16+
- Deprecates `Instabug.start` in favour of `Instabug.init`.
17+
- Deprecates `Instabug.setDebugEnabled`, `Instabug.setSdkDebugLogsLevel`, and `APM.setLogLevel` in favour of `debugLogsLevel` property of `Instabug.init`.
18+
- Deprecates `Instabug.isRunningLive` API.
19+
- Fixes external global error handlers not being called after initializing Instabug.
20+
- Fixes `BugReporting.setDidSelectPromptOptionHandler` on iOS.
21+
- Exports native Android SDK using `api` instead of `implementation`.
1422

1523
## 11.6.0 (2022-12-29)
1624

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ android {
1818
minSdkVersion getExtOrDefault('minSdkVersion').toInteger()
1919
targetSdkVersion getExtOrDefault('targetSdkVersion').toInteger()
2020
versionCode 1
21-
versionName "11.6.0"
21+
versionName "11.9.0"
2222
multiDexEnabled true
2323
ndk {
2424
abiFilters "armeabi-v7a", "x86"

example/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ PODS:
341341
- React-jsi (= 0.66.0)
342342
- React-logger (= 0.66.0)
343343
- React-perflogger (= 0.66.0)
344-
- RNInstabug (11.6.0):
344+
- RNInstabug (11.9.0):
345345
- Instabug (= 11.9.0)
346346
- React-Core
347347
- RNScreens (3.17.0):
@@ -553,7 +553,7 @@ SPEC CHECKSUMS:
553553
React-RCTVibration: 53b92d54b923283638cb0186da7a5c2d2b70a49b
554554
React-runtimeexecutor: 4bb657a97aa74568d9ed634c8bd478299bb8a3a6
555555
ReactCommon: eb059748e842a1a86025ebbd4ac9d99e74492f88
556-
RNInstabug: 59478a0327edcc586133d7a3432de218b05fbfab
556+
RNInstabug: d4e83885e5819e32e6d3afaad1ee45ff1b9efa6e
557557
RNScreens: 0df01424e9e0ed7827200d6ed1087ddd06c493f9
558558
RNSVG: 551acb6562324b1d52a4e0758f7ca0ec234e278f
559559
RNVectorIcons: fcc2f6cb32f5735b586e66d14103a74ce6ad61f8

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "instabug-reactnative",
33
"description": "React Native plugin for integrating the Instabug SDK",
4-
"version": "11.6.0",
4+
"version": "11.9.0",
55
"author": "Instabug (https://instabug.com)",
66
"repository": "github:Instabug/Instabug-React-Native",
77
"homepage": "https://www.instabug.com/platforms/react-native",

0 commit comments

Comments
 (0)