Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
executor:
name: android/android-machine
resource-class: xlarge
tag: 2022.04.1
tag: '2024.01.1'
steps:
- checkout:
path: ~/project
Expand All @@ -32,9 +32,9 @@ jobs:
working_directory: example
command: cordova plugins add --link ../ tests
- run:
name: Install Build Tools v30.0.3
name: Install Build Tools v32.0.0
working_directory: example
command: sdkmanager "build-tools;30.0.3"
command: sdkmanager "build-tools;32.0.0"
- android/start-emulator-and-run-tests:
run-tests-working-directory: example/platforms/android
system-image: system-images;android-30;google_apis;x86
Expand All @@ -48,7 +48,7 @@ jobs:
test_ios:
working_directory: ~/project
macos:
xcode: 13.3.0
xcode: 13.4.1
steps:
- checkout:
path: ~/project
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:

publish:
macos:
xcode: 13.3.0
xcode: 13.4.1
working_directory: "~"
steps:
- checkout:
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@

## 12.1.0 (2025-03-03)
* Bumps Instabug iOS SDK to `v12.1.0`
* Bumps Instabug Android SDK to `v12.1.0`

### Changed

- Add the new repro steps configuration API `Instabug.setReproStepsConfig`
- Remove deprecated APIs `Instabug.setDebugEnabled` in favour of `debugLogsLevel` property of `Instabug.init`.
- Adds the new `Instabug.init` API to start the SDK as follows:
```js
Instabug.init({
token: '<APP_TOKEN>',
invocationEvents: [BugReporting.invocationEvents.button],
debugLogsLevel: ArgsRegistry.logLeve.verbose,
});
```
## 11.7.0 (2023-02-02)

* Bumps Instabug Android SDK to `v11.8.0`
Expand Down
Loading