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

@@ -1,10 +1,10 @@
using System.Reflection;
using StellaOps.Authority.Storage.Postgres;
using StellaOps.Concelier.Storage.Postgres;
using StellaOps.Excititor.Storage.Postgres;
using StellaOps.Notify.Storage.Postgres;
using StellaOps.Policy.Storage.Postgres;
using StellaOps.Scheduler.Storage.Postgres;
using StellaOps.Authority.Persistence.Postgres;
using StellaOps.Concelier.Persistence.Postgres;
using StellaOps.Excititor.Persistence.Postgres;
using StellaOps.Notify.Persistence.Postgres;
using StellaOps.Policy.Persistence.Postgres;
using StellaOps.Scheduler.Persistence.Postgres;
namespace StellaOps.Cli.Services;
@@ -29,32 +29,32 @@ public static class MigrationModuleRegistry
Name: "Authority",
SchemaName: "authority",
MigrationsAssembly: typeof(AuthorityDataSource).Assembly,
ResourcePrefix: "StellaOps.Authority.Storage.Postgres.Migrations"),
ResourcePrefix: "StellaOps.Authority.Persistence.Migrations"),
new(
Name: "Scheduler",
SchemaName: "scheduler",
MigrationsAssembly: typeof(SchedulerDataSource).Assembly,
ResourcePrefix: "StellaOps.Scheduler.Storage.Postgres.Migrations"),
ResourcePrefix: "StellaOps.Scheduler.Persistence.Migrations"),
new(
Name: "Concelier",
SchemaName: "vuln",
MigrationsAssembly: typeof(ConcelierDataSource).Assembly,
ResourcePrefix: "StellaOps.Concelier.Storage.Postgres.Migrations"),
ResourcePrefix: "StellaOps.Concelier.Persistence.Migrations"),
new(
Name: "Policy",
SchemaName: "policy",
MigrationsAssembly: typeof(PolicyDataSource).Assembly,
ResourcePrefix: "StellaOps.Policy.Storage.Postgres.Migrations"),
ResourcePrefix: "StellaOps.Policy.Persistence.Migrations"),
new(
Name: "Notify",
SchemaName: "notify",
MigrationsAssembly: typeof(NotifyDataSource).Assembly,
ResourcePrefix: "StellaOps.Notify.Storage.Postgres.Migrations"),
ResourcePrefix: "StellaOps.Notify.Persistence.Migrations"),
new(
Name: "Excititor",
SchemaName: "vex",
MigrationsAssembly: typeof(ExcititorDataSource).Assembly,
ResourcePrefix: "StellaOps.Excititor.Storage.Postgres.Migrations"),
ResourcePrefix: "StellaOps.Excititor.Persistence.Migrations"),
];
/// <summary>

View File

@@ -3,7 +3,7 @@
// Description: OCI registry types and constants for verdict attestation handling.
// -----------------------------------------------------------------------------
namespace StellaOps.Scanner.Storage.Oci;
namespace StellaOps.Cli.Services.Models;
/// <summary>
/// OCI media types for StellaOps artifacts.

View File

@@ -11,7 +11,8 @@ using System.Text.Json;
using Microsoft.Extensions.Logging;
using StellaOps.Cli.Commands;
using StellaOps.Cli.Services.Models;
using StellaOps.Scanner.Storage.Oci;
using static StellaOps.Cli.Services.Models.OciMediaTypes;
using static StellaOps.Cli.Services.Models.OciAnnotations;
namespace StellaOps.Cli.Services;