Skip to content

Commit ce3469d

Browse files
committed
⬆️ Upgrade native iOS SDK dependency
1 parent 3636d57 commit ce3469d

Some content is hidden

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

52 files changed

+164
-195
lines changed

ios/Instabug.framework/Headers/Instabug.h

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

1111
#import <Foundation/Foundation.h>
@@ -697,7 +697,7 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
697697
@param names Array of names of icons to be shown along with titles. Use the same names you would use
698698
with `+ [UIImage imageNamed:]`.
699699
*/
700-
+ (void)setReportCategoriesWithTitles:(NSArray<NSString *> *)titles iconNames:(nullable NSArray<NSString *> *)names;
700+
+ (void)setReportCategoriesWithTitles:(NSArray<NSString *> *)titles iconNames:(nullable NSArray<NSString *> *)names DEPRECATED_MSG_ATTRIBUTE("Starting from v7.9, you can add categories from dashboard.");
701701

702702
/**
703703
@brief Sets an array of report categories to be shown for users to select from before reporting a bug or sending
@@ -708,14 +708,26 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
708708
@param title extra field key.
709709
@param required determine whether this field is required or not.
710710
*/
711-
+ (void)addExtraReportFieldWithTitle:(NSString *)title required:(BOOL)required;
711+
+ (void)addExtraReportFieldWithTitle:(NSString *)title required:(BOOL)required DEPRECATED_MSG_ATTRIBUTE("Starting from v7.9, use setExtendedBugReportMode: instead");;
712712

713713
/**
714714
@brief Remove all extra fields.
715715
716716
@discussion Use this method to remove all added extra fields.
717717
*/
718-
+ (void)removeExtraReportFields;
718+
+ (void)removeExtraReportFields DEPRECATED_MSG_ATTRIBUTE("Starting from v7.9, use setExtendedBugReportMode: instead");;
719+
720+
/**
721+
@brief Sets whether the extended bug report mode should be disabled, enabled with required fields or enabled with optional fields.
722+
723+
@discussion This feature is disabled by default. When enabled, it adds more fields for your reporters to fill in. You can set whether the extra fields are required or optional.
724+
1. Expected Results.
725+
2. Actual Results.
726+
3. Steps to Reproduce.
727+
728+
@param extendedBugReportMode An enum to disable the extended bug report mode, enable it with required or with optional fields.
729+
*/
730+
+ (void)setExtendedBugReportMode:(IBGExtendedBugReportMode)extendedBugReportMode;
719731

720732
/**
721733
@brief Set custom user attributes that are going to be sent with each feedback, bug or crash.

ios/Instabug.framework/Info.plist

-1 Bytes
Binary file not shown.

ios/Instabug.framework/Instabug

476 KB
Binary file not shown.

ios/Instabug.framework/_CodeSignature/CodeResources

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<dict>
77
<key>Headers/Instabug.h</key>
88
<data>
9-
4kxZEeE00REbmUfGg94C3NULVvw=
9+
EW0LawU2ocbTJXyXab6eGuYBqIg=
1010
</data>
1111
<key>Info.plist</key>
1212
<data>
13-
VKe9NgIDfUhBqsBVFqPK7wnZNKg=
13+
uPr3dFdFtDxfIr/Z4Ak4dMZUtXU=
1414
</data>
1515
<key>Modules/module.modulemap</key>
1616
<data>
@@ -23,11 +23,11 @@
2323
<dict>
2424
<key>hash</key>
2525
<data>
26-
4kxZEeE00REbmUfGg94C3NULVvw=
26+
EW0LawU2ocbTJXyXab6eGuYBqIg=
2727
</data>
2828
<key>hash2</key>
2929
<data>
30-
jm2cECRm9S/pqpKmkItxvSLqsykctBM5sYtNF2GHj0o=
30+
1QgezJN+NvpRWcOOsFWXKUZJT723WvQT5vRR6J+lA/Y=
3131
</data>
3232
</dict>
3333
<key>Modules/module.modulemap</key>

ios/InstabugCore.framework/Headers/IBGTypes.h

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

1111
#import <UIKit/UIKit.h>
@@ -78,6 +78,10 @@ extern NSString * const kIBGSurveyThankYouTitleText;
7878
extern NSString * const kIBGSurveyThankYouDescriptionText;
7979
extern NSString * const kIBGSurveysNPSLeastLikelyStringName;
8080
extern NSString * const kIBGSurveysNPSMostLikelyStringName;
81+
extern NSString * const kIBGExpectedResultsStringName;
82+
extern NSString * const kIBGActualResultsStringName;
83+
extern NSString * const kIBGStepsToReproduceStringName;
84+
extern NSString * const kIBGReplyButtonTitleStringName;
8185

8286
/// -----------
8387
/// @name Enums
@@ -262,7 +266,11 @@ typedef NS_ENUM(NSInteger, IBGString) {
262266
IBGStringSurveyIntroTakeSurveyButtonText,
263267
IBGStringSurveyIntroDismissButtonText,
264268
IBGStringSurveyThankYouTitleText,
265-
IBGStringSurveyThankYouDescriptionText
269+
IBGStringSurveyThankYouDescriptionText,
270+
IBGExpectedResultsStringName,
271+
IBGActualResultsStringName,
272+
IBGStepsToReproduceStringName,
273+
IBGReplyButtonTitleStringName
266274
};
267275

268276
/**
@@ -315,6 +323,15 @@ typedef NS_OPTIONS(NSInteger, IBGAttachmentType) {
315323
IBGAttachmentTypeScreenRecording = 1 << 6,
316324
};
317325

326+
/**
327+
The extended bug report mode.
328+
*/
329+
typedef NS_ENUM(NSInteger, IBGExtendedBugReportMode) {
330+
IBGExtendedBugReportModeEnabledWithRequiredFields,
331+
IBGExtendedBugReportModeEnabledWithOptionalFields,
332+
IBGExtendedBugReportModeDisabled
333+
};
334+
318335
@interface UIView (Instabug)
319336

320337
/**

ios/InstabugCore.framework/Headers/InstabugCore.h

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

1111
#import <Foundation/Foundation.h>
Binary file not shown.
Binary file not shown.
Binary file not shown.
-6 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)