Fix build and code structure improvements. New but essential UI functionality. CI improvements. Documentation improvements. AI module improvements.

This commit is contained in:
StellaOps Bot
2025-12-26 21:54:17 +02:00
parent 335ff7da16
commit c2b9cd8d1f
3717 changed files with 264714 additions and 48202 deletions

View File

@@ -19,7 +19,6 @@ using StellaOps.Concelier.Storage;
using StellaOps.Concelier.Storage.Advisories;
using StellaOps.Concelier.Storage;
using StellaOps.Concelier.Storage;
using Xunit.Abstractions;
namespace StellaOps.Concelier.Connector.Cve.Tests;

View File

@@ -144,9 +144,9 @@ public sealed class CveParserSnapshotTests
// Assert
dto.Metrics.Should().HaveCount(1);
dto.Metrics[0].CvssV31.Should().NotBeNull();
dto.Metrics[0].CvssV31!.BaseScore.Should().Be(9.8);
dto.Metrics[0].CvssV31.BaseSeverity.Should().Be("CRITICAL");
dto.Metrics[0].Version.Should().Be("3.1");
dto.Metrics[0].BaseScore.Should().Be(9.8);
dto.Metrics[0].BaseSeverity.Should().Be("CRITICAL");
}
[Fact]

View File

@@ -13,7 +13,7 @@
<ProjectReference Include="../../../__Libraries/StellaOps.Canonical.Json/StellaOps.Canonical.Json.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="FluentAssertions" />
</ItemGroup>
<ItemGroup>
<None Include="Fixtures/*.json" CopyToOutputDirectory="Always" />