Skip to content

Commit e5c938f

Browse files
committed
v7.2.5
1 parent b007b96 commit e5c938f

Some content is hidden

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

48 files changed

+146
-133
lines changed

Carthage.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
"7.2.1": "https://github.com/Instabug/Instabug-iOS/releases/download/7.2.1/Instabug.zip",
55
"7.2.2": "https://github.com/Instabug/Instabug-iOS/releases/download/7.2.2/Instabug.zip",
66
"7.2.3": "https://github.com/Instabug/Instabug-iOS/releases/download/7.2.3/Instabug.zip",
7-
"7.2.4": "https://github.com/Instabug/Instabug-iOS/releases/download/7.2.4/Instabug.zip"
7+
"7.2.4": "https://github.com/Instabug/Instabug-iOS/releases/download/7.2.4/Instabug.zip",
8+
"7.2.5": "https://github.com/Instabug/Instabug-iOS/releases/download/7.2.5/Instabug.zip"
89
}

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.4</string>
16+
<string>7.2.5</string>
1717
<key>CFBundleVersion</key>
18-
<string>7664</string>
18+
<string>7815</string>
1919
</dict>
2020
</plist>
Binary file not shown.

Instabug.framework/Headers/Instabug.h

Lines changed: 17 additions & 5 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.4
8+
Version: 7.2.5
99
*/
1010

1111
#import <Foundation/Foundation.h>
@@ -292,7 +292,7 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
292292
+ (void)identifyUserWithEmail:(NSString *)email name:(nullable NSString *)name;
293293

294294
/**
295-
@brief Sets the default value of the user's email to nil and show email field and remove user name from all reports
295+
@brief Resets the value of the user's email and name, previously set using `+ [Instabug identifyUserWithEmail:name:]`.
296296
297297
@discussion This method also resets all chats currently on the device and removes any set user attributes.
298298
*/
@@ -1006,8 +1006,20 @@ OBJC_EXTERN void IBGNSLog(NSString *format, va_list args);
10061006
@param obfuscationHandler A block that takes the original response and it's data and a return block with the
10071007
new data and new response.
10081008
*/
1009-
+ (void)setNetworkLogResponseObfuscationHandler:(void (^)(NSData * _Nullable responseData,
1010-
NSURLResponse * _Nonnull response, NetworkObfuscationCompletionBlock returnBlock))obfuscationHandler;
1009+
+ (void)setNetworkLogResponseObfuscationHandler:(void (^)(NSData * _Nullable responseData, NSURLResponse * _Nonnull response, NetworkObfuscationCompletionBlock returnBlock))obfuscationHandler;
1010+
1011+
/**
1012+
@brief Use to get callbacks about progress of sending body content of a particular request when networking logging is
1013+
enabled.
1014+
1015+
@discussion The provided block will get periodical callbacks about the progress of sending the body content of a request.
1016+
1017+
@param URL URL which will be attached with requestProgressHandler.
1018+
@param requestProgressHandler A block that will be called for the requestURL when SDK intercept that request.
1019+
1020+
*/
1021+
+ (void)setProgressHandlerForRequestURL:(nonnull NSURL *)URL
1022+
progressHandler:(nonnull void (^)(NSURLSessionTask *task, int64_t bytesSent, int64_t totalBytesSent, int64_t totalBytesExpectedToSend))requestProgressHandler;
10111023

10121024
/**
10131025
@brief Used to ask whether your app is prepared to handle a particular authentication challenge. Can be called on any thread.
@@ -1035,7 +1047,7 @@ OBJC_EXTERN void IBGNSLog(NSString *format, va_list args);
10351047
10361048
@discussion If you disable surveys on the SDK but still have active surveys on your Instabug dashboard, those surveys are still going to be sent to the device, but are not going to be shown automatically.
10371049
1038-
To manually display any available surveys, call `+ [Instabug showPendingSurveys]`.
1050+
To manually display any available surveys, call `+ [Instabug showSurveyIfAvailable]`.
10391051
10401052
Defaults to YES.
10411053

Instabug.framework/Info.plist

0 Bytes
Binary file not shown.

Instabug.framework/Instabug

877 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)