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,4 +1,5 @@
using System;
using System.Globalization;
using System.Text.Json;
using System.Text.Json.Serialization;
using System.Threading;
@@ -68,7 +69,7 @@ internal sealed class GraphJobEventPublisher : IGraphJobCompletionPublisher, IAs
new NameValueEntry("event", payload),
new NameValueEntry("kind", envelope.Kind),
new NameValueEntry("tenant", envelope.Tenant),
new NameValueEntry("occurredAt", envelope.Timestamp.ToString("O")),
new NameValueEntry("occurredAt", envelope.Timestamp.ToString("O", CultureInfo.InvariantCulture)),
new NameValueEntry("jobId", notification.Job.Id),
new NameValueEntry("status", notification.Status.ToString())
};

View File

@@ -1,3 +1,4 @@
using System.Globalization;
using System.Text.Json;
using System.Text.Json.Serialization;
using Microsoft.Extensions.Logging;
@@ -70,7 +71,7 @@ internal sealed class MessagingGraphJobEventPublisher : IGraphJobCompletionPubli
Headers = new Dictionary<string, string>
{
["kind"] = envelope.Kind,
["occurredAt"] = envelope.Timestamp.ToString("O"),
["occurredAt"] = envelope.Timestamp.ToString("O", CultureInfo.InvariantCulture),
["jobId"] = notification.Job.Id,
["status"] = notification.Status.ToString()
}

View File

@@ -1,5 +1,6 @@
using System.Collections.Immutable;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Linq;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
@@ -198,7 +199,7 @@ internal static class ScheduleEndpoints
ScheduleId: updated.Id,
Metadata: new Dictionary<string, string>
{
["updatedAt"] = updated.UpdatedAt.ToString("O")
["updatedAt"] = updated.UpdatedAt.ToString("O", CultureInfo.InvariantCulture)
}),
cancellationToken).ConfigureAwait(false);