Skip to content

Commit 6989a25

Browse files
committed
Upgraded some dependencies
1 parent d54b8cc commit 6989a25

9 files changed

Lines changed: 10 additions & 10 deletions

File tree

src/BuslyCLI.Console/BuslyCLI.Console.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
<PackageReference Include="NServiceBus.Transport.AzureStorageQueues" Version="14.0.0" />
3838
<PackageReference Include="NServiceBus.Transport.PostgreSql" Version="9.0.0" />
3939
<PackageReference Include="NServiceBus.Transport.SqlServer" Version="9.0.0" />
40-
<PackageReference Include="Spectre.Console.Cli" Version="0.53.1" />
41-
<PackageReference Include="Spectre.Console.Cli.Extensions.DependencyInjection" Version="0.23.0" />
40+
<PackageReference Include="Spectre.Console.Cli" Version="0.55.0" />
41+
<PackageReference Include="Spectre.Console.Cli.Extensions.DependencyInjection" Version="0.24.0" />
4242
<PackageReference Include="YamlDotNet" Version="16.3.0" />
4343
</ItemGroup>
4444

src/BuslyCLI.Console/Commands/Command/SendCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace BuslyCLI.Commands.Command;
99

1010
public class SendCommand(IRawEndpointFactory rawEndpointFactory, INServiceBusConfiguration nServiceBusConfiguration) : AsyncCommand<SendCommandSettings>
1111
{
12-
public override async Task<int> ExecuteAsync(CommandContext context, SendCommandSettings settings, CancellationToken cancellationToken)
12+
protected override async Task<int> ExecuteAsync(CommandContext context, SendCommandSettings settings, CancellationToken cancellationToken)
1313
{
1414
var config = await nServiceBusConfiguration.GetValidatedConfigurationAsync(settings.Config.Path);
1515
var rawEndpoint = await rawEndpointFactory.CreateRawSendOnlyEndpoint(Constants.DefaultOriginatingEndpoint, config.CurrentTransportConfig);

src/BuslyCLI.Console/Commands/Demo/StartCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace BuslyCLI.Commands.Demo;
1010
public class StartDemoCommand(IAnsiConsole console, IRawEndpointFactory rawEndpointFactory, INServiceBusConfiguration nServiceBusConfiguration)
1111
: AsyncCommand<CurrentTransportSettings>
1212
{
13-
public override async Task<int> ExecuteAsync(CommandContext context, CurrentTransportSettings settings, CancellationToken cancellationToken)
13+
protected override async Task<int> ExecuteAsync(CommandContext context, CurrentTransportSettings settings, CancellationToken cancellationToken)
1414
{
1515
console.WriteLine($"Starting demo endpoint named {Constants.DemoDefaultOriginatingEndpoint} for quick start guide...");
1616
var config = await nServiceBusConfiguration.GetValidatedConfigurationAsync(settings.Config.Path);

src/BuslyCLI.Console/Commands/Event/PublishCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace BuslyCLI.Commands.Event;
1111

1212
public class PublishCommand(IRawEndpointFactory rawEndpointFactory, INServiceBusConfiguration nServiceBusConfiguration) : AsyncCommand<PublishCommandSettings>
1313
{
14-
public override async Task<int> ExecuteAsync(CommandContext context, PublishCommandSettings settings, CancellationToken cancellationToken)
14+
protected override async Task<int> ExecuteAsync(CommandContext context, PublishCommandSettings settings, CancellationToken cancellationToken)
1515
{
1616
var config = await nServiceBusConfiguration.GetValidatedConfigurationAsync(settings.Config.Path);
1717
var rawEndpoint = await rawEndpointFactory.CreateRawSendOnlyEndpoint(Constants.DefaultOriginatingEndpoint, config.CurrentTransportConfig);

src/BuslyCLI.Console/Commands/Transport/CurrentTransportCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace BuslyCLI.Commands.Transport;
77
public class CurrentTransportCommand(IAnsiConsole console, INServiceBusConfiguration nservicebusConfiguration)
88
: AsyncCommand<CurrentTransportSettings>
99
{
10-
public override async Task<int> ExecuteAsync(CommandContext context, CurrentTransportSettings settings, CancellationToken cancellationToken)
10+
protected override async Task<int> ExecuteAsync(CommandContext context, CurrentTransportSettings settings, CancellationToken cancellationToken)
1111
{
1212
var nsbConfiguration = await nservicebusConfiguration.GetUnValidatedConfigurationAsync(settings.Config.Path);
1313

src/BuslyCLI.Console/Commands/Transport/DeleteTransportCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace BuslyCLI.Commands.Transport;
77
public class DeleteTransportCommand(IAnsiConsole console, INServiceBusConfiguration nservicebusConfiguration)
88
: AsyncCommand<DeleteTransportSettings>
99
{
10-
public override async Task<int> ExecuteAsync(CommandContext context, DeleteTransportSettings settings, CancellationToken cancellationToken)
10+
protected override async Task<int> ExecuteAsync(CommandContext context, DeleteTransportSettings settings, CancellationToken cancellationToken)
1111
{
1212
var nsbConfiguration = await nservicebusConfiguration.GetValidatedConfigurationAsync(settings.Config.Path);
1313
var targetTransport = settings.TransportName.ToLower();

src/BuslyCLI.Console/Commands/Transport/ListTransportsCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace BuslyCLI.Commands.Transport;
2020
public class ListTransportsCommand(IAnsiConsole console, INServiceBusConfiguration nservicebusConfiguration)
2121
: AsyncCommand<ListTransportsSettings>
2222
{
23-
public override async Task<int> ExecuteAsync(CommandContext context, ListTransportsSettings settings, CancellationToken cancellationToken)
23+
protected override async Task<int> ExecuteAsync(CommandContext context, ListTransportsSettings settings, CancellationToken cancellationToken)
2424
{
2525
var grid = new Grid();
2626

src/BuslyCLI.Console/Commands/Transport/SetTransportCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace BuslyCLI.Commands.Transport;
77
public class SetTransportCommand(IAnsiConsole console, INServiceBusConfiguration nservicebusConfiguration)
88
: AsyncCommand<SetTransportSettings>
99
{
10-
public override async Task<int> ExecuteAsync(CommandContext context, SetTransportSettings settings, CancellationToken cancellationToken)
10+
protected override async Task<int> ExecuteAsync(CommandContext context, SetTransportSettings settings, CancellationToken cancellationToken)
1111
{
1212
var nsbConfiguration = await nservicebusConfiguration.GetValidatedConfigurationAsync(settings.Config.Path);
1313
var targetTransport = settings.TransportName.ToLower();

tests/BuslyCLI.Console.Tests/BuslyCLI.Console.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<PackageReference Include="Testcontainers.Azurite" Version="4.11.0" />
3333
<PackageReference Include="Testcontainers.LocalStack" Version="4.11.0" />
3434
<PackageReference Include="Testcontainers.MsSql" Version="4.11.0" />
35-
<PackageReference Include="Testcontainers.PostgreSql" Version="4.10.0" />
35+
<PackageReference Include="Testcontainers.PostgreSql" Version="4.11.0" />
3636
<PackageReference Include="Testcontainers.RabbitMq" Version="4.11.0" />
3737
<PackageReference Include="Testcontainers.ServiceBus" Version="4.11.0" />
3838
<PackageReference Include="YamlDotNet" Version="16.3.0" />

0 commit comments

Comments
 (0)