From e14b450c9ebdb28df331369a5352983980c53e9b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Apr 2026 12:59:01 +0000 Subject: [PATCH 1/2] Bump Sentry.AspNetCore from 5.16.2 to 6.3.2 --- updated-dependencies: - dependency-name: Sentry.AspNetCore dependency-version: 6.3.2 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- api/F1CompanionApi/F1CompanionApi.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/F1CompanionApi/F1CompanionApi.csproj b/api/F1CompanionApi/F1CompanionApi.csproj index 6bb1454..9b14715 100644 --- a/api/F1CompanionApi/F1CompanionApi.csproj +++ b/api/F1CompanionApi/F1CompanionApi.csproj @@ -17,7 +17,7 @@ - + From 84c614791df1155dfe9fa4de1fb28c4e292dabe6 Mon Sep 17 00:00:00 2001 From: Mark Date: Thu, 16 Apr 2026 22:38:38 -0500 Subject: [PATCH 2/2] fix(api): move Sentry logs API off Experimental for 6.x Sentry.AspNetCore 6.0 promoted structured-logging options off the Experimental namespace. Update EnableLogs and SetBeforeSendLog call sites to the stable API so the 6.3.2 bump compiles. --- api/F1CompanionApi/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/F1CompanionApi/Program.cs b/api/F1CompanionApi/Program.cs index 84814dd..78d014d 100644 --- a/api/F1CompanionApi/Program.cs +++ b/api/F1CompanionApi/Program.cs @@ -25,7 +25,7 @@ } // Enable structured logging - options.Experimental.EnableLogs = true; + options.EnableLogs = true; // Performance monitoring (can be overridden via Sentry__TracesSampleRate env var) options.TracesSampleRate = @@ -42,7 +42,7 @@ ); // Filtering callback for structured logs - options.Experimental.SetBeforeSendLog(log => + options.SetBeforeSendLog(log => { // Filter out trace and debug logs in production if (