diff --git a/Directory.Packages.props b/Directory.Packages.props
index 59f4734dd..11e17d15f 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -3,29 +3,29 @@
true
- 10.0.0
- 10.0.0
+ 10.0.10
+ 10.0.10
- 9.0.10
- 9.0.10
+ 9.0.18
+ 10.0.10
- 8.0.21
- 9.0.10
+ 8.0.29
+ 10.0.10
- 4.10.0
+ 4.13.0
- 10.0.1
- 0.77.3
+ 10.0.3
+ 1.63.0
-
+
-
+
@@ -39,23 +39,24 @@
-
-
-
-
-
+
+
+
+
+
-
+
-
-
-
+
+
+
+
-
-
+
+
@@ -72,50 +73,50 @@
-
-
-
+
+
+
-
-
+
+
-
+
-
-
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
+
+
-
-
-
+
+
+
\ No newline at end of file
diff --git a/samples/kurrentdb/Bookings/HttpApi/Bookings/CommandApiWithCustomResult.cs b/samples/kurrentdb/Bookings/HttpApi/Bookings/CommandApiWithCustomResult.cs
index 0728946d1..b52ea0140 100644
--- a/samples/kurrentdb/Bookings/HttpApi/Bookings/CommandApiWithCustomResult.cs
+++ b/samples/kurrentdb/Bookings/HttpApi/Bookings/CommandApiWithCustomResult.cs
@@ -51,7 +51,7 @@ static BadRequestObjectResult MapValidationExceptionAsValidationProblemDetails(R
var groupFailures = exception.Errors.GroupBy(v => v.PropertyName);
foreach (var groupFailure in groupFailures) {
- problemDetails.Errors.Add(groupFailure.Key, groupFailure.Select(s => s.ErrorMessage).ToArray());
+ problemDetails.Errors.Add(groupFailure.Key, [.. groupFailure.Select(s => s.ErrorMessage)]);
}
return new(problemDetails);
diff --git a/samples/postgres/Bookings.Payments/Registrations.cs b/samples/postgres/Bookings.Payments/Registrations.cs
index 78a4d48f6..0097b6c49 100644
--- a/samples/postgres/Bookings.Payments/Registrations.cs
+++ b/samples/postgres/Bookings.Payments/Registrations.cs
@@ -12,10 +12,7 @@ namespace Bookings.Payments;
public static class Registrations {
public static void AddEventuous(this IServiceCollection services, IConfiguration configuration) {
- var connectionFactory = new ConnectionFactory {
- Uri = new(configuration["RabbitMq:ConnectionString"]!),
- DispatchConsumersAsync = true
- };
+ var connectionFactory = new ConnectionFactory { Uri = new(configuration["RabbitMq:ConnectionString"]!) };
services.AddSingleton(connectionFactory);
services.AddEventuousPostgres(configuration.GetSection("Postgres"));
services.AddEventStore();
diff --git a/samples/postgres/Bookings/Registrations.cs b/samples/postgres/Bookings/Registrations.cs
index ce1f6d3dd..7c3f4ab95 100644
--- a/samples/postgres/Bookings/Registrations.cs
+++ b/samples/postgres/Bookings/Registrations.cs
@@ -23,10 +23,7 @@ public static void AddEventuous(this IServiceCollection services, IConfiguration
new DefaultEventSerializer(new JsonSerializerOptions(JsonSerializerDefaults.Web).ConfigureForNodaTime(DateTimeZoneProviders.Tzdb))
);
- var connectionFactory = new ConnectionFactory {
- Uri = new(configuration["RabbitMq:ConnectionString"]!),
- DispatchConsumersAsync = true
- };
+ var connectionFactory = new ConnectionFactory { Uri = new(configuration["RabbitMq:ConnectionString"]!) };
services.AddSingleton(connectionFactory);
diff --git a/src/Azure/test/Eventuous.Tests.Azure.ServiceBus/ConvertEventToMessage.cs b/src/Azure/test/Eventuous.Tests.Azure.ServiceBus/ConvertEventToMessage.cs
index f30a0376c..59c525360 100644
--- a/src/Azure/test/Eventuous.Tests.Azure.ServiceBus/ConvertEventToMessage.cs
+++ b/src/Azure/test/Eventuous.Tests.Azure.ServiceBus/ConvertEventToMessage.cs
@@ -75,7 +75,7 @@ public async Task CorrelationId() {
[Test]
public async Task ScheduledEnqueueTime() =>
- await Assert.That(_message.ScheduledEnqueueTime).IsEqualTo(new DateTimeOffset(2026, 3, 23, 16, 31, 0, TimeSpan.Zero));
+ await Assert.That(_message.ScheduledEnqueueTime).IsEqualTo(new(2026, 3, 23, 16, 31, 0, TimeSpan.Zero));
[Test]
[Arguments("MessageId")]
diff --git a/src/Azure/test/Eventuous.Tests.Azure.ServiceBus/IsSerialisableByServiceBus.cs b/src/Azure/test/Eventuous.Tests.Azure.ServiceBus/IsSerialisableByServiceBus.cs
index 8d03c0b0c..fdf6eab4b 100644
--- a/src/Azure/test/Eventuous.Tests.Azure.ServiceBus/IsSerialisableByServiceBus.cs
+++ b/src/Azure/test/Eventuous.Tests.Azure.ServiceBus/IsSerialisableByServiceBus.cs
@@ -3,6 +3,9 @@
namespace Eventuous.Tests.Azure.ServiceBus;
public class IsSerialisableByServiceBus {
+ // TUnit0046 is a false positive: the data sources already return Func