|
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. |
6 | 14 | - 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`. |
14 | 22 |
|
15 | 23 | ## 11.6.0 (2022-12-29)
|
16 | 24 |
|
|
0 commit comments