Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .docfx/Dockerfile.docfx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG NGINX_VERSION=1.29.0-alpine
ARG NGINX_VERSION=1.29.1-alpine

FROM --platform=$BUILDPLATFORM nginx:${NGINX_VERSION} AS base
RUN rm -rf /usr/share/nginx/html/*
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
runs-on: ${{ matrix.os }}
build-switches: -p:SkipSignAssembly=true
restore: true
build: true

sonarcloud:
name: call-sonarcloud
Expand Down
8 changes: 7 additions & 1 deletion .nuget/Codebelt.Bootstrapper.Console/PackageReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
Version 4.0.4
Version 4.0.5
Availability: .NET 9 and .NET 8

# ALM
- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)

Version 4.0.4
Availability: .NET 9 and .NET 8

# ALM
Expand Down
8 changes: 7 additions & 1 deletion .nuget/Codebelt.Bootstrapper.Web/PackageReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
Version 4.0.4
Version 4.0.5
Availability: .NET 9 and .NET 8

# ALM
- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)

Version 4.0.4
Availability: .NET 9 and .NET 8

# ALM
Expand Down
8 changes: 7 additions & 1 deletion .nuget/Codebelt.Bootstrapper.Worker/PackageReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
Version 4.0.4
Version 4.0.5
Availability: .NET 9 and .NET 8

# ALM
- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)

Version 4.0.4
Availability: .NET 9 and .NET 8

# ALM
Expand Down
8 changes: 7 additions & 1 deletion .nuget/Codebelt.Bootstrapper/PackageReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
Version 4.0.4
Version 4.0.5
Availability: .NET 9 and .NET 8

# ALM
- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)

Version 4.0.4
Availability: .NET 9 and .NET 8

# ALM
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

## [4.0.5] - 2025-09-15

This is a service update that focuses on package dependencies.

## [4.0.4] - 2025-08-20

This is a service update that focuses on package dependencies.
Expand Down
22 changes: 11 additions & 11 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="Codebelt.Extensions.Swashbuckle.AspNetCore" Version="9.0.6" />
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="10.0.5" />
<PackageVersion Include="Cuemon.Core" Version="9.0.8" />
<PackageVersion Include="Cuemon.Extensions.Hosting" Version="9.0.8" />
<PackageVersion Include="Codebelt.Extensions.Swashbuckle.AspNetCore" Version="9.0.7" />
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="10.0.6" />
<PackageVersion Include="Cuemon.Core" Version="9.0.9" />
<PackageVersion Include="Cuemon.Extensions.Hosting" Version="9.0.9" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageVersion Include="MinVer" Version="6.0.0" />
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
Expand All @@ -15,15 +15,15 @@
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.4" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework.StartsWith('net9'))">
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="9.0.8" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="9.0.8" />
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="9.0.8" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.8" />
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="9.0.8" />
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="9.0.9" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="9.0.9" />
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="9.0.9" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.9" />
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="9.0.9" />
Comment on lines +18 to +22
Copy link

Choose a reason for hiding this comment

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

💡 Verification agent

🧩 Analysis chain

Double-check 9.0.9 is the latest safe patch across the net9 set.

Minor but useful to keep the net9 group in lockstep on the same patch floor if newer service releases exist.


🌐 Web query:

What are the latest patch versions for these as of 2025-09-15: Microsoft.AspNetCore.OpenApi, Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation, Microsoft.Extensions.Configuration, Microsoft.Extensions.DependencyInjection.Abstractions, Microsoft.Extensions.Hosting (for .NET 9)?

💡 Result:

As of 2025-09-15 the latest .NET 9 patch versions on NuGet are:

  • Microsoft.AspNetCore.OpenApi — 9.0.9. [1]
  • Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation — 9.0.8. [2]
  • Microsoft.Extensions.Configuration — 9.0.9. [3]
  • Microsoft.Extensions.DependencyInjection.Abstractions — 9.0.9. [4]
  • Microsoft.Extensions.Hosting — 9.0.8. [5]

Sources: NuGet package pages for each package.


Align net9 package versions to NuGet-published patches

Directory.Packages.props (lines 18–22): Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation and Microsoft.Extensions.Hosting are listed as 9.0.9 here but NuGet shows 9.0.8 as the latest for those packages (others are 9.0.9) as of 2025-09-15 — change those two to 9.0.8 or pick a single validated patch floor for all net9 packages to avoid referencing non-existent 9.0.9 versions.

🤖 Prompt for AI Agents
In Directory.Packages.props around lines 18 to 22, two packages
(Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation and
Microsoft.Extensions.Hosting) are pinned to 9.0.9 which NuGet shows as 9.0.8 for
those packages; update those two Version attributes to 9.0.8 (or alternatively
choose one validated patch version and set all net9 package Version entries to
that same patch) so the file only references published NuGet versions and
remains consistent.

</ItemGroup>
<ItemGroup Condition="$(TargetFramework.StartsWith('net8'))">
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="8.0.19" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="8.0.19" />
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="8.0.20" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="8.0.20" />
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
Expand Down
2 changes: 1 addition & 1 deletion testenvironments.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{
"name": "Docker-Ubuntu",
"type": "docker",
"dockerImage": "gimlichael/ubuntu-testrunner:net8.0.413-9.0.304"
"dockerImage": "gimlichael/ubuntu-testrunner:net8.0.414-9.0.305"
}
]
}
Loading