Skip to content

Commit

Permalink
[MOB-11949] Release v11.9.0 (#928)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBuggedYRN authored and ymabdallah committed Feb 20, 2023
1 parent 81f9401 commit 6f127bd
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 16 deletions.
32 changes: 20 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
## Unreleased

- Bumps Instabug Android SDK to v11.9.0
- Bumps Instabug iOS SDK to v11.9.0
- Adds monorepo support for source maps scripts
## 11.9.0 (2023-02-20)

- Bumps Instabug Android SDK to v11.9.0.
- Bumps Instabug iOS SDK to v11.9.0.
- Adds the new `Instabug.init` API to start the SDK as follows:
```js
Instabug.init({
token: '<APP_TOKEN>',
invocationEvents: [InvocationEvent.floatingButton],
debugLogsLevel: LogLevel.verbose,
});
```
- Adds monorepo support for source maps automatic upload scripts.
- 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.
- Fixes global error handler not being called.
- 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.
- Deprecates Instabug.start in favour of Instabug.init that takes a configuration object for SDK initialization.
- 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.
- Deprecates the enums: sdkDebugLogsLevel and logLevel in favour of a new enum LogLevel.
- Deprecates Instabug.isRunningLive API.
- Exports native Android SDK
- 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.
- Deprecates `Instabug.start` in favour of `Instabug.init`.
- Deprecates `Instabug.setDebugEnabled`, `Instabug.setSdkDebugLogsLevel`, and `APM.setLogLevel` in favour of `debugLogsLevel` property of `Instabug.init`.
- Deprecates `Instabug.isRunningLive` API.
- Fixes external global error handlers not being called after initializing Instabug.
- Fixes `BugReporting.setDidSelectPromptOptionHandler` on iOS.
- Exports native Android SDK using `api` instead of `implementation`.

## 11.6.0 (2022-12-29)

Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ android {
minSdkVersion getExtOrDefault('minSdkVersion').toInteger()
targetSdkVersion getExtOrDefault('targetSdkVersion').toInteger()
versionCode 1
versionName "11.6.0"
versionName "11.9.0"
multiDexEnabled true
ndk {
abiFilters "armeabi-v7a", "x86"
Expand Down
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ PODS:
- React-jsi (= 0.66.0)
- React-logger (= 0.66.0)
- React-perflogger (= 0.66.0)
- RNInstabug (11.6.0):
- RNInstabug (11.9.0):
- Instabug (= 11.9.0)
- React-Core
- RNScreens (3.17.0):
Expand Down Expand Up @@ -553,7 +553,7 @@ SPEC CHECKSUMS:
React-RCTVibration: 53b92d54b923283638cb0186da7a5c2d2b70a49b
React-runtimeexecutor: 4bb657a97aa74568d9ed634c8bd478299bb8a3a6
ReactCommon: eb059748e842a1a86025ebbd4ac9d99e74492f88
RNInstabug: 59478a0327edcc586133d7a3432de218b05fbfab
RNInstabug: d4e83885e5819e32e6d3afaad1ee45ff1b9efa6e
RNScreens: 0df01424e9e0ed7827200d6ed1087ddd06c493f9
RNSVG: 551acb6562324b1d52a4e0758f7ca0ec234e278f
RNVectorIcons: fcc2f6cb32f5735b586e66d14103a74ce6ad61f8
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "instabug-reactnative",
"description": "React Native plugin for integrating the Instabug SDK",
"version": "11.6.0",
"version": "11.9.0",
"author": "Instabug (https://instabug.com)",
"repository": "github:Instabug/Instabug-React-Native",
"homepage": "https://www.instabug.com/platforms/react-native",
Expand Down

0 comments on commit 6f127bd

Please sign in to comment.