Skip to content

Commit 6dca24d

Browse files
github-actions[bot]web-flowjamescrosswell
authored
chore(deps): update Cocoa SDK to v9.6.0 (#4958)
* chore: update modules/sentry-cocoa.properties to 9.6.0 * Updated ApiDefinitions.cs --------- Co-authored-by: GitHub <noreply@github.com> Co-authored-by: James Crosswell <jamescrosswell@users.noreply.github.com>
1 parent 185a684 commit 6dca24d

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

modules/sentry-cocoa.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = 9.5.0
1+
version = 9.6.0
22
repo = https://github.com/getsentry/sentry-cocoa

src/Sentry.Bindings.Cocoa/ApiDefinitions.cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1642,6 +1642,11 @@ interface PrivateSentrySDKOnly
16421642
[Export("optionsWithDictionary:didFailWithError:")]
16431643
[return: NullAllowed]
16441644
SentryOptions OptionsWithDictionary(NSDictionary<NSString, NSObject> options, [NullAllowed] out NSError error);
1645+
1646+
// +(void)setLogOutput:(void (^ _Nonnull)(NSString * _Nonnull))output;
1647+
[Static]
1648+
[Export("setLogOutput:")]
1649+
void SetLogOutput(Action<NSString> output);
16451650
}
16461651

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

2134+
// @property (nonatomic) BOOL enableWatchdogTerminationsV2;
2135+
[Export("enableWatchdogTerminationsV2")]
2136+
bool EnableWatchdogTerminationsV2 { get; set; }
2137+
21292138
// -(void)validateOptions:(NSDictionary<NSString *,id> * _Nullable)options;
21302139
[Export("validateOptions:")]
21312140
void ValidateOptions([NullAllowed] NSDictionary<NSString, NSObject> options);
@@ -2304,6 +2313,10 @@ interface SentryLog
23042313
[Export("traceId", ArgumentSemantic.Strong)]
23052314
SentryId TraceId { get; set; }
23062315

2316+
// @property (nonatomic, strong) SentrySpanId * _Nullable spanId;
2317+
[NullAllowed, Export("spanId", ArgumentSemantic.Strong)]
2318+
SentrySpanId SpanId { get; set; }
2319+
23072320
// @property (nonatomic) enum SentryLogLevel level;
23082321
[Export("level", ArgumentSemantic.Assign)]
23092322
SentryLogLevel Level { get; set; }

0 commit comments

Comments
 (0)