Skip to content
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
2 changes: 1 addition & 1 deletion modules/sentry-cocoa.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = 9.5.0
version = 9.6.0
repo = https://github.com/getsentry/sentry-cocoa
13 changes: 13 additions & 0 deletions src/Sentry.Bindings.Cocoa/ApiDefinitions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1642,6 +1642,11 @@ interface PrivateSentrySDKOnly
[Export("optionsWithDictionary:didFailWithError:")]
[return: NullAllowed]
SentryOptions OptionsWithDictionary(NSDictionary<NSString, NSObject> options, [NullAllowed] out NSError error);

// +(void)setLogOutput:(void (^ _Nonnull)(NSString * _Nonnull))output;
[Static]
[Export("setLogOutput:")]
void SetLogOutput(Action<NSString> output);
}

// @interface SentryOptions : NSObject
Expand Down Expand Up @@ -2126,6 +2131,10 @@ interface SentryExperimentalOptions
[Export("enableMetrics")]
bool EnableMetrics { get; set; }

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

// -(void)validateOptions:(NSDictionary<NSString *,id> * _Nullable)options;
[Export("validateOptions:")]
void ValidateOptions([NullAllowed] NSDictionary<NSString, NSObject> options);
Expand Down Expand Up @@ -2304,6 +2313,10 @@ interface SentryLog
[Export("traceId", ArgumentSemantic.Strong)]
SentryId TraceId { get; set; }

// @property (nonatomic, strong) SentrySpanId * _Nullable spanId;
[NullAllowed, Export("spanId", ArgumentSemantic.Strong)]
SentrySpanId SpanId { get; set; }

// @property (nonatomic) enum SentryLogLevel level;
[Export("level", ArgumentSemantic.Assign)]
SentryLogLevel Level { get; set; }
Expand Down
Loading