chore: bump AuthBlocks to 10.3.36, drop EditModalSaveContextHolder stopgap

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.
This commit is contained in:
daniel-c-harvey
2026-06-19 23:54:10 -04:00
parent c21b85afdf
commit 95dd48018a
3 changed files with 2 additions and 6 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
<ItemGroup>
<PackageReference Include="MudBlazor" Version="8.15.0" />
<PackageReference Include="Cerebellum.AuthBlocks.Web" Version="10.3.33" />
<PackageReference Include="Cerebellum.AuthBlocks.Web" Version="10.3.36" />
</ItemGroup>
<ItemGroup>
-4
View File
@@ -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<Web.Maintenance.Entities.EditModalSaveContextHolder>();
// 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 =>