Skip to content

Commit fc3f455

Browse files
authored
💎 Bump version to 8.3.4
* 📝 removing reproStepsMode enabled enum * 💎 Bump version to 8.3.4
1 parent 41784f8 commit fc3f455

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v8.3.4 (2019-06-06)
2+
3+
* Fixes build failure on iOS caused by IBGUserStepsModeEnable not found in SDK.
4+
15
## v8.3.3 (2019-05-31)
26

37
* Fixes crash caused when calling the setReproStepsMode API with enum value enabled.

index.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,6 @@ export enum invocationEvent {
231231
floatingButton
232232
}
233233
export enum reproStepsMode {
234-
enabled,
235234
disabled,
236235
enabledWithNoScreenshots
237236
}

index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,6 @@ const InstabugModule = {
819819
* @enum {number}
820820
*/
821821
reproStepsMode: {
822-
enabled: Instabug.reproStepsEnabled,
823822
disabled: Instabug.reproStepsDisabled,
824823
enabledWithNoScreenshots: Instabug.reproStepsEnabledWithNoScreenshots
825824
},

ios/RNInstabug/InstabugReactBridge.m

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,6 @@ - (NSDictionary *)constantsToExport
726726
@"dismissTypeCancel": @(IBGDismissTypeCancel),
727727
@"dismissTypeAddAtttachment": @(IBGDismissTypeAddAttachment),
728728

729-
@"reproStepsEnabled": @(IBGUserStepsModeEnable),
730729
@"reproStepsDisabled": @(IBGUserStepsModeDisable),
731730
@"reproStepsEnabledWithNoScreenshots": @(IBGUserStepsModeEnabledWithNoScreenshots),
732731

ios/RNInstabug/RCTConvert+InstabugEnums.m

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ @implementation RCTConvert (InstabugEnums)
4848
}), IBGPromptOptionChat, integerValue)
4949

5050
RCT_ENUM_CONVERTER(IBGUserStepsMode, (@{
51-
@"reproStepsEnabled": @(IBGUserStepsModeEnable),
5251
@"reproStepsDisabled": @(IBGUserStepsModeDisable),
5352
@"reproStepsEnabledWithNoScreenshots": @(IBGUserStepsModeEnabledWithNoScreenshots)
5453
}), 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.3.3",
3+
"version": "8.3.4",
44
"description": "React Native plugin for integrating the Instabug SDK",
55
"main": "index.js",
66
"types": "index.d.ts",

0 commit comments

Comments
 (0)