Skip to content

Commit bfbe7d7

Browse files
TheBuggedYRNHeshamMegid
authored andcommitted
[MOB-11951] Release v11.9.0 (#342)
1 parent a09a6b3 commit bfbe7d7

File tree

6 files changed

+27
-18
lines changed

6 files changed

+27
-18
lines changed

CHANGELOG.md

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
1-
## Unreleased
2-
3-
* Bumps Instabug Android SDK to v11.9.0
4-
* Bumps Instabug iOS SDK to v11.9.0
5-
* Deprecates `Instabug.start` in favour of the new `Instabug.init` API.
6-
* Deprecates `Instabug.setDebugEnabled`, `Instabug.setSdkDebugLogsLevel`, and `APM.setLogLevel` in favour of `debugLogsLevel` property, which can be passed while initializing the SDK using `Instabug.init`.
1+
## 11.9.0 (2023-02-21)
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+
```dart
7+
Instabug.init(
8+
token: '<APP_TOKEN>',
9+
invocationEvents: [InvocationEvent.shake],
10+
debugLogsLevel: LogLevel.verbose,
11+
);
12+
```
13+
* Adds `hungarian` and `finnish` locales support.
14+
* Deprecates `Instabug.start` in favour of `Instabug.init`.
15+
* Deprecates `Instabug.setDebugEnabled`, `Instabug.setSdkDebugLogsLevel`, and `APM.setLogLevel` in favour of `debugLogsLevel` parameter of `Instabug.init`.
716
* Deprecates the `IBGSDKDebugLogsLevel` enum in favour of the `LogLevel` enum.
817
* Deprecates both `warning` and `info` values from the `LogLevel` enum.
9-
* Adds `hungarian` and `finnish` locales support
10-
* Adds missing mapping for `norwegian` and `slovak` locales on iOS
11-
* Exports native Android SDK
18+
* Fixes `norwegian` and `slovak` locales on iOS.
19+
* Fixes license warning on iOS.
20+
* Exports Instabug Android SDK using `api` instead of `implementation`.
1221
1322
## 11.6.0 (2022-12-29)
1423

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group 'com.instabug.flutter'
2-
version '11.6.0'
2+
version '11.9.0'
33

44
buildscript {
55
repositories {

example/ios/Podfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
PODS:
22
- Flutter (1.0.0)
3-
- Instabug (11.7.0)
4-
- instabug_flutter (11.6.0):
3+
- Instabug (11.9.0)
4+
- instabug_flutter (11.9.0):
55
- Flutter
6-
- Instabug (= 11.7.0)
6+
- Instabug (= 11.9.0)
77
- OCMock (3.6)
88

99
DEPENDENCIES:
@@ -24,8 +24,8 @@ EXTERNAL SOURCES:
2424

2525
SPEC CHECKSUMS:
2626
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
27-
Instabug: 7c9b72efb697e0f11c21ddf74e5d57a2b67ce9f7
28-
instabug_flutter: 7f0ff8edd8cbdd894d23f98b4e3b9adaddfb1efc
27+
Instabug: 1d21096fdadbc1f26cd2fc2322ff8e060a611237
28+
instabug_flutter: 40394da80e1cf39b540a3836caf4c555739b01de
2929
OCMock: 5ea90566be239f179ba766fd9fbae5885040b992
3030

3131
PODFILE CHECKSUM: 637e800c0a0982493b68adb612d2dd60c15c8e5c

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ packages:
107107
path: ".."
108108
relative: true
109109
source: path
110-
version: "11.6.0"
110+
version: "11.9.0"
111111
js:
112112
dependency: transitive
113113
description:

ios/instabug_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'instabug_flutter'
3-
s.version = '11.6.0'
3+
s.version = '11.9.0'
44
s.summary = 'Flutter plugin for integrating the Instabug SDK.'
55
s.author = 'Instabug'
66
s.homepage = 'https://www.instabug.com/platforms/flutter'

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: instabug_flutter
2-
version: 11.6.0
2+
version: 11.9.0
33
description: >-
44
Instabug empowers mobile teams to monitor, prioritize, and debug
55
performance and stability issues throughout the app development lifecycle.

0 commit comments

Comments
 (0)