Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump bugsnag-cocoa to v6.18.1 #166

Merged
merged 1 commit into from
Jun 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"Ljava",
"Memzero",
"Millis",
"NSJSON",
"Reactnativejs",
"Timespan",
"UCLASS",
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Changelog
## TBD

* Updates the bugsnag-android dependency from v5.22.1 to [v5.23.0](https://github.com/bugsnag/bugsnag-android/blob/master/CHANGELOG.md#5230-2022-06-20)
* Updates the bugsnag-cocoa dependency from v6.16.8 to [v6.18.1](https://github.com/bugsnag/bugsnag-cocoa/blob/master/CHANGELOG.md#6181-2022-06-22)

## 1.4.0 (2022-05-11)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
#include "Serialization/LargeMemoryReader.h"
#include "Serialization/LargeMemoryWriter.h"

#import <BugsnagPrivate/BSGJSONSerialization.h>

// String conversion

static inline FString FStringFromNSString(NSString* _Nullable String)
Expand Down Expand Up @@ -61,7 +59,7 @@ static inline NSNumber* NSNumberFromOptional(const TOptional<T>& Value)

static inline TSharedPtr<FJsonObject> FJsonObjectFromNSDictionary(NSDictionary* Dictionary, NSError** Error = nil)
{
NSData* Data = [BSGJSONSerialization dataWithJSONObject:Dictionary options:0 error:Error];
NSData* Data = [NSJSONSerialization dataWithJSONObject:Dictionary options:0 error:Error];
if (Data)
{
TSharedPtr<FJsonObject> JsonObject;
Expand All @@ -86,7 +84,7 @@ static inline NSDictionary* _Nullable NSDictionaryFromFJsonObject(const TSharedP
{
JsonWriter->Close();
NSData* Data = [NSData dataWithBytesNoCopy:Archive.GetData() length:Archive.TotalSize() freeWhenDone:NO];
return [BSGJSONSerialization JSONObjectWithData:Data options:0 error:Error];
return [NSJSONSerialization JSONObjectWithData:Data options:0 error:Error];
}
return nil;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
#import <Bugsnag/BugsnagEndpointConfiguration.h>
#import <Bugsnag/BugsnagErrorTypes.h>

#import <BugsnagPrivate/BSGJSONSerialization.h>
#import <BugsnagPrivate/BugsnagConfiguration+Private.h>
#import <BugsnagPrivate/BugsnagNotifier.h>

Expand Down
2 changes: 1 addition & 1 deletion deps/bugsnag-cocoa
Submodule bugsnag-cocoa updated 400 files