Skip to content

Commit 77a261c

Browse files
authored
Bump iOS SDK to v11.2.0 (#774)
1 parent 3f74afe commit 77a261c

File tree

65 files changed

+13871
-8003
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+13871
-8003
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
## Unreleased
22

3+
* Bumps Instabug iOS SDK to v11.2.0
34
* React Native 0.69 support
45
* Bumps the minimum supported React Native version to 0.60.0
56
* Drops manual linking support
Lines changed: 6807 additions & 4002 deletions
Large diffs are not rendered by default.
Lines changed: 6591 additions & 3852 deletions
Large diffs are not rendered by default.

ios/Instabug.xcframework/ios-arm64_armv7/Instabug.framework/Headers/IBGAPM.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2020 by Instabug, Inc., all rights reserved.
77
8-
Version: 11.0.2
8+
Version: 11.2.0
99
*/
1010

1111
#import <Foundation/Foundation.h>

ios/Instabug.xcframework/ios-arm64_armv7/Instabug.framework/Headers/IBGBugReporting.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2020 by Instabug, Inc., all rights reserved.
77
8-
Version: 11.0.2
8+
Version: 11.2.0
99
*/
1010

1111
#import <Foundation/Foundation.h>

ios/Instabug.xcframework/ios-arm64_armv7/Instabug.framework/Headers/IBGCrashReporting.h

Lines changed: 38 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
66
Copyright: (c) 2013-2019 by Instabug, Inc., all rights reserved.
77
8-
Version: 11.0.2
8+
Version: 11.2.0
99
*/
1010

1111
#import <Foundation/Foundation.h>
12+
#import "IBGNonFatal.h"
1213

1314
NS_SWIFT_NAME(CrashReporting)
1415
@interface IBGCrashReporting : NSObject
@@ -39,22 +40,22 @@ NS_SWIFT_NAME(CrashReporting)
3940
4041
@param exception Exception to be reported.
4142
*/
42-
+ (void)reportException:(NSException *)exception;
43+
+ (void)reportException:(NSException *)exception DEPRECATED_MSG_ATTRIBUTE("Create and use NonFatalException object instead");
4344

4445
/**
4546
@brief Report an error manually.
4647
4748
@param error error to be reported.
4849
*/
49-
+ (void)reportError:(NSError *)error;
50+
+ (void)reportError:(NSError *)error DEPRECATED_MSG_ATTRIBUTE("Create and use NonFatalError object instead");
5051

5152
/**
5253
@brief Report an exception manually with user attributes will be sent with this exception only.
5354
@discussion The limit for user attributes sent with an exception is 100 elements; if this limit is exceeded we will only select 100 elements. Also, the characters limit for a user attribute's key and value is 90 characters; keys and values exceeding this limit will be trimmed.
5455
@param exception Exception to be reported.
5556
@param userAttributes user attributes to be attached with the report.
5657
*/
57-
+ (void)reportException:(NSException *)exception withUserAttributes:(NSDictionary <NSString *, NSString *>*)userAttributes;
58+
+ (void)reportException:(NSException *)exception withUserAttributes:(NSDictionary <NSString *, NSString *>*)userAttributes DEPRECATED_MSG_ATTRIBUTE("Create and use NonFatalException object instead");
5859

5960
/**
6061
@brief Report an error manually with user attributes will be sent with this exception only.
@@ -63,6 +64,38 @@ NS_SWIFT_NAME(CrashReporting)
6364
@param error error to be reported.
6465
@param userAttributes user attributes to be attached with the report.
6566
*/
66-
+ (void)reportError:(NSError *)error withUserAttributes:(NSDictionary <NSString *, NSString *>*)userAttributes;
67+
+ (void)reportError:(NSError *)error withUserAttributes:(NSDictionary <NSString *, NSString *>*)userAttributes DEPRECATED_MSG_ATTRIBUTE("Create and use NonFatalError object instead");
68+
69+
/**
70+
@brief Report an exception manually with a custom grouping string.
71+
72+
@param exception Exception to be reported.
73+
@param groupingString Grouping string to be sent with the exception
74+
*/
75+
+ (void)reportException:(NSException *)exception withGroupingString:(NSString *)groupingString DEPRECATED_MSG_ATTRIBUTE("Create and use NonFatalException object instead");
76+
77+
/**
78+
@brief Report an error manually with a custom grouping string.
79+
80+
@param error error to be reported.
81+
@param groupingString Grouping string to be sent with the exception
82+
*/
83+
+ (void)reportError:(NSError *)error withGroupingString:(NSString *)groupingString DEPRECATED_MSG_ATTRIBUTE("Create and use NonFatalError object instead");
84+
85+
/**
86+
@brief Creates a new NonFatalException object to report a handled exception with customizable metadata.
87+
88+
@param exception exception to be reported
89+
@returns NonFatalException object
90+
*/
91+
+ (IBGNonFatalException *)exception:(NSException *)exception;
92+
93+
/**
94+
@brief Creates a new NonFatalError object to report a handled error with customizable metadata.
95+
96+
@param error error to be reported
97+
@returns NonFatalError object
98+
*/
99+
+ (IBGNonFatalError *)error:(NSError *)error;
67100

68101
@end

ios/Instabug.xcframework/ios-arm64_armv7/Instabug.framework/Headers/IBGExecutionTrace.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2020 by Instabug, Inc., all rights reserved.
77
8-
Version: 11.0.2
8+
Version: 11.2.0
99
*/
1010

1111
#import <Foundation/Foundation.h>

ios/Instabug.xcframework/ios-arm64_armv7/Instabug.framework/Headers/IBGFeatureRequests.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2020 by Instabug, Inc., all rights reserved.
77
8-
Version: 11.0.2
8+
Version: 11.2.0
99
*/
1010

1111

ios/Instabug.xcframework/ios-arm64_armv7/Instabug.framework/Headers/IBGLog.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2020 by Instabug, Inc., all rights reserved.
77
8-
Version: 11.0.2
8+
Version: 11.2.0
99
*/
1010

1111
#import <Foundation/Foundation.h>

ios/Instabug.xcframework/ios-arm64_armv7/Instabug.framework/Headers/IBGNetworkLogger.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2020 by Instabug, Inc., all rights reserved.
77
8-
Version: 11.0.2
8+
Version: 11.2.0
99
*/
1010

1111
#import <Foundation/Foundation.h>

0 commit comments

Comments
 (0)