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

chore(deps): update Cocoa SDK to v8.4.0 #2285

Merged
merged 2 commits into from
Apr 4, 2023
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
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

### Dependencies

- Bump Cocoa SDK from v8.3.0 to v8.3.3 ([#2237](https://github.com/getsentry/sentry-dotnet/pull/2237), [#2248](https://github.com/getsentry/sentry-dotnet/pull/2248), [#2251](https://github.com/getsentry/sentry-dotnet/pull/2251))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#833)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.3.0...8.3.3)
- Bump Cocoa SDK from v8.3.0 to v8.4.0 ([#2237](https://github.com/getsentry/sentry-dotnet/pull/2237), [#2248](https://github.com/getsentry/sentry-dotnet/pull/2248), [#2251](https://github.com/getsentry/sentry-dotnet/pull/2251), [#2285](https://github.com/getsentry/sentry-dotnet/pull/2285))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#840)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.3.0...8.4.0)

- Bump CLI from v2.14.4 to v2.16.1 ([#2238](https://github.com/getsentry/sentry-dotnet/pull/2238), [#2244](https://github.com/getsentry/sentry-dotnet/pull/2244), [#2252](https://github.com/getsentry/sentry-dotnet/pull/2252), [#2264](https://github.com/getsentry/sentry-dotnet/pull/2264))
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2161)
Expand Down
2 changes: 1 addition & 1 deletion modules/sentry-cocoa
Submodule sentry-cocoa updated 103 files
47 changes: 47 additions & 0 deletions src/Sentry.Bindings.Cocoa/ApiDefinitions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -565,6 +565,32 @@ interface SentryFrame : SentrySerializable
NSNumber StackStart { get; set; }
}

// @interface SentryGeo : NSObject <SentrySerializable, NSCopying>
[BaseType (typeof(NSObject))]
[Internal]
interface SentryGeo : SentrySerializable
{
// @property (copy, atomic) NSString * _Nullable city;
[NullAllowed, Export ("city")]
string City { get; set; }

// @property (copy, atomic) NSString * _Nullable countryCode;
[NullAllowed, Export ("countryCode")]
string CountryCode { get; set; }

// @property (copy, atomic) NSString * _Nullable region;
[NullAllowed, Export ("region")]
string Region { get; set; }

// -(BOOL)isEqualToGeo:(SentryGeo * _Nonnull)geo;
[Export ("isEqualToGeo:")]
bool IsEqualToGeo (SentryGeo geo);

// -(NSUInteger)hash;
[Export ("hash")]
nuint Hash { get; }
}

// @interface SentryHttpStatusCodeRange : NSObject
[BaseType (typeof(NSObject))]
[DisableDefaultCtor]
Expand Down Expand Up @@ -832,6 +858,10 @@ interface SentryOptions
[NoWatch, NoTV, Introduced (PlatformName.MacCatalyst, 15, 0), Introduced (PlatformName.MacOSX, 12, 0), Introduced (PlatformName.iOS, 15, 0)]
[Export ("enableMetricKit")]
bool EnableMetricKit { get; set; }

// @property (nonatomic) BOOL enableTimeToFullDisplay;
[Export ("enableTimeToFullDisplay")]
bool EnableTimeToFullDisplay { get; set; }
}

// @protocol SentryIntegrationProtocol <NSObject>
Expand Down Expand Up @@ -1139,6 +1169,10 @@ interface SentryHub
[Export ("setUser:")]
void SetUser ([NullAllowed] SentryUser user);

// -(void)reportFullyDisplayed;
[Export ("reportFullyDisplayed")]
void ReportFullyDisplayed ();

// -(void)flush:(NSTimeInterval)timeout __attribute__((swift_name("flush(timeout:)")));
[Export ("flush:")]
void Flush (double timeout);
Expand Down Expand Up @@ -1621,6 +1655,11 @@ interface SentrySDK
[Export ("crash")]
void Crash ();

// +(void)reportFullyDisplayed;
[Static]
[Export ("reportFullyDisplayed")]
void ReportFullyDisplayed ();

// +(void)flush:(NSTimeInterval)timeout __attribute__((swift_name("flush(timeout:)")));
[Static]
[Export ("flush:")]
Expand Down Expand Up @@ -1933,6 +1972,14 @@ interface SentryUser : SentrySerializable
[NullAllowed, Export ("segment")]
string Segment { get; set; }

// @property (copy, atomic) NSString * _Nullable name;
[NullAllowed, Export ("name")]
string Name { get; set; }

// @property (nonatomic, strong) SentryGeo * _Nullable geo;
[NullAllowed, Export ("geo", ArgumentSemantic.Strong)]
SentryGeo Geo { get; set; }

// @property (atomic, strong) NSDictionary<NSString *,id> * _Nullable data;
[NullAllowed, Export ("data", ArgumentSemantic.Strong)]
NSDictionary<NSString, NSObject> Data { get; set; }
Expand Down