Skip to content

Commit 46b2c19

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

6 files changed

Lines changed: 46 additions & 14 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: 30 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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: unitify.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: inherit
3033

3134
pack:
@@ -38,26 +41,45 @@ jobs:
3841
with:
3942
configuration: ${{ matrix.configuration }}
4043
version: ${{ needs.build.outputs.version }}
44+
download-build-artifact-pattern: build-${{ matrix.configuration }}-X64
4145

42-
test:
43-
name: call-test
46+
test_linux:
47+
name: call-test-linux
4448
needs: [build]
4549
strategy:
4650
fail-fast: false
4751
matrix:
48-
os: [ubuntu-24.04, windows-2025, ubuntu-24.04-arm, windows-11-arm]
52+
arch: [X64, ARM64]
4953
configuration: [Debug, Release]
5054
uses: codebeltnet/jobs-dotnet-test/.github/workflows/default.yml@v3
5155
with:
56+
runs-on: ${{ matrix.arch == 'ARM64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
5257
configuration: ${{ matrix.configuration }}
53-
runs-on: ${{ matrix.os }}
5458
build-switches: -p:SkipSignAssembly=true
5559
build: true # we need to build due to xUnitv3
5660
restore: true
61+
download-pattern: build-${{ matrix.configuration }}-${{ matrix.arch }}
62+
63+
test_windows:
64+
name: call-test-windows
65+
needs: [build]
66+
strategy:
67+
fail-fast: false
68+
matrix:
69+
arch: [X64, ARM64]
70+
configuration: [Debug, Release]
71+
uses: codebeltnet/jobs-dotnet-test/.github/workflows/default.yml@v3
72+
with:
73+
runs-on: ${{ matrix.arch == 'ARM64' && 'windows-11-arm' || 'windows-2025' }}
74+
configuration: ${{ matrix.configuration }}
75+
build-switches: -p:SkipSignAssembly=true
76+
build: true # we need to build due to xUnitv3
77+
restore: true
78+
download-pattern: build-${{ matrix.configuration }}-${{ matrix.arch }}
5779

5880
sonarcloud:
5981
name: call-sonarcloud
60-
needs: [build,test]
82+
needs: [build,test_linux,test_windows]
6183
uses: codebeltnet/jobs-sonarcloud/.github/workflows/default.yml@v3
6284
with:
6385
organization: geekle
@@ -67,23 +89,23 @@ jobs:
6789

6890
codecov:
6991
name: call-codecov
70-
needs: [build,test]
92+
needs: [build,test_linux,test_windows]
7193
uses: codebeltnet/jobs-codecov/.github/workflows/default.yml@v1
7294
with:
7395
repository: codebeltnet/unitify
7496
secrets: inherit
7597

7698
codeql:
7799
name: call-codeql
78-
needs: [build,test]
100+
needs: [build,test_linux,test_windows]
79101
uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v3
80102
permissions:
81103
security-events: write
82104

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

.nuget/Codebelt.Unitify/PackageReleaseNotes.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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+
 
17
Version 10.0.1
28
Availability: .NET 10 and .NET 9
39

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 9.0.0 was migrated from previous versions of [Cuemon.Core](https://github.com/gimlichael/Cuemon/commit/83e0c7af2cdaa07351e878fa7276558838f2e7e6).
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="11.0.4" />
7-
<PackageVersion Include="Cuemon.Core" Version="10.1.2" />
6+
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="11.0.5" />
7+
<PackageVersion Include="Cuemon.Core" Version="10.2.1" />
88
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
99
<PackageVersion Include="MinVer" Version="7.0.0" />
10-
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
11-
<PackageVersion Include="coverlet.msbuild" Version="6.0.4" />
10+
<PackageVersion Include="coverlet.collector" Version="8.0.0" />
11+
<PackageVersion Include="coverlet.msbuild" Version="8.0.0" />
1212
<PackageVersion Include="xunit.v3" Version="3.2.2" />
1313
<PackageVersion Include="xunit.v3.runner.console" Version="3.2.2" />
1414
<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)