From 106bd3140acc703d8c126abeb2dd5d33b7814243 Mon Sep 17 00:00:00 2001 From: Michael Mortensen Date: Fri, 11 Jul 2025 00:14:48 +0200 Subject: [PATCH 1/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 b5a329b..77962f7 100644 --- a/.nuget/Codebelt.Extensions.Globalization/PackageReleaseNotes.txt +++ b/.nuget/Codebelt.Extensions.Globalization/PackageReleaseNotes.txt @@ -1,4 +1,10 @@ -Version 9.0.4 +Version 9.0.5 +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.4 Availability: .NET 9, .NET 8 and .NET Standard 2.0   # ALM From 852c5d9bcb9d2b585cb2c3b693c4738b8ed8c896 Mon Sep 17 00:00:00 2001 From: Michael Mortensen Date: Fri, 11 Jul 2025 00:14:58 +0200 Subject: [PATCH 2/5] :arrow_up: bump dependencies --- .docfx/Dockerfile.docfx | 6 ++++-- .github/workflows/pipelines.yml | 4 ++-- Directory.Packages.props | 2 +- testenvironments.json | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.docfx/Dockerfile.docfx b/.docfx/Dockerfile.docfx index dedeef4..9b5f9a7 100644 --- a/.docfx/Dockerfile.docfx +++ b/.docfx/Dockerfile.docfx @@ -1,4 +1,6 @@ -FROM --platform=$BUILDPLATFORM nginx:1.28.0-alpine AS base +ARG NGINX_VERSION=1.29.0-alpine + +FROM --platform=$BUILDPLATFORM nginx:${NGINX_VERSION} AS base RUN rm -rf /usr/share/nginx/html/* FROM --platform=$BUILDPLATFORM codebeltnet/docfx:2.78.3 AS build @@ -8,7 +10,7 @@ ADD [".", "docfx"] RUN cd docfx; \ docfx build -FROM nginx:1.28.0-alpine AS final +FROM nginx:${NGINX_VERSION} 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 1671156..ee8643a 100644 --- a/.github/workflows/pipelines.yml +++ b/.github/workflows/pipelines.yml @@ -61,7 +61,7 @@ jobs: sonarcloud: name: call-sonarcloud needs: [build,test] - uses: codebeltnet/jobs-sonarcloud/.github/workflows/default.yml@v1 + uses: codebeltnet/jobs-sonarcloud/.github/workflows/default.yml@v2 with: organization: geekle projectKey: globalization @@ -79,7 +79,7 @@ jobs: codeql: name: call-codeql needs: [build,test] - uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v1 + uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v2 deploy: if: github.event_name != 'pull_request' diff --git a/Directory.Packages.props b/Directory.Packages.props index 95fb252..6078ad1 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -3,7 +3,7 @@ true - + diff --git a/testenvironments.json b/testenvironments.json index 9d87973..e523c07 100644 --- a/testenvironments.json +++ b/testenvironments.json @@ -9,7 +9,7 @@ { "name": "Docker-Ubuntu", "type": "docker", - "dockerImage": "gimlichael/ubuntu-testrunner:net8.0.411-9.0.301" + "dockerImage": "gimlichael/ubuntu-testrunner:net8.0.412-9.0.302" } ] } From 4e32f6e8f764b25f7c3175fc006984e1e508e1d9 Mon Sep 17 00:00:00 2001 From: Michael Mortensen Date: Fri, 11 Jul 2025 00:15:05 +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 aebe248..5a4bfa7 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.5] - 2025-07-11 + +This is a service update that focuses on package dependencies. + ## [9.0.4] - 2025-06-15 This is a service update that focuses on package dependencies. From 2f6e3c6d1b47a7bc48755a2a6cfa8dbb178e0f32 Mon Sep 17 00:00:00 2001 From: Michael Mortensen Date: Fri, 11 Jul 2025 00:36:08 +0200 Subject: [PATCH 4/5] bump --- Directory.Packages.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 6078ad1..4fcbda9 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -4,7 +4,7 @@ - + From 7fe3e3450bb78d234058fceefbcd7e95151a38c1 Mon Sep 17 00:00:00 2001 From: Michael Mortensen Date: Fri, 11 Jul 2025 00:52:06 +0200 Subject: [PATCH 5/5] added projects --- .github/workflows/pipelines.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/pipelines.yml b/.github/workflows/pipelines.yml index ee8643a..0581709 100644 --- a/.github/workflows/pipelines.yml +++ b/.github/workflows/pipelines.yml @@ -63,6 +63,7 @@ jobs: needs: [build,test] uses: codebeltnet/jobs-sonarcloud/.github/workflows/default.yml@v2 with: + projects: src/**/*.csproj organization: geekle projectKey: globalization version: ${{ needs.build.outputs.version }} @@ -80,6 +81,8 @@ jobs: name: call-codeql needs: [build,test] uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v2 + with: + projects: src/**/*.csproj deploy: if: github.event_name != 'pull_request'