-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps(react-native): Bump bugsnag-cocoa to v6.3.0
- Loading branch information
1 parent
11db017
commit 8523e5c
Showing
46 changed files
with
890 additions
and
667 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
86de8c605e82e67433ad91fd777b2aba4854f536 | ||
2256dfe86c61e70c57e33325513c37d2951e3441 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 48 additions & 23 deletions
71
packages/react-native/ios/vendor/bugsnag-cocoa/Bugsnag.xcodeproj/project.pbxproj
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
97 changes: 97 additions & 0 deletions
97
packages/react-native/ios/vendor/bugsnag-cocoa/Bugsnag/Client/BugsnagClient+Private.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
// | ||
// BugsnagClient+Private.h | ||
// Bugsnag | ||
// | ||
// Created by Nick Dowell on 26/11/2020. | ||
// Copyright © 2020 Bugsnag Inc. All rights reserved. | ||
// | ||
|
||
#import <Bugsnag/BugsnagClient.h> | ||
|
||
@class BugsnagBreadcrumbs; | ||
@class BugsnagConfiguration; | ||
@class BugsnagCrashSentry; | ||
@class BugsnagErrorReportApiClient; | ||
@class BugsnagMetadata; | ||
@class BugsnagNotifier; | ||
@class BugsnagPluginClient; | ||
@class BugsnagSessionTracker; | ||
@class BugsnagSystemState; | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface BugsnagClient () | ||
|
||
#pragma mark Properties | ||
|
||
@property (nonatomic) BOOL appDidCrashLastLaunch; | ||
|
||
@property (nullable, retain, nonatomic) BugsnagBreadcrumbs *breadcrumbs; | ||
|
||
@property (nullable, nonatomic) NSString *codeBundleId; | ||
|
||
@property (readonly) NSString *configMetadataFile; | ||
|
||
@property (nullable) NSDictionary *configMetadataFromLastLaunch; | ||
|
||
@property (nullable, retain, nonatomic) BugsnagConfiguration *configuration; | ||
|
||
@property (strong, nonatomic) BugsnagCrashSentry *crashSentry; | ||
|
||
@property (strong, nonatomic) BugsnagErrorReportApiClient *errorReportApiClient; | ||
|
||
@property NSMutableDictionary *extraRuntimeInfo; | ||
|
||
#if TARGET_OS_IOS | ||
@property (strong, nonatomic) NSString *lastOrientation; | ||
#endif | ||
|
||
@property (strong, nonatomic) BugsnagMetadata *metadata; // Used in BugsnagReactNative | ||
|
||
@property (readonly) NSString *metadataFile; | ||
|
||
@property (nullable) NSDictionary *metadataFromLastLaunch; | ||
|
||
@property (strong, nonatomic) BugsnagNotifier *notifier; // Used in BugsnagReactNative | ||
|
||
@property (strong, nonatomic) BugsnagPluginClient *pluginClient; | ||
|
||
@property (strong, nonatomic) BugsnagSessionTracker *sessionTracker; // Used in BugsnagReactNative | ||
|
||
@property (readonly) BOOL started; | ||
|
||
@property (strong, nonatomic) BugsnagMetadata *state; | ||
|
||
@property (strong, nonatomic) NSMutableArray *stateEventBlocks; | ||
|
||
@property (readonly) NSString *stateMetadataFile; | ||
|
||
@property (nullable) NSDictionary *stateMetadataFromLastLaunch; | ||
|
||
@property (strong, nonatomic) BugsnagSystemState *systemState; | ||
|
||
@property (nonatomic) BugsnagUser *user; | ||
|
||
#pragma mark Methods | ||
|
||
- (void)addBreadcrumbWithBlock:(void (^)(BugsnagBreadcrumb *))block; | ||
|
||
- (void)addRuntimeVersionInfo:(NSString *)info withKey:(NSString *)key; | ||
|
||
- (NSDictionary *)collectAppWithState; // Used in BugsnagReactNative | ||
|
||
- (NSArray *)collectBreadcrumbs; // Used in BugsnagReactNative | ||
|
||
- (NSDictionary *)collectDeviceWithState; // Used in BugsnagReactNative | ||
|
||
- (NSArray *)collectThreads:(BOOL)unhandled; // Used in BugsnagReactNative | ||
|
||
- (void)notifyInternal:(BugsnagEvent *)event block:(BugsnagOnErrorBlock)block; | ||
|
||
- (BOOL)shouldReportOOM; | ||
|
||
- (void)start; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
Oops, something went wrong.