Skip to content

Commit 1525e0e

Browse files
author
Ali Abdelfattah
authored
Merge pull request #372 from Instabug/fix/repro-steps-mode-enabled-key
Release/v8.6.1
2 parents 2ab719f + 1a77b7b commit 1525e0e

File tree

6 files changed

+9
-3
lines changed

6 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
## Master
1+
## v8.6.1 (2019-08-26)
22

3-
* Bump native SDKs to 8.6.1
3+
* Introducing our new logo and branding. Meet the new Instabug: the platform for Real-Time Contextual Insights.
4+
* Updates native SDK dependencies to 8.6.1.
5+
* Adds the `enabled` key to `Instabug.reproStepsMode` enum to be able to use it with `Instabug.setReproStepsMode` API.
46

57
## v8.5.6 (2019-08-21)
68

index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@ export enum invocationEvent {
217217
floatingButton
218218
}
219219
export enum reproStepsMode {
220+
enabled,
220221
disabled,
221222
enabledWithNoScreenshots
222223
}

index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -787,6 +787,7 @@ const InstabugModule = {
787787
* @enum {number}
788788
*/
789789
reproStepsMode: {
790+
enabled: Instabug.reproStepsEnabled,
790791
disabled: Instabug.reproStepsDisabled,
791792
enabledWithNoScreenshots: Instabug.reproStepsEnabledWithNoScreenshots
792793
},

ios/RNInstabug/InstabugReactBridge.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,7 @@ - (NSDictionary *)constantsToExport
401401
@"dismissTypeCancel": @(IBGDismissTypeCancel),
402402
@"dismissTypeAddAtttachment": @(IBGDismissTypeAddAttachment),
403403

404+
@"reproStepsEnabled": @(IBGUserStepsModeEnable),
404405
@"reproStepsDisabled": @(IBGUserStepsModeDisable),
405406
@"reproStepsEnabledWithNoScreenshots": @(IBGUserStepsModeEnabledWithNoScreenshots),
406407

ios/RNInstabug/RCTConvert+InstabugEnums.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ @implementation RCTConvert (InstabugEnums)
4242
}), IBGDismissTypeSubmit, integerValue)
4343

4444
RCT_ENUM_CONVERTER(IBGUserStepsMode, (@{
45+
@"reproStepsEnabled": @(IBGUserStepsModeEnable),
4546
@"reproStepsDisabled": @(IBGUserStepsModeDisable),
4647
@"reproStepsEnabledWithNoScreenshots": @(IBGUserStepsModeEnabledWithNoScreenshots)
4748
}), IBGUserStepsModeEnabledWithNoScreenshots, integerValue)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "instabug-reactnative",
3-
"version": "8.5.6",
3+
"version": "8.6.1",
44
"description": "React Native plugin for integrating the Instabug SDK",
55
"main": "index.js",
66
"types": "index.d.ts",

0 commit comments

Comments
 (0)