From 3904b55e5700c496d53773241be967ef2d27c400 Mon Sep 17 00:00:00 2001 From: "codebelt-aicia[bot]" Date: Sat, 18 Jul 2026 01:24:38 +0000 Subject: [PATCH 1/6] V1.3.2/service update --- .../PackageReleaseNotes.txt | 6 ++++ .../PackageReleaseNotes.txt | 6 ++++ CHANGELOG.md | 4 +++ Directory.Packages.props | 36 +++++++++---------- 4 files changed, 34 insertions(+), 18 deletions(-) diff --git a/.nuget/Codebelt.Extensions.BenchmarkDotNet.Console/PackageReleaseNotes.txt b/.nuget/Codebelt.Extensions.BenchmarkDotNet.Console/PackageReleaseNotes.txt index 722c697..3583ea7 100644 --- a/.nuget/Codebelt.Extensions.BenchmarkDotNet.Console/PackageReleaseNotes.txt +++ b/.nuget/Codebelt.Extensions.BenchmarkDotNet.Console/PackageReleaseNotes.txt @@ -1,3 +1,9 @@ +Version: 1.3.2 +Availability: .NET 10 and .NET 9 + +# ALM +- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs) + Version: 1.3.1 Availability: .NET 10 and .NET 9 diff --git a/.nuget/Codebelt.Extensions.BenchmarkDotNet/PackageReleaseNotes.txt b/.nuget/Codebelt.Extensions.BenchmarkDotNet/PackageReleaseNotes.txt index be68542..542e90b 100644 --- a/.nuget/Codebelt.Extensions.BenchmarkDotNet/PackageReleaseNotes.txt +++ b/.nuget/Codebelt.Extensions.BenchmarkDotNet/PackageReleaseNotes.txt @@ -1,3 +1,9 @@ +Version: 1.3.2 +Availability: .NET 10 and .NET 9 + +# ALM +- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs) + Version: 1.3.1 Availability: .NET 10 and .NET 9 diff --git a/CHANGELOG.md b/CHANGELOG.md index 64f6190..432594b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), For more details, please refer to `PackageReleaseNotes.txt` on a per assembly basis in the `.nuget` folder. +## [1.3.2] - 2026-07-18 + +This is a service update that focuses on package dependencies. + ## [1.3.1] - 2026-06-29 This is a patch release focused on documentation infrastructure improvements, CI/CD pipeline hardening, and keeping dependencies current. diff --git a/Directory.Packages.props b/Directory.Packages.props index 5db172c..ae480d5 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -1,19 +1,19 @@ - - - true - - - - - - - - - - - - - - - + + + true + + + + + + + + + + + + + + + \ No newline at end of file From 04052ecf1d91a9dab89596626cc7e2e684be0bad Mon Sep 17 00:00:00 2001 From: gimlichael Date: Wed, 22 Jul 2026 23:13:39 +0200 Subject: [PATCH 2/6] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade=20nginx=20base?= =?UTF-8?q?=20image=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update dockerfile.docfx nginx base image from 1.31.2-alpine to 1.31-alpine to track the latest stable minor version. --- .docfx/Dockerfile.docfx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.docfx/Dockerfile.docfx b/.docfx/Dockerfile.docfx index 465ff57..f4064e2 100644 --- a/.docfx/Dockerfile.docfx +++ b/.docfx/Dockerfile.docfx @@ -1,4 +1,4 @@ -ARG NGINX_VERSION=1.31.2-alpine +ARG NGINX_VERSION=1.31-alpine FROM --platform=$BUILDPLATFORM nginx:${NGINX_VERSION} AS base RUN rm -rf /usr/share/nginx/html/* From 3c3d2efce80ecf38ce32cce45c966274f7b8212f Mon Sep 17 00:00:00 2001 From: gimlichael Date: Wed, 22 Jul 2026 23:13:44 +0200 Subject: [PATCH 3/6] =?UTF-8?q?=F0=9F=93=9D=20consolidate=20docfx=20docume?= =?UTF-8?q?ntation=20guidance?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove outdated 'Official Documentation' section from AGENTS.md. This guidance is now consolidated and expanded under the dotnet-docfx-digest block, which provides the authoritative reference for DocFX documentation maintenance practices. --- AGENTS.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index bb874f6..aec2f1e 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -59,12 +59,6 @@ Agents must never automatically commit code changes or push to remote repositori **Rationale:** Automatic commits can clutter history with incomplete work, temporary debugging code, or unintended changes. Unexpected remote operations risk overwriting or losing commits on shared branches. Always require explicit user approval before performing these actions. -## Official Documentation - -- Public API conventions belong in `.docfx/api/namespaces/` and should be treated as the official documentation source for library behavior and naming vocabulary. -- When adding or renaming public APIs, update the relevant namespace page in `.docfx/api/namespaces/` if the change introduces or clarifies a convention. -- Keep internal reasoning, exploratory notes, and agent discussion out of DocFX pages; summarize only stable public guidance. - ## DocFX Documentation Maintenance From d175aa2d812109e7a547d2c781002744f37e72f4 Mon Sep 17 00:00:00 2001 From: gimlichael Date: Wed, 22 Jul 2026 23:13:51 +0200 Subject: [PATCH 4/6] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20correct=20analysismode?= =?UTF-8?q?=20property=20name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix property name from AnalysisLevel to AnalysisMode in benchmark and test project configurations. AnalysisMode is the correct MSBuild property for controlling code analysis behavior in .NET projects. --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index f084862..971affb 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -63,7 +63,7 @@ false false true - none + none NU1701,NU1902,NU1903 false false From f422a27e5bd4b5752ded835a137e9f75d1b7694d Mon Sep 17 00:00:00 2001 From: gimlichael Date: Wed, 22 Jul 2026 23:13:56 +0200 Subject: [PATCH 5/6] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade=20microsoft.ne?= =?UTF-8?q?t.test.sdk?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update Microsoft.NET.Test.Sdk from 18.7.0 to 18.8.1. This includes bug fixes and improvements to the test SDK runtime. --- Directory.Packages.props | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index ae480d5..6c7d060 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -1,19 +1,19 @@ - - - true - - - - - - - - - - - - - - - + + + true + + + + + + + + + + + + + + + \ No newline at end of file From 048d5ae602f9413f36354dad9b1bbef5f17f72e0 Mon Sep 17 00:00:00 2001 From: gimlichael Date: Wed, 22 Jul 2026 23:16:17 +0200 Subject: [PATCH 6/6] =?UTF-8?q?=F0=9F=93=9D=20update=20changelog=20for=201?= =?UTF-8?q?.3.2=20patch=20release=20details?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 432594b..f20de45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), For more details, please refer to `PackageReleaseNotes.txt` on a per assembly basis in the `.nuget` folder. -## [1.3.2] - 2026-07-18 +## [1.3.2] - 2026-07-22 -This is a service update that focuses on package dependencies. +This is a patch release focused on dependency updates, build configuration corrections, and infrastructure refinements. + +### Changed + +- Upgraded `Codebelt.Bootstrapper.Console` from 5.1.1 to 5.1.2, +- Upgraded `Codebelt.Extensions.Xunit.App` from 11.1.1 to 11.1.2, +- Upgraded `Cuemon.Core` from 10.5.4 to 10.5.5, +- Upgraded `Microsoft.NET.Test.Sdk` from 18.7.0 to 18.8.1, +- Updated nginx base image in DocFX dockerfile from 1.31.2-alpine to 1.31-alpine for stability tracking, +- Consolidated DocFX documentation guidance in AGENTS.md under the dotnet-docfx-digest block. + +### Fixed + +- Corrected MSBuild property name from `AnalysisLevel` to `AnalysisMode` in benchmark and test project configurations to properly control code analysis behavior. ## [1.3.1] - 2026-06-29 @@ -128,7 +141,8 @@ This is the initial stable release of the `Codebelt.Extensions.BenchmarkDotNet` - ADDED `BenchmarkProgram` class in the Codebelt.Extensions.BenchmarkDotNet.Console namespace that provides the main entry point for hosting and running benchmarks using BenchmarkDotNet, - ADDED `BenchmarkWorker` class in the Codebelt.Extensions.BenchmarkDotNet.Console namespace that is responsible for executing benchmarks within the console host. -[Unreleased]: https://github.com/codebeltnet/benchmarkdotnet/compare/v1.3.1...HEAD +[Unreleased]: https://github.com/codebeltnet/benchmarkdotnet/compare/v1.3.2...HEAD +[1.3.2]: https://github.com/codebeltnet/benchmarkdotnet/compare/v1.3.1...v1.3.2 [1.3.1]: https://github.com/codebeltnet/benchmarkdotnet/compare/v1.3.0...v1.3.1 [1.3.0]: https://github.com/codebeltnet/benchmarkdotnet/compare/v1.2.7...v1.3.0 [1.2.7]: https://github.com/codebeltnet/benchmarkdotnet/compare/v1.2.6...v1.2.7