Skip to content

Commit bf53bb2

Browse files
authored
V10.0.2/service update (#21)
⬆️ bump dependencies 👷 update ci pipeline for consistency cross-codebeltnet 💬 updated community health pages 📦️ updated NuGet package definition
1 parent 16124a9 commit bf53bb2

6 files changed

Lines changed: 53 additions & 21 deletions

File tree

.docfx/Dockerfile.docfx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG NGINX_VERSION=1.29.4-alpine
1+
ARG NGINX_VERSION=1.29.5-alpine
22

33
FROM --platform=$BUILDPLATFORM nginx:${NGINX_VERSION} AS base
44
RUN rm -rf /usr/share/nginx/html/*

.github/workflows/ci-pipeline.yml

Lines changed: 31 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Asp.Versioning Ext. CI/CD Pipeline
1+
name: Asp.Versioning Ext. CI Pipeline
22
on:
33
pull_request:
44
branches: [main]
@@ -21,11 +21,14 @@ jobs:
2121
name: call-build
2222
strategy:
2323
matrix:
24+
arch: [X64, ARM64]
2425
configuration: [Debug, Release]
2526
uses: codebeltnet/jobs-dotnet-build/.github/workflows/default.yml@v3
2627
with:
2728
configuration: ${{ matrix.configuration }}
2829
strong-name-key-filename: versioning.snk
30+
runs-on: ${{ matrix.arch == 'ARM64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
31+
upload-build-artifact-name: build-${{ matrix.configuration }}-${{ matrix.arch }}
2932
secrets:
3033
GCP_TOKEN: ${{ secrets.GCP_TOKEN }}
3134
GCP_BUCKETNAME: ${{ secrets.GCP_BUCKETNAME }}
@@ -40,26 +43,45 @@ jobs:
4043
with:
4144
configuration: ${{ matrix.configuration }}
4245
version: ${{ needs.build.outputs.version }}
46+
download-build-artifact-pattern: build-${{ matrix.configuration }}-X64
4347

44-
test:
45-
name: call-test
48+
test_linux:
49+
name: call-test-linux
4650
needs: [build]
4751
strategy:
4852
fail-fast: false
4953
matrix:
50-
os: [ubuntu-24.04, windows-2025, ubuntu-24.04-arm, windows-11-arm]
54+
arch: [X64, ARM64]
5155
configuration: [Debug, Release]
5256
uses: codebeltnet/jobs-dotnet-test/.github/workflows/default.yml@v3
5357
with:
58+
runs-on: ${{ matrix.arch == 'ARM64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
5459
configuration: ${{ matrix.configuration }}
55-
runs-on: ${{ matrix.os }}
5660
build-switches: -p:SkipSignAssembly=true
5761
restore: true
5862
build: true # needed for xunitv3
63+
download-pattern: build-${{ matrix.configuration }}-${{ matrix.arch }}
64+
65+
test_windows:
66+
name: call-test-windows
67+
needs: [build]
68+
strategy:
69+
fail-fast: false
70+
matrix:
71+
arch: [X64, ARM64]
72+
configuration: [Debug, Release]
73+
uses: codebeltnet/jobs-dotnet-test/.github/workflows/default.yml@v3
74+
with:
75+
runs-on: ${{ matrix.arch == 'ARM64' && 'windows-11-arm' || 'windows-2025' }}
76+
configuration: ${{ matrix.configuration }}
77+
build-switches: -p:SkipSignAssembly=true
78+
restore: true
79+
build: true # needed for xunitv3
80+
download-pattern: build-${{ matrix.configuration }}-${{ matrix.arch }}
5981

6082
sonarcloud:
6183
name: call-sonarcloud
62-
needs: [build,test]
84+
needs: [build,test_linux,test_windows]
6385
uses: codebeltnet/jobs-sonarcloud/.github/workflows/default.yml@v3
6486
with:
6587
organization: geekle
@@ -69,23 +91,23 @@ jobs:
6991

7092
codecov:
7193
name: call-codecov
72-
needs: [build,test]
94+
needs: [build,test_linux,test_windows]
7395
uses: codebeltnet/jobs-codecov/.github/workflows/default.yml@v1
7496
with:
7597
repository: codebeltnet/asp-versioning
7698
secrets: inherit
7799

78100
codeql:
79101
name: call-codeql
80-
needs: [build,test]
102+
needs: [build,test_linux,test_windows]
81103
uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v3
82104
permissions:
83105
security-events: write
84106

85107
deploy:
86108
if: github.event_name != 'pull_request'
87109
name: call-nuget
88-
needs: [build, pack, test, sonarcloud, codecov, codeql]
110+
needs: [build, pack, test_linux, test_windows, sonarcloud, codecov, codeql]
89111
uses: codebeltnet/jobs-nuget-push/.github/workflows/default.yml@v2
90112
with:
91113
version: ${{ needs.build.outputs.version }}

.nuget/Codebelt.Extensions.Asp.Versioning/PackageReleaseNotes.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
Version 10.0.1
1+
Version 10.0.2
2+
Availability: .NET 10 and .NET 9
3+
 
4+
# ALM
5+
- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)
6+
 
7+
Version 10.0.1
28
Availability: .NET 10 and .NET 9
39

410
# ALM

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ For more details, please refer to `PackageReleaseNotes.txt` on a per assembly ba
77
> [!NOTE]
88
> Changelog entries prior to version 8.4.0 was migrated from previous versions of Cuemon.Extensions.Asp.Versioning.
99
10+
## [10.0.2] - 2026-02-15
11+
12+
This is a service update that focuses on package dependencies.
13+
1014
## [10.0.1] - 2026-01-22
1115

1216
This is a service update that focuses on package dependencies.

Directory.Packages.props

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
<PackageVersion Include="Asp.Versioning.Http" Version="8.1.1" />
88
<PackageVersion Include="Asp.Versioning.Mvc" Version="8.1.1" />
99
<PackageVersion Include="Asp.Versioning.Mvc.ApiExplorer" Version="8.1.1" />
10-
<PackageVersion Include="Codebelt.Extensions.AspNetCore.Mvc.Formatters.Newtonsoft.Json" Version="10.0.1" />
11-
<PackageVersion Include="Codebelt.Extensions.AspNetCore.Mvc.Formatters.Text.Yaml" Version="10.0.1" />
12-
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="11.0.4" />
13-
<PackageVersion Include="Cuemon.AspNetCore" Version="10.1.2" />
14-
<PackageVersion Include="Cuemon.Extensions.AspNetCore.Mvc" Version="10.1.2" />
15-
<PackageVersion Include="Cuemon.Extensions.AspNetCore.Mvc.Formatters.Text.Json" Version="10.1.2" />
16-
<PackageVersion Include="Cuemon.Extensions.AspNetCore.Mvc.Formatters.Xml" Version="10.1.2" />
10+
<PackageVersion Include="Codebelt.Extensions.AspNetCore.Mvc.Formatters.Newtonsoft.Json" Version="10.0.2" />
11+
<PackageVersion Include="Codebelt.Extensions.AspNetCore.Mvc.Formatters.Text.Yaml" Version="10.0.2" />
12+
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="11.0.5" />
13+
<PackageVersion Include="Cuemon.AspNetCore" Version="10.2.1" />
14+
<PackageVersion Include="Cuemon.Extensions.AspNetCore.Mvc" Version="10.2.1" />
15+
<PackageVersion Include="Cuemon.Extensions.AspNetCore.Mvc.Formatters.Text.Json" Version="10.2.1" />
16+
<PackageVersion Include="Cuemon.Extensions.AspNetCore.Mvc.Formatters.Xml" Version="10.2.1" />
1717
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
1818
<PackageVersion Include="MinVer" Version="7.0.0" />
19-
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
20-
<PackageVersion Include="coverlet.msbuild" Version="6.0.4" />
19+
<PackageVersion Include="coverlet.collector" Version="8.0.0" />
20+
<PackageVersion Include="coverlet.msbuild" Version="8.0.0" />
2121
<PackageVersion Include="xunit.v3" Version="3.2.2" />
2222
<PackageVersion Include="xunit.v3.runner.console" Version="3.2.2" />
2323
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5" />

testenvironments.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{
1010
"name": "Docker-Ubuntu",
1111
"type": "docker",
12-
"dockerImage": "gimlichael/ubuntu-testrunner:net8.0.417-9.0.309-10.0.102"
12+
"dockerImage": "codebeltnet/ubuntu-testrunner:net8.0.418-9.0.311-10.0.103"
1313
}
1414
]
1515
}

0 commit comments

Comments
 (0)