audit work, fixed StellaOps.sln warnings/errors, fixed tests, sprints work, new advisories

This commit is contained in:
master
2026-01-07 18:49:59 +02:00
parent 04ec098046
commit 608a7f85c0
866 changed files with 56323 additions and 6231 deletions

View File

@@ -1,3 +1,4 @@
using System.Globalization;
using System.Linq;
using StellaOps.Replay.Core.Models;
using YamlDotNet.Serialization;
@@ -21,7 +22,7 @@ public sealed class ReplayManifestWriter
snapshot = new
{
id = snapshot.SnapshotId,
createdAt = snapshot.CreatedAt.ToString("O"),
createdAt = snapshot.CreatedAt.ToString("O", CultureInfo.InvariantCulture),
artifact = snapshot.ArtifactDigest,
previousId = snapshot.PreviousSnapshotId
},
@@ -68,7 +69,7 @@ public sealed class ReplayManifestWriter
name = f.Name,
version = f.Version,
digest = f.Digest,
fetchedAt = f.FetchedAt.ToString("O")
fetchedAt = f.FetchedAt.ToString("O", CultureInfo.InvariantCulture)
}),
lattice = new
{