Skip to content

Commit 355e4e5

Browse files
renovate[bot]openhands-agentbuehler
authored
chore(deps): update dependency spectre.console.testing to 0.50.0 (#862)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [Spectre.Console.Testing](https://redirect.github.com/spectreconsole/spectre.console) | `0.49.1` -> `0.50.0` | [![age](https://developer.mend.io/api/mc/badges/age/nuget/Spectre.Console.Testing/0.50.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Spectre.Console.Testing/0.50.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Spectre.Console.Testing/0.49.1/0.50.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Spectre.Console.Testing/0.49.1/0.50.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>spectreconsole/spectre.console (Spectre.Console.Testing)</summary> ### [`v0.50.0`](https://redirect.github.com/spectreconsole/spectre.console/compare/0.49.1...0.50.0) [Compare Source](https://redirect.github.com/spectreconsole/spectre.console/compare/0.49.1...0.50.0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 9pm,before 6am" in timezone Europe/Zurich, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/buehler/dotnet-operator-sdk). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzUuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIzNS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: openhands <[email protected]> Co-authored-by: Christoph Bühler <[email protected]> Co-authored-by: Christoph Bühler <[email protected]>
1 parent 42e6bc1 commit 355e4e5

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

src/KubeOps.Abstractions/KubeOps.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<PropertyGroup>

src/KubeOps.Cli/Commands/Management/Install.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ internal static async Task Handler(IAnsiConsole console, IKubernetes client, Inv
7878
case { Items: [var existing] }:
7979
console.MarkupLineInterpolated(
8080
$"""[yellow]CRD "{crd.Spec.Group}/{crd.Spec.Names.Kind}" already exists.[/]""");
81-
if (!force && !console.Confirm("[yellow]Should the CRD be overwritten?[/]"))
81+
if (!force && !await console.ConfirmAsync("[yellow]Should the CRD be overwritten?[/]"))
8282
{
8383
ctx.ExitCode = ExitCodes.Aborted;
8484
return;

src/KubeOps.Cli/Commands/Management/Uninstall.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ internal static async Task Handler(IAnsiConsole console, IKubernetes client, Inv
6363
}
6464

6565
console.WriteLine($"Found {crds.Count} CRDs.");
66-
if (!force && !console.Confirm("[red]Should the CRDs be uninstalled?[/]", false))
66+
if (!force && !await console.ConfirmAsync("[red]Should the CRDs be uninstalled?[/]", false))
6767
{
6868
ctx.ExitCode = ExitCodes.Aborted;
6969
return;

src/KubeOps.Cli/KubeOps.Cli.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
5+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
66
<EnablePreviewFeatures>true</EnablePreviewFeatures>
77
</PropertyGroup>
88

@@ -24,8 +24,8 @@
2424
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2" />
2525
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.9.2" />
2626
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="4.9.2" />
27-
<PackageReference Include="Spectre.Console" Version="0.49.1" />
28-
<PackageReference Include="Spectre.Console.Analyzer" Version="0.49.1">
27+
<PackageReference Include="Spectre.Console" Version="0.50.0" />
28+
<PackageReference Include="Spectre.Console.Analyzer" Version="1.0.0">
2929
<PrivateAssets>all</PrivateAssets>
3030
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3131
</PackageReference>

src/KubeOps.KubernetesClient/KubeOps.KubernetesClient.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<PropertyGroup>

src/KubeOps.Operator.Web/KubeOps.Operator.Web.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<PropertyGroup>

src/KubeOps.Operator/KubeOps.Operator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<PropertyGroup>

src/KubeOps.Transpiler/KubeOps.Transpiler.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<PropertyGroup>

test/KubeOps.Cli.Test/KubeOps.Cli.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.13.0" />
1212
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.13.0" />
1313
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.13.0" />
14-
<PackageReference Include="Spectre.Console.Testing" Version="0.49.1" />
14+
<PackageReference Include="Spectre.Console.Testing" Version="0.50.0" />
1515
</ItemGroup>
1616
</Project>

0 commit comments

Comments
 (0)