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/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml
index 40198a5..5b09d70 100644
--- a/.github/workflows/ci-pipeline.yml
+++ b/.github/workflows/ci-pipeline.yml
@@ -21,12 +21,15 @@ jobs:
name: call-build
strategy:
matrix:
+ arch: [X64, ARM64]
configuration: [Debug, Release]
uses: codebeltnet/jobs-dotnet-build/.github/workflows/default.yml@v3
with:
projects: src/**/*.csproj
configuration: ${{ matrix.configuration }}
strong-name-key-filename: globalization.snk
+ runs-on: ${{ matrix.arch == 'ARM64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
+ upload-build-artifact-name: build-${{ matrix.configuration }}-${{ matrix.arch }}
secrets: inherit
pack:
@@ -39,27 +42,47 @@ jobs:
with:
configuration: ${{ matrix.configuration }}
version: ${{ needs.build.outputs.version }}
+ download-build-artifact-pattern: build-${{ matrix.configuration }}-X64
- test:
- name: call-test
+ test_linux:
+ name: call-test-linux
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:
projects: test/**/*.csproj
configuration: ${{ matrix.configuration }}
- runs-on: ${{ matrix.os }}
+ runs-on: ${{ matrix.arch == 'ARM64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
build-switches: -p:SkipSignAssembly=true
restore: true
build: true
+ download-pattern: build-${{ matrix.configuration }}-${{ matrix.arch }}
+
+ test_windows:
+ name: call-test-windows
+ needs: [build]
+ strategy:
+ fail-fast: false
+ matrix:
+ arch: [X64, ARM64]
+ configuration: [Debug, Release]
+ uses: codebeltnet/jobs-dotnet-test/.github/workflows/default.yml@v3
+ with:
+ projects: test/**/*.csproj
+ configuration: ${{ matrix.configuration }}
+ runs-on: ${{ matrix.arch == 'ARM64' && 'windows-11-arm' || 'windows-2025' }}
+ build-switches: -p:SkipSignAssembly=true
+ restore: true
+ build: true
+ 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:
projects: src/**/*.csproj
@@ -70,7 +93,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/globalization
@@ -78,7 +101,7 @@ jobs:
codeql:
name: call-codeql
- needs: [build,test]
+ needs: [build,test_linux, test_windows]
uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v3
with:
projects: src/**/*.csproj
@@ -88,7 +111,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 }}
diff --git a/.nuget/Codebelt.Extensions.Globalization/PackageReleaseNotes.txt b/.nuget/Codebelt.Extensions.Globalization/PackageReleaseNotes.txt
index 0815b83..5550011 100644
--- a/.nuget/Codebelt.Extensions.Globalization/PackageReleaseNotes.txt
+++ b/.nuget/Codebelt.Extensions.Globalization/PackageReleaseNotes.txt
@@ -1,4 +1,10 @@
-Version 10.0.1
+Version 10.0.2
+Availability: .NET 10, .NET 9 and .NET Standard 2.0
+
+# ALM
+- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)
+
+Version 10.0.1
Availability: .NET 10, .NET 9 and .NET Standard 2.0
# ALM
diff --git a/CHANGELOG.md b/CHANGELOG.md
index dfd6043..09cfd67 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 9.0.1 was migrated from previous versions of Cuemon.Extensions.Globalization.
+## [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.
diff --git a/Directory.Packages.props b/Directory.Packages.props
index ac7cf97..c75fd03 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -3,12 +3,12 @@
true
-
-
+
+
-
-
+
+
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"
}
]
}