From c47ca59b936291d06718b72673c4f8446505a608 Mon Sep 17 00:00:00 2001 From: Michael Mortensen Date: Sun, 15 Feb 2026 05:41:39 +0100 Subject: [PATCH 1/5] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20bump=20dependencies?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .docfx/Dockerfile.docfx | 2 +- Directory.Packages.props | 18 +++++++++--------- testenvironments.json | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.docfx/Dockerfile.docfx b/.docfx/Dockerfile.docfx index 4986634..f60a543 100644 --- a/.docfx/Dockerfile.docfx +++ b/.docfx/Dockerfile.docfx @@ -1,4 +1,4 @@ -ARG NGINX_VERSION=1.29.4-alpine +ARG NGINX_VERSION=1.29.5-alpine FROM --platform=$BUILDPLATFORM nginx:${NGINX_VERSION} AS base RUN rm -rf /usr/share/nginx/html/* diff --git a/Directory.Packages.props b/Directory.Packages.props index 01fbc66..f36e22e 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -7,17 +7,17 @@ - - - - - - - + + + + + + + - - + + diff --git a/testenvironments.json b/testenvironments.json index 3cf735c..a12cd13 100644 --- a/testenvironments.json +++ b/testenvironments.json @@ -9,7 +9,7 @@ { "name": "Docker-Ubuntu", "type": "docker", - "dockerImage": "gimlichael/ubuntu-testrunner:net8.0.417-9.0.309-10.0.102" + "dockerImage": "codebeltnet/ubuntu-testrunner:net8.0.418-9.0.311-10.0.103" } ] } From 0928822ed153de031cfae764bd0e3848142a9a96 Mon Sep 17 00:00:00 2001 From: Michael Mortensen Date: Sun, 15 Feb 2026 05:41:49 +0100 Subject: [PATCH 2/5] =?UTF-8?q?=F0=9F=91=B7=20update=20ci=20pipeline=20for?= =?UTF-8?q?=20consistency=20cross-codebeltnet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci-pipeline.yml | 38 ++++++++++++++++++++++++------- 1 file changed, 30 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 5bb5f6d..c3d0e3e 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -1,4 +1,4 @@ -name: Asp.Versioning Ext. CI/CD Pipeline +name: Asp.Versioning Ext. CI Pipeline on: pull_request: branches: [main] @@ -21,11 +21,14 @@ jobs: name: call-build strategy: matrix: + arch: [X64, ARM64] configuration: [Debug, Release] uses: codebeltnet/jobs-dotnet-build/.github/workflows/default.yml@v3 with: configuration: ${{ matrix.configuration }} strong-name-key-filename: versioning.snk + runs-on: ${{ matrix.arch == 'ARM64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }} + upload-build-artifact-name: build-${{ matrix.configuration }}-${{ matrix.arch }} secrets: GCP_TOKEN: ${{ secrets.GCP_TOKEN }} GCP_BUCKETNAME: ${{ secrets.GCP_BUCKETNAME }} @@ -40,26 +43,45 @@ jobs: with: configuration: ${{ matrix.configuration }} version: ${{ needs.build.outputs.version }} + download-build-artifact-pattern: build-${{ matrix.configuration }}-X64 - test: + test_linux: name: call-test needs: [build] strategy: fail-fast: false matrix: - os: [ubuntu-24.04, windows-2025, ubuntu-24.04-arm, windows-11-arm] + arch: [X64, ARM64] configuration: [Debug, Release] uses: codebeltnet/jobs-dotnet-test/.github/workflows/default.yml@v3 with: + runs-on: ${{ matrix.arch == 'ARM64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }} configuration: ${{ matrix.configuration }} - runs-on: ${{ matrix.os }} build-switches: -p:SkipSignAssembly=true restore: true build: true # needed for xunitv3 + download-pattern: build-${{ matrix.configuration }}-${{ matrix.arch }} + + test_windows: + name: call-test + needs: [build] + strategy: + fail-fast: false + matrix: + arch: [X64, ARM64] + configuration: [Debug, Release] + uses: codebeltnet/jobs-dotnet-test/.github/workflows/default.yml@v3 + with: + runs-on: ${{ matrix.arch == 'ARM64' && 'windows-11-arm' || 'windows-2025' }} + configuration: ${{ matrix.configuration }} + build-switches: -p:SkipSignAssembly=true + restore: true + build: true # needed for xunitv3 + download-pattern: build-${{ matrix.configuration }}-${{ matrix.arch }} sonarcloud: name: call-sonarcloud - needs: [build,test] + needs: [build,test_linux,test_windows] uses: codebeltnet/jobs-sonarcloud/.github/workflows/default.yml@v3 with: organization: geekle @@ -69,7 +91,7 @@ jobs: codecov: name: call-codecov - needs: [build,test] + needs: [build,test_linux,test_windows] uses: codebeltnet/jobs-codecov/.github/workflows/default.yml@v1 with: repository: codebeltnet/asp-versioning @@ -77,7 +99,7 @@ jobs: codeql: name: call-codeql - needs: [build,test] + needs: [build,test_linux,test_windows] uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v3 permissions: security-events: write @@ -85,7 +107,7 @@ jobs: deploy: if: github.event_name != 'pull_request' name: call-nuget - needs: [build, pack, test, sonarcloud, codecov, codeql] + needs: [build, pack, test_linux, test_windows, sonarcloud, codecov, codeql] uses: codebeltnet/jobs-nuget-push/.github/workflows/default.yml@v2 with: version: ${{ needs.build.outputs.version }} From f03c7124485329381f5f4686c30d998e9c2b1590 Mon Sep 17 00:00:00 2001 From: Michael Mortensen Date: Sun, 15 Feb 2026 05:41:56 +0100 Subject: [PATCH 3/5] =?UTF-8?q?=F0=9F=92=AC=20updated=20community=20health?= =?UTF-8?q?=20pages?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ef122f..1d5db6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ For more details, please refer to `PackageReleaseNotes.txt` on a per assembly ba > [!NOTE] > Changelog entries prior to version 8.4.0 was migrated from previous versions of Cuemon.Extensions.Asp.Versioning. +## [10.0.2] - 2026-02-15 + +This is a service update that focuses on package dependencies. + ## [10.0.1] - 2026-01-22 This is a service update that focuses on package dependencies. From 1c7487356656c37197b9f991711320a8f0a45d88 Mon Sep 17 00:00:00 2001 From: Michael Mortensen Date: Sun, 15 Feb 2026 05:42:01 +0100 Subject: [PATCH 4/5] =?UTF-8?q?=F0=9F=93=A6=EF=B8=8F=20updated=20NuGet=20p?= =?UTF-8?q?ackage=20definition?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PackageReleaseNotes.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.nuget/Codebelt.Extensions.Asp.Versioning/PackageReleaseNotes.txt b/.nuget/Codebelt.Extensions.Asp.Versioning/PackageReleaseNotes.txt index 2e559f5..20e2c41 100644 --- a/.nuget/Codebelt.Extensions.Asp.Versioning/PackageReleaseNotes.txt +++ b/.nuget/Codebelt.Extensions.Asp.Versioning/PackageReleaseNotes.txt @@ -1,4 +1,10 @@ -Version 10.0.1 +Version 10.0.2 +Availability: .NET 10 and .NET 9 +  +# ALM +- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs) +  +Version 10.0.1 Availability: .NET 10 and .NET 9   # ALM From 90e005ad7c87853dfd857733d8bd8c169f8859a0 Mon Sep 17 00:00:00 2001 From: Michael Mortensen Date: Sun, 15 Feb 2026 05:51:48 +0100 Subject: [PATCH 5/5] =?UTF-8?q?=F0=9F=90=9B=20fix=20job=20names=20for=20li?= =?UTF-8?q?nux=20and=20windows=20test=20stages=20in=20ci=20pipeline?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci-pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index c3d0e3e..42c01df 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -46,7 +46,7 @@ jobs: download-build-artifact-pattern: build-${{ matrix.configuration }}-X64 test_linux: - name: call-test + name: call-test-linux needs: [build] strategy: fail-fast: false @@ -63,7 +63,7 @@ jobs: download-pattern: build-${{ matrix.configuration }}-${{ matrix.arch }} test_windows: - name: call-test + name: call-test-windows needs: [build] strategy: fail-fast: false