From 609f9d5166d086dc8370d7e7b6a55fabcc29c131 Mon Sep 17 00:00:00 2001 From: GitHub Date: Wed, 18 Feb 2026 03:47:39 +0000 Subject: [PATCH 1/2] chore: update modules/sentry-cocoa.properties to 9.4.1 --- 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 2d9f152329..4d30a84b0c 100644 --- a/modules/sentry-cocoa.properties +++ b/modules/sentry-cocoa.properties @@ -1,2 +1,2 @@ -version = 9.2.0 +version = 9.4.1 repo = https://github.com/getsentry/sentry-cocoa From 031f984292f25a9b585875947aa79683b4b82cda Mon Sep 17 00:00:00 2001 From: J-P Nurmi Date: Wed, 18 Feb 2026 08:49:17 +0100 Subject: [PATCH 2/2] Commit Sentry.Bindings.Cocoa/ApiDefinitions.cs & StructsAndEnums.cs changes To pass the dirty check: ``` Write-Error: /Users/runner/work/sentry-dotnet/sentry-dotnet/scripts/dirty-check.ps1:14 Line | 14 | Write-Error "$GuidanceOnFailure" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | Dirty files detected. /Users/runner/work/sentry-dotnet/sentry-dotnet/src/Sentry.Bindings.Cocoa/Sentry.Bindings.Cocoa.csproj(132,5): error MSB3073: The command "pwsh ../../scripts/dirty-check.ps1 -PathToCheck /Users/runner/work/sentry-dotnet/sentry-dotnet/src/Sentry.Bindings.Cocoa/" exited with code 1. [TargetFramework=once] ``` --- src/Sentry.Bindings.Cocoa/ApiDefinitions.cs | 5 ----- src/Sentry.Bindings.Cocoa/StructsAndEnums.cs | 21 +++++++++++--------- 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs b/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs index c37a2b1359..b539c15c6f 100644 --- a/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs +++ b/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs @@ -1587,11 +1587,6 @@ interface PrivateSentrySDKOnly [Export("setCurrentScreen:")] void SetCurrentScreen([NullAllowed] string screenName); - // +(UIView * _Nonnull)sessionReplayMaskingOverlay:(id _Nonnull)options; - [Static] - [Export("sessionReplayMaskingOverlay:")] - UIView SessionReplayMaskingOverlay(SentryRedactOptions options); - // +(void)configureSessionReplayWith:(id _Nullable)breadcrumbConverter screenshotProvider:(id _Nullable)screenshotProvider; [Static] [Export("configureSessionReplayWith:screenshotProvider:")] diff --git a/src/Sentry.Bindings.Cocoa/StructsAndEnums.cs b/src/Sentry.Bindings.Cocoa/StructsAndEnums.cs index 25d0a44a2e..fcab4e8869 100644 --- a/src/Sentry.Bindings.Cocoa/StructsAndEnums.cs +++ b/src/Sentry.Bindings.Cocoa/StructsAndEnums.cs @@ -110,6 +110,18 @@ internal enum SentryFeedbackSource : long Custom = 1 } +[Native] +internal enum SentryHttpStatusCode : long +{ + Ok = 200, + Created = 201, + BadRequest = 400, + PreconditionFailed = 412, + ContentTooLarge = 413, + TooManyRequests = 429, + InternalServerError = 500 +} + [Native] internal enum SentryLogLevel : long { @@ -143,15 +155,6 @@ internal enum SentryReplayType : long Buffer = 1 } -[Native] -internal enum SentrySessionStatus : ulong -{ - Ok = 0, - Exited = 1, - Crashed = 2, - Abnormal = 3 -} - [Native] internal enum SentryTransactionNameSource : long {