Skip to content

V1.3.2/service update - #18

Merged
gimlichael merged 6 commits into
mainfrom
v1.3.2/service-update
Jul 22, 2026
Merged

V1.3.2/service update#18
gimlichael merged 6 commits into
mainfrom
v1.3.2/service-update

Conversation

@codebelt-aicia

Copy link
Copy Markdown
Contributor

This is a service update that focuses on package dependencies.

Automated changes:

  • Codebelt/Cuemon package versions bumped to latest compatible
  • PackageReleaseNotes.txt updated for v1.3.2
  • CHANGELOG.md entry added for v1.3.2

Note: Third-party packages (Microsoft.Extensions.*, BenchmarkDotNet, etc.) are not auto-updated.
Use Dependabot or manual updates for those.

Generated by codebelt-aicia
Triggered by: xunit @ 11.1.2

@greptile-apps

greptile-apps Bot commented Jul 18, 2026

Copy link
Copy Markdown

Greptile Summary

This is an automated service-update PR for v1.3.2, bumping four Codebelt/Cuemon packages, switching the DocFX nginx image from a pinned patch tag to a floating minor-track tag, and recording the changes in CHANGELOG and PackageReleaseNotes files.

  • Package bumps: Codebelt.Bootstrapper.Console → 5.1.2, Codebelt.Extensions.Xunit.App → 11.1.2, Cuemon.Core → 10.5.5, Microsoft.NET.Test.Sdk → 18.8.1 (all in Directory.Packages.props).
  • MSBuild property rename: AnalysisLevelAnalysisMode in the test-project property group of Directory.Build.props; the equivalent benchmark-project group was not updated, creating a minor inconsistency with the CHANGELOG description.
  • AGENTS.md cleanup: The standalone "Official Documentation" section was removed; its guidance is fully covered by the existing dotnet-docfx-digest block.

Confidence Score: 5/5

Safe to merge; all changes are dependency version bumps, release-note bookkeeping, and minor configuration updates with no runtime impact.

The substantive changes are straightforward package upgrades. The only noteworthy item is that the AnalysisLevel → AnalysisMode rename described in the CHANGELOG was applied to the test-project group but not the benchmark-project group — a self-contained inconsistency that has no effect on produced binaries, since multiple RunAnalyzers* properties already suppress analysis for both project types.

Directory.Build.props — the benchmark-project property group at line 109 still uses AnalysisLevel while the test-project group now uses AnalysisMode.

Important Files Changed

Filename Overview
Directory.Build.props Changed AnalysisLevel to AnalysisMode in the test-project property group, but the equivalent benchmark-project property group at line 109 still uses the old AnalysisLevel property — inconsistent with the CHANGELOG claim that both sections were updated.
Directory.Packages.props Bumps four package versions: Codebelt.Bootstrapper.Console, Codebelt.Extensions.Xunit.App, Cuemon.Core, and Microsoft.NET.Test.Sdk — all straightforward version increments.
.docfx/Dockerfile.docfx Switches nginx tag from the pinned 1.31.2-alpine to the floating 1.31-alpine minor-track tag, intentionally trading reproducibility for automatic patch updates per the CHANGELOG.
CHANGELOG.md Adds v1.3.2 entry with correct comparison links; the Fixed bullet claims AnalysisMode was corrected in both benchmark and test configurations, but only the test section was updated in this PR.
AGENTS.md Removes the standalone Official Documentation section; the guidance it contained is absorbed into the existing dotnet-docfx-digest block, which already covers namespaces, type pages, and overwrite files comprehensively.
.nuget/Codebelt.Extensions.BenchmarkDotNet/PackageReleaseNotes.txt Prepends v1.3.2 release notes entry noting upgraded dependencies.
.nuget/Codebelt.Extensions.BenchmarkDotNet.Console/PackageReleaseNotes.txt Prepends v1.3.2 release notes entry noting upgraded dependencies.

Flowchart

%%{init: {'theme': 'neutral'}}%%
flowchart TD
    A[Directory.Packages.props] -->|version bumps| B[Codebelt.Bootstrapper.Console 5.1.2]
    A -->|version bumps| C[Codebelt.Extensions.Xunit.App 11.1.2]
    A -->|version bumps| D[Cuemon.Core 10.5.5]
    A -->|version bumps| E[Microsoft.NET.Test.Sdk 18.8.1]

    F[Directory.Build.props] -->|AnalysisLevel to AnalysisMode| G[IsTestProject group updated]
    F -->|still uses AnalysisLevel| H[IsBenchmarkProject group not updated]

    I[.docfx/Dockerfile.docfx] -->|tag change| J[nginx 1.31.2-alpine to 1.31-alpine]

    K[CHANGELOG.md] --> L[v1.3.2 entry added]
    M[PackageReleaseNotes.txt x2] --> L
Loading

Reviews (2): Last reviewed commit: "📝 update changelog for 1.3.2 patch rele..." | Re-trigger Greptile

Comment thread Directory.Packages.props
<PackageVersion Include="xunit.v3.runner.console" Version="3.2.2" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5" />
</ItemGroup>
</Project>

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Missing trailing newline at end of file. The reformatting in this PR removed the trailing newline that the original file had. Most editors, linters, and git tooling expect text files to end with a newline, and its absence is flagged by git diff as \ No newline at end of file, which will appear as noise in every future diff touching this file.

Prompt To Fix With AI
This is a comment left during a code review.
Path: Directory.Packages.props
Line: 19

Comment:
**Missing trailing newline at end of file.** The reformatting in this PR removed the trailing newline that the original file had. Most editors, linters, and git tooling expect text files to end with a newline, and its absence is flagged by `git diff` as `\ No newline at end of file`, which will appear as noise in every future diff touching this file.

How can I resolve this? If you propose a fix, please make it concise.

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

@codecov

codecov Bot commented Jul 18, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 91.25%. Comparing base (9130627) to head (048d5ae).

Additional details and impacted files
@@           Coverage Diff           @@
##             main      #18   +/-   ##
=======================================
  Coverage   91.25%   91.25%           
=======================================
  Files           7        7           
  Lines         389      389           
  Branches       44       44           
=======================================
  Hits          355      355           
  Misses         34       34           

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Update dockerfile.docfx nginx base image from 1.31.2-alpine to 1.31-alpine to track the latest stable minor version.
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.
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.
Update Microsoft.NET.Test.Sdk from 18.7.0 to 18.8.1. This includes bug fixes and improvements to the test SDK runtime.
@gimlichael
gimlichael merged commit e7ffa38 into main Jul 22, 2026
24 checks passed
@gimlichael
gimlichael deleted the v1.3.2/service-update branch July 22, 2026 21:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant