Frontend gaps fill work. Testing fixes work. Auditing in progress.

This commit is contained in:
StellaOps Bot
2025-12-30 01:22:58 +02:00
parent 1dc4bcbf10
commit 7a5210e2aa
928 changed files with 183942 additions and 3941 deletions

View File

@@ -33,7 +33,7 @@ public class PostgresRekorSubmissionQueueIntegrationTests : IAsyncLifetime
private FakeTimeProvider _timeProvider = null!;
private AttestorMetrics _metrics = null!;
public async Task InitializeAsync()
public async ValueTask InitializeAsync()
{
_postgres = new PostgreSqlBuilder()
.WithImage("postgres:16-alpine")
@@ -66,7 +66,7 @@ public class PostgresRekorSubmissionQueueIntegrationTests : IAsyncLifetime
NullLogger<PostgresRekorSubmissionQueue>.Instance);
}
public async Task DisposeAsync()
public async ValueTask DisposeAsync()
{
await _dataSource.DisposeAsync();
await _postgres.DisposeAsync();
@@ -401,3 +401,6 @@ internal sealed class FakeTimeProvider : TimeProvider
public void SetTime(DateTimeOffset time) => _now = time;
}

View File

@@ -6,9 +6,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Using Include="Xunit.Abstractions" />
</ItemGroup>
<ItemGroup> </ItemGroup>
<ItemGroup>
<PackageReference Include="BouncyCastle.Cryptography" />
<PackageReference Include="FluentAssertions" />