Skip to content

Commit b624355

Browse files
committed
v7.2.7
1 parent 5b7c541 commit b624355

Some content is hidden

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

49 files changed

+145
-142
lines changed

Carthage.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
"7.2.3": "https://github.com/Instabug/Instabug-iOS/releases/download/7.2.3/Instabug.zip",
77
"7.2.4": "https://github.com/Instabug/Instabug-iOS/releases/download/7.2.4/Instabug.zip",
88
"7.2.5": "https://github.com/Instabug/Instabug-iOS/releases/download/7.2.5/Instabug.zip",
9-
"7.2.6": "https://github.com/Instabug/Instabug-iOS/releases/download/7.2.6/Instabug.zip"
9+
"7.2.6": "https://github.com/Instabug/Instabug-iOS/releases/download/7.2.6/Instabug.zip",
10+
"7.2.7": "https://github.com/Instabug/Instabug-iOS/releases/download/7.2.7/Instabug.zip"
1011
}

Instabug.framework.dSYM/Contents/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<key>CFBundleSignature</key>
1414
<string>????</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>7.2.6</string>
16+
<string>7.2.7</string>
1717
<key>CFBundleVersion</key>
18-
<string>7847</string>
18+
<string>8254</string>
1919
</dict>
2020
</plist>
Binary file not shown.

Instabug.framework/Headers/IBGTypes.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ extern NSString * const kIBGSurveyNoAnswerTitle;
6060
extern NSString * const kIBGSurveyNoAnswerMessage;
6161
extern NSString * const kIBGSurveySubmitTitle;
6262
extern NSString * const kIBGVideoPressRecordTitle;
63+
extern NSString * const kIBGLowDiskStorageTitle;
64+
extern NSString * const kIBGLowDiskStorageMessage;
6365

6466
/// -----------
6567
/// @name Enums
@@ -236,7 +238,9 @@ typedef NS_ENUM(NSInteger, IBGString) {
236238
kIBGStringSurveyNoAnswerTitle,
237239
kIBGStringSurveyNoAnswerMessage,
238240
kIBGStringSurveySubmitTitle,
239-
kIBGStringVideoPressRecordTitle
241+
kIBGStringVideoPressRecordTitle,
242+
kIBGStringLowDiskStorageTitle,
243+
kIBGStringLowDiskStorageMessage
240244
};
241245

242246
/**

Instabug.framework/Headers/Instabug.h

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

1111
#import <Foundation/Foundation.h>
@@ -766,7 +766,7 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
766766
@discussion Logged user events are going to be sent with each report, as well as at the end of a session.
767767
768768
@param name Event name.
769-
@param params An optional dictionary or parameters to be associated with the event.
769+
@param params An optional dictionary or parameters to be associated with the event. Make sure it's JSON serializable.
770770
*/
771771
+ (void)logUserEventWithName:(NSString *)name params:(nullable NSDictionary *)params;
772772

@@ -994,17 +994,15 @@ OBJC_EXTERN void IBGNSLog(NSString *format, va_list args);
994994
/**
995995
@brief Use to obfuscate a request's response that's going to be included in network logs.
996996
997-
@discussion Use this method if you want to make any modifications to responses and its' data before it is added to the
998-
network log.
999-
This won't be applied to already filtered responses.
1000-
1001-
Note that thsese changes doesn't affect the actual response data.
997+
@discussion Use this method if you want to make any modifications to a request's respone and its data before it's
998+
added to network logs.
1002999
10031000
The provided block will be called for every response. You should do whatever processing you need to do on the response
1004-
and data inside that block, then return a response to be included in network logs.
1001+
and data inside that block, then return response and data to be included in network logs. Changes you make to the
1002+
response and its data only affect network logs, not the actual response.
10051003
1006-
@param obfuscationHandler A block that takes the original response and it's data and a return block with the
1007-
new data and new response.
1004+
@param obfuscationHandler A block that takes the original response, its data and a return block as parameters. The
1005+
return block should be called with the modified data and response.
10081006
*/
10091007
+ (void)setNetworkLogResponseObfuscationHandler:(void (^)(NSData * _Nullable responseData, NSURLResponse * _Nonnull response, NetworkObfuscationCompletionBlock returnBlock))obfuscationHandler;
10101008

0 commit comments

Comments
 (0)