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.Security.Cryptography;
using System.Text;
using System.Text.Json;
@@ -69,7 +70,7 @@ public sealed partial class SimpleTemplateRenderer : INotifyTemplateRenderer
["eventId"] = notifyEvent.EventId.ToString(),
["kind"] = notifyEvent.Kind,
["tenant"] = notifyEvent.Tenant,
["timestamp"] = notifyEvent.Ts.ToString("O"),
["timestamp"] = notifyEvent.Ts.ToString("O", CultureInfo.InvariantCulture),
["actor"] = notifyEvent.Actor,
["version"] = notifyEvent.Version,
};

View File

@@ -1,3 +1,4 @@
using System.Globalization;
using System.Net;
using System.Net.Http.Json;
using System.Text;
@@ -179,7 +180,7 @@ public sealed class WebhookChannelDispatcher : INotifyChannelDispatcher
subject = content.Subject,
bodyHash = content.BodyHash,
format = content.Format.ToString(),
timestamp = DateTimeOffset.UtcNow.ToString("O")
timestamp = DateTimeOffset.UtcNow.ToString("O", CultureInfo.InvariantCulture)
});
}