From e13410861d58a1148fa24877b7be6156d316a9a5 Mon Sep 17 00:00:00 2001 From: Patrik Svensson Date: Tue, 13 Feb 2024 09:29:34 +0100 Subject: [PATCH 1/4] Update dependencies to latest version --- .github/workflows/ci.yaml | 6 +++--- .github/workflows/publish.yaml | 12 ++++++------ examples/Cli/Injection/Injection.csproj | 2 +- examples/Cli/Logging/Logging.csproj | 6 +++--- examples/Console/Columns/Columns.csproj | 2 +- examples/Console/Progress/Progress.csproj | 2 +- examples/Console/Status/Status.csproj | 2 +- .../Spectre.Console.Cli.Tests.csproj | 7 ++----- .../Spectre.Console.Tests.csproj | 7 ++----- .../Unit/Widgets/ProgressBarTests.cs | 2 +- 10 files changed, 21 insertions(+), 27 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 944cfc125..dff6ba2a1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -18,12 +18,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup .NET SDK - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: | 6.0.x @@ -38,7 +38,7 @@ jobs: - name: Upload Verify Test Results if: failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: verify-test-results path: | diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index cf3ef0a26..370d250f0 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -24,12 +24,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup .NET SDK - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: | 6.0.x @@ -54,20 +54,20 @@ jobs: runs-on: windows-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup .NET SDK - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: '16' - name: Cache dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.npm key: npm-${{ hashFiles('package-lock.json') }} diff --git a/examples/Cli/Injection/Injection.csproj b/examples/Cli/Injection/Injection.csproj index f532e615a..a07bc9fea 100644 --- a/examples/Cli/Injection/Injection.csproj +++ b/examples/Cli/Injection/Injection.csproj @@ -11,7 +11,7 @@ - + diff --git a/examples/Cli/Logging/Logging.csproj b/examples/Cli/Logging/Logging.csproj index 02c3567bf..72fe265da 100644 --- a/examples/Cli/Logging/Logging.csproj +++ b/examples/Cli/Logging/Logging.csproj @@ -12,9 +12,9 @@ - - - + + + diff --git a/examples/Console/Columns/Columns.csproj b/examples/Console/Columns/Columns.csproj index 8d681c923..471c83b2f 100644 --- a/examples/Console/Columns/Columns.csproj +++ b/examples/Console/Columns/Columns.csproj @@ -9,7 +9,7 @@ - + diff --git a/examples/Console/Progress/Progress.csproj b/examples/Console/Progress/Progress.csproj index e8f4356d6..d231a4bb1 100644 --- a/examples/Console/Progress/Progress.csproj +++ b/examples/Console/Progress/Progress.csproj @@ -9,7 +9,7 @@ - + diff --git a/examples/Console/Status/Status.csproj b/examples/Console/Status/Status.csproj index cdefe3b02..df43d6caf 100644 --- a/examples/Console/Status/Status.csproj +++ b/examples/Console/Status/Status.csproj @@ -9,7 +9,7 @@ - + diff --git a/test/Spectre.Console.Cli.Tests/Spectre.Console.Cli.Tests.csproj b/test/Spectre.Console.Cli.Tests/Spectre.Console.Cli.Tests.csproj index 1ff4569e6..41cfded91 100644 --- a/test/Spectre.Console.Cli.Tests/Spectre.Console.Cli.Tests.csproj +++ b/test/Spectre.Console.Cli.Tests/Spectre.Console.Cli.Tests.csproj @@ -10,13 +10,10 @@ - - - - + - + all diff --git a/test/Spectre.Console.Tests/Spectre.Console.Tests.csproj b/test/Spectre.Console.Tests/Spectre.Console.Tests.csproj index e199ee073..34a0199da 100644 --- a/test/Spectre.Console.Tests/Spectre.Console.Tests.csproj +++ b/test/Spectre.Console.Tests/Spectre.Console.Tests.csproj @@ -18,13 +18,10 @@ - - - - + - + all diff --git a/test/Spectre.Console.Tests/Unit/Widgets/ProgressBarTests.cs b/test/Spectre.Console.Tests/Unit/Widgets/ProgressBarTests.cs index 9f8eecd96..24bcfb2fb 100644 --- a/test/Spectre.Console.Tests/Unit/Widgets/ProgressBarTests.cs +++ b/test/Spectre.Console.Tests/Unit/Widgets/ProgressBarTests.cs @@ -38,7 +38,7 @@ public async Task Should_Render_ValueFormatted() Value = 9000, MaxValue = 9000, ShowValue = true, - ValueFormatter = (value, _) => value.ToString("N0"), + ValueFormatter = (value, _) => value.ToString("N0", CultureInfo.InvariantCulture), }; // When From ead874e6b265ee8792b66e0b0dee01995f8606f6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 08:34:23 +0000 Subject: [PATCH 2/4] chore: Update dependency dotnet-example to v3 --- dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet-tools.json b/dotnet-tools.json index 2ff28b735..b7853d770 100644 --- a/dotnet-tools.json +++ b/dotnet-tools.json @@ -9,7 +9,7 @@ ] }, "dotnet-example": { - "version": "2.0.0", + "version": "3.0.0", "commands": [ "dotnet-example" ] From 3f5e8aabf5e8368cbc17c084a00541e6889c4e3e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 09:28:38 +0000 Subject: [PATCH 3/4] chore: Update dependency dotnet-sdk to v8.0.200 --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 94c293669..c2d29decb 100644 --- a/global.json +++ b/global.json @@ -1,7 +1,7 @@ { "$schema": "http://json.schemastore.org/global", "sdk": { - "version": "8.0.100", + "version": "8.0.200", "rollForward": "latestFeature" } } From b6e0b2389a73488ddf77baad5c6ea3bec3fceaea Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 15 Feb 2024 01:51:37 +0000 Subject: [PATCH 4/4] chore: Update dependency Verify.Xunit to v23.2.0 --- test/Spectre.Console.Cli.Tests/Spectre.Console.Cli.Tests.csproj | 2 +- test/Spectre.Console.Tests/Spectre.Console.Tests.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Spectre.Console.Cli.Tests/Spectre.Console.Cli.Tests.csproj b/test/Spectre.Console.Cli.Tests/Spectre.Console.Cli.Tests.csproj index 41cfded91..187d05cb6 100644 --- a/test/Spectre.Console.Cli.Tests/Spectre.Console.Cli.Tests.csproj +++ b/test/Spectre.Console.Cli.Tests/Spectre.Console.Cli.Tests.csproj @@ -13,7 +13,7 @@ - + all diff --git a/test/Spectre.Console.Tests/Spectre.Console.Tests.csproj b/test/Spectre.Console.Tests/Spectre.Console.Tests.csproj index 34a0199da..f36509d44 100644 --- a/test/Spectre.Console.Tests/Spectre.Console.Tests.csproj +++ b/test/Spectre.Console.Tests/Spectre.Console.Tests.csproj @@ -21,7 +21,7 @@ - + all