From 32d4a7a8db09b9108f247c189dde32f8c4a64304 Mon Sep 17 00:00:00 2001 From: Michael Mortensen Date: Sun, 25 May 2025 20:53:10 +0200 Subject: [PATCH 1/5] :speech_balloon: updated community health pages --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 2a646c1..bf5efb2 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ An open-source project (MIT license) that targets and complements the [System.Globalization](https://github.com/dotnet/runtime/tree/main/src/libraries/System.Private.CoreLib/src/System/Globalization) namespace. It aims to provide a way to favor National Language Support (NLS) over International Components for Unicode (ICU). +Full documentation (generated by [DocFx](https://github.com/dotnet/docfx)) located here: https://globalization.codebelt.net/ + ### 📦 Standalone Packages Provides a focused API for RESTful versioning. From 79159bbdf2e3358afa74806a26774ac0766f6102 Mon Sep 17 00:00:00 2001 From: Michael Mortensen Date: Sun, 25 May 2025 20:54:56 +0200 Subject: [PATCH 2/5] :wrench: opt-in for non-mono dockerimage --- testenvironments.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testenvironments.json b/testenvironments.json index 1270327..0214cf5 100644 --- a/testenvironments.json +++ b/testenvironments.json @@ -9,7 +9,7 @@ { "name": "Docker-Ubuntu", "type": "docker", - "dockerImage": "gimlichael/ubuntu-testrunner:mono-net8.0.409-9.0.300" + "dockerImage": "gimlichael/ubuntu-testrunner:net8.0.409-9.0.300" } ] } From 54b06730865ae03a88df2fd51ca60a6405847997 Mon Sep 17 00:00:00 2001 From: Michael Mortensen Date: Sun, 15 Jun 2025 22:27:18 +0200 Subject: [PATCH 3/5] :speech_balloon: updated community health pages --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebffb8c..aebe248 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. +## [9.0.4] - 2025-06-15 + +This is a service update that focuses on package dependencies. + ## [9.0.3] - 2025-05-25 This is a service update that focuses on package dependencies. From 2ce65768df454b5c43d637ecbaf95bfbf26f75f9 Mon Sep 17 00:00:00 2001 From: Michael Mortensen Date: Sun, 15 Jun 2025 22:27:28 +0200 Subject: [PATCH 4/5] :arrow_up: bump dependencies --- .docfx/Dockerfile.docfx | 4 ++-- .github/workflows/pipelines.yml | 12 +++++------- Directory.Packages.props | 8 ++++---- testenvironments.json | 2 +- 4 files changed, 12 insertions(+), 14 deletions(-) diff --git a/.docfx/Dockerfile.docfx b/.docfx/Dockerfile.docfx index 29307d0..dedeef4 100644 --- a/.docfx/Dockerfile.docfx +++ b/.docfx/Dockerfile.docfx @@ -1,4 +1,4 @@ -FROM --platform=$BUILDPLATFORM nginx:1.27.5-alpine AS base +FROM --platform=$BUILDPLATFORM nginx:1.28.0-alpine AS base RUN rm -rf /usr/share/nginx/html/* FROM --platform=$BUILDPLATFORM codebeltnet/docfx:2.78.3 AS build @@ -8,7 +8,7 @@ ADD [".", "docfx"] RUN cd docfx; \ docfx build -FROM nginx:1.27.5-alpine AS final +FROM nginx:1.28.0-alpine AS final WORKDIR /usr/share/nginx/html COPY --from=build /build/docfx/wwwroot /usr/share/nginx/html diff --git a/.github/workflows/pipelines.yml b/.github/workflows/pipelines.yml index d16d96a..1671156 100644 --- a/.github/workflows/pipelines.yml +++ b/.github/workflows/pipelines.yml @@ -24,14 +24,12 @@ jobs: strategy: matrix: configuration: [Debug, Release] - uses: codebeltnet/jobs-dotnet-build/.github/workflows/default.yml@v1 + uses: codebeltnet/jobs-dotnet-build/.github/workflows/default.yml@v2 with: projects: src/**/*.csproj configuration: ${{ matrix.configuration }} strong-name-key-filename: globalization.snk - secrets: - GCP_TOKEN: ${{ secrets.GCP_TOKEN }} - GCP_BUCKETNAME: ${{ secrets.GCP_BUCKETNAME }} + secrets: inherit pack: name: call-pack @@ -39,10 +37,9 @@ jobs: strategy: matrix: configuration: [Debug, Release] - uses: codebeltnet/jobs-dotnet-pack/.github/workflows/default.yml@v1 + uses: codebeltnet/jobs-dotnet-pack/.github/workflows/default.yml@v2 with: configuration: ${{ matrix.configuration }} - upload-packed-artifact: true version: ${{ needs.build.outputs.version }} test: @@ -53,12 +50,13 @@ jobs: matrix: os: [ubuntu-24.04, windows-2022] configuration: [Debug, Release] - uses: codebeltnet/jobs-dotnet-test/.github/workflows/default.yml@v1 + uses: codebeltnet/jobs-dotnet-test/.github/workflows/default.yml@v2 with: projects: test/**/*.csproj configuration: ${{ matrix.configuration }} runs-on: ${{ matrix.os }} build-switches: -p:SkipSignAssembly=true + restore: true sonarcloud: name: call-sonarcloud diff --git a/Directory.Packages.props b/Directory.Packages.props index 0a73061..95fb252 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -3,14 +3,14 @@ true - - - + + + - + \ No newline at end of file diff --git a/testenvironments.json b/testenvironments.json index 0214cf5..9d87973 100644 --- a/testenvironments.json +++ b/testenvironments.json @@ -9,7 +9,7 @@ { "name": "Docker-Ubuntu", "type": "docker", - "dockerImage": "gimlichael/ubuntu-testrunner:net8.0.409-9.0.300" + "dockerImage": "gimlichael/ubuntu-testrunner:net8.0.411-9.0.301" } ] } From 9a11c3086d92332dd2f3f14263132cdd02fb4b20 Mon Sep 17 00:00:00 2001 From: Michael Mortensen Date: Sun, 15 Jun 2025 22:27:33 +0200 Subject: [PATCH 5/5] :package: updated NuGet package definition --- .../PackageReleaseNotes.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.nuget/Codebelt.Extensions.Globalization/PackageReleaseNotes.txt b/.nuget/Codebelt.Extensions.Globalization/PackageReleaseNotes.txt index 70fc6f2..b5a329b 100644 --- a/.nuget/Codebelt.Extensions.Globalization/PackageReleaseNotes.txt +++ b/.nuget/Codebelt.Extensions.Globalization/PackageReleaseNotes.txt @@ -1,4 +1,10 @@ -Version 9.0.3 +Version 9.0.4 +Availability: .NET 9, .NET 8 and .NET Standard 2.0 +  +# ALM +- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs) +  +Version 9.0.3 Availability: .NET 9, .NET 8 and .NET Standard 2.0   # ALM