save checkpoint

This commit is contained in:
master
2026-02-11 01:32:14 +02:00
parent 5593212b41
commit cf5b72974f
2316 changed files with 68799 additions and 3808 deletions

View File

@@ -18,6 +18,9 @@ public sealed record SbomEntryId
public string SbomDigest { get; }
/// <summary>Alias for <see cref="SbomDigest"/>.</summary>
public string Digest => SbomDigest;
public string Purl { get; }
public string? Version { get; }

View File

@@ -7,6 +7,10 @@
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="StellaOps.Attestor.ProofChain.Tests" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
</ItemGroup>

View File

@@ -19,6 +19,13 @@ public sealed partial class PostgresTrustVerdictRepository : ITrustVerdictReposi
_dataSource = dataSource ?? throw new ArgumentNullException(nameof(dataSource));
}
/// <summary>
/// Reads a <see cref="TrustVerdictEntity"/> from the current row of a <see cref="System.Data.Common.DbDataReader"/>.
/// Delegates to <see cref="PostgresTrustVerdictReaderHelper.ReadEntity"/>.
/// </summary>
internal static TrustVerdictEntity ReadEntity(System.Data.Common.DbDataReader reader)
=> PostgresTrustVerdictReaderHelper.ReadEntity(reader);
private async Task<IReadOnlyList<TrustVerdictEntity>> ExecuteQueryAsync(
string sql,
Guid tenantId,