From 95dd48018a5f659f5edf961023b4a34ce13fe040 Mon Sep 17 00:00:00 2001 From: daniel-c-harvey Date: Fri, 19 Jun 2026 23:54:10 -0400 Subject: [PATCH] chore: bump AuthBlocks to 10.3.36, drop EditModalSaveContextHolder stopgap MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 10.3.36 fixes JWT refresh for idle sessions and registers EditModalSaveContextHolder via AddBlazorBlocksWeb() — making the manual stopgap in DeepDrftManager/Program.cs redundant. BlazorBlocks direct refs (10.3.30) resolved without conflict; left unchanged. --- DeepDrftAPI/DeepDrftAPI.csproj | 2 +- DeepDrftManager/DeepDrftManager.csproj | 2 +- DeepDrftManager/Program.cs | 4 ---- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/DeepDrftAPI/DeepDrftAPI.csproj b/DeepDrftAPI/DeepDrftAPI.csproj index fe133a5..c244b46 100644 --- a/DeepDrftAPI/DeepDrftAPI.csproj +++ b/DeepDrftAPI/DeepDrftAPI.csproj @@ -15,7 +15,7 @@ - + diff --git a/DeepDrftManager/DeepDrftManager.csproj b/DeepDrftManager/DeepDrftManager.csproj index f7315d8..c62c521 100644 --- a/DeepDrftManager/DeepDrftManager.csproj +++ b/DeepDrftManager/DeepDrftManager.csproj @@ -8,7 +8,7 @@ - + diff --git a/DeepDrftManager/Program.cs b/DeepDrftManager/Program.cs index 423a3ac..5e57c51 100644 --- a/DeepDrftManager/Program.cs +++ b/DeepDrftManager/Program.cs @@ -34,10 +34,6 @@ var contentApiUrl = builder.Configuration["Api:ContentApiUrl"] ?? throw new InvalidOperationException("Api:ContentApiUrl is required"); AuthBlocksWeb.Startup.ConfigureAuthServices(builder.Services, contentApiUrl); -// Per-circuit bridge consumed by the AuthBlocks ModelView component (Users/Registrations pages). -// ModelView has a required [Inject] of this type; without it the circuit throws on component init. -builder.Services.AddScoped(); - // Named HttpClient for unauthenticated Content API calls (CmsTrackService proxying WAV data // to DeepDrftAPI's POST api/track/upload). API key added per-request by the service. builder.Services.AddHttpClient("DeepDrft.Content", client =>