From 0286edae9f70c92074529845d6b23112d9aae52e Mon Sep 17 00:00:00 2001 From: GitHub Date: Thu, 12 Mar 2026 03:44:37 +0000 Subject: [PATCH 1/2] chore: update modules/sentry-cocoa.properties to 9.7.0 --- modules/sentry-cocoa.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/sentry-cocoa.properties b/modules/sentry-cocoa.properties index fe2e7c2554..7f9724515f 100644 --- a/modules/sentry-cocoa.properties +++ b/modules/sentry-cocoa.properties @@ -1,2 +1,2 @@ -version = 9.6.0 +version = 9.7.0 repo = https://github.com/getsentry/sentry-cocoa From a2e7440471f38f41bc1aa7d5cf89988a8209e1ea Mon Sep 17 00:00:00 2001 From: James Crosswell Date: Fri, 13 Mar 2026 15:29:04 +1300 Subject: [PATCH 2/2] Update ApiDefinitions.cs --- src/Sentry.Bindings.Cocoa/ApiDefinitions.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs b/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs index 1567da3904..45cc7c5665 100644 --- a/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs +++ b/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs @@ -471,6 +471,14 @@ interface SentryFrame : SentrySerializable [NullAllowed, Export("contextLine")] string ContextLine { get; set; } + // @property (copy, nonatomic) NSNumber * _Nullable parentIndex; + [NullAllowed, Export("parentIndex", ArgumentSemantic.Copy)] + NSNumber ParentIndex { get; set; } + + // @property (copy, nonatomic) NSNumber * _Nullable sampleCount; + [NullAllowed, Export("sampleCount", ArgumentSemantic.Copy)] + NSNumber SampleCount { get; set; } + // @property (copy, nonatomic) NSArray * _Nullable preContext; [NullAllowed, Export("preContext", ArgumentSemantic.Copy)] string[] PreContext { get; set; }