Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit be9132c

Browse files
authored
πŸ’Ž Bump to version 8.7.3
1 parent fc3b5e4 commit be9132c

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

β€ŽCHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v8.7.3 (2019-11-14)
2+
3+
* Fixes `BugReporting.setViewHierarchyEnabled` crashing on iOS.
4+
15
## v8.7.2 (2019-11-05)
26

37
* Fixes the automatic uploading of the source map files in some cases due to incorrect regex.

β€ŽInstabugSample/ios/InstabugSampleTests/InstabugBugReportingTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ - (void) testgivenArgs$setAutoScreenRecordingMaxDuration_whenQuery_thenShouldCal
173173

174174
- (void) testgivenBoolean$setViewHierarchyEnabled_whenQuery_thenShouldCallNativeApi {
175175
BOOL enabled = true;
176-
[self.instabugBridge setViewHirearchyEnabled:enabled];
176+
[self.instabugBridge setViewHierarchyEnabled:enabled];
177177
XCTAssertTrue(IBGBugReporting.shouldCaptureViewHierarchy);
178178
}
179179

β€Žios/RNInstabug/InstabugBugReportingBridge.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@
4545

4646
- (void)setAutoScreenRecordingMaxDuration:(CGFloat)duration;
4747

48-
- (void)setViewHirearchyEnabled:(BOOL)viewHirearchyEnabled;
48+
- (void)setViewHierarchyEnabled:(BOOL)viewHirearchyEnabled;
4949

5050
@end

β€Žios/RNInstabug/InstabugBugReportingBridge.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ + (BOOL)requiresMainQueueSetup
162162
IBGBugReporting.enabledAttachmentTypes = attachmentTypes;
163163
}
164164

165-
RCT_EXPORT_METHOD(setViewHirearchyEnabled:(BOOL)viewHirearchyEnabled) {
165+
RCT_EXPORT_METHOD(setViewHierarchyEnabled:(BOOL)viewHirearchyEnabled) {
166166
IBGBugReporting.shouldCaptureViewHierarchy = viewHirearchyEnabled;
167167
}
168168

β€Ž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.7.2",
3+
"version": "8.7.3",
44
"description": "React Native plugin for integrating the Instabug SDK",
55
"main": "index.js",
66
"types": "index.d.ts",

0 commit comments

Comments
Β (0)