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.31.2-alpine
ARG NGINX_VERSION=1.31-alpine

FROM --platform=$BUILDPLATFORM nginx:${NGINX_VERSION} AS base
RUN rm -rf /usr/share/nginx/html/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version: 10.0.10
Availability: .NET 10, .NET 9 and .NET Standard 2.0

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

Version: 10.0.9
Availability: .NET 10, .NET 9 and .NET Standard 2.0

Expand Down
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ 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.

## [10.0.10] - 2026-07-24

This is a patch release that focuses on dependency upgrades and build tooling improvements to strengthen code quality enforcement.

### Changed

- Upgraded Microsoft.NET.Test.Sdk from 18.7.0 to 18.8.1 to pick up latest test framework improvements and tooling enhancements,
- Upgraded Codebelt.Extensions.Xunit from 11.1.1 to 11.1.2,
- Upgraded Codebelt.Extensions.YamlDotNet from 10.1.5 to 10.1.6,
- Enabled .NET code analyzers with latest analysis level, configured recommended analysis mode, and enforced code style in the build process,
- Updated DocFX nginx base image from 1.31.2 to 1.31 for more efficient image layering while maintaining Alpine Linux base.

## [10.0.9] - 2026-07-01

This is a patch release focused on API documentation improvements, CI/tooling enhancements, and maintenance updates to build and test dependencies.
Expand Down Expand Up @@ -142,7 +154,8 @@ This is a service update that primarily focuses on package dependencies and mino

- CultureInfoExtensions class in the Codebelt.Extensions.Globalization namespace that consist of extension methods for the CultureInfo class: UseNationalLanguageSupport

[Unreleased]: https://github.com/codebeltnet/globalization/compare/v10.0.9...HEAD
[Unreleased]: https://github.com/codebeltnet/globalization/compare/v10.0.10...HEAD
[10.0.10]: https://github.com/codebeltnet/globalization/compare/v10.0.9...v10.0.10
[10.0.9]: https://github.com/codebeltnet/globalization/compare/v10.0.8...v10.0.9
[10.0.8]: https://github.com/codebeltnet/globalization/compare/v10.0.7...v10.0.8
[10.0.7]: https://github.com/codebeltnet/globalization/compare/v10.0.6...v10.0.7
Expand Down
8 changes: 6 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,12 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<SignAssembly Condition="('$(CI)' == 'true' OR '$(IsMainAuthor)' == 'true') AND '$(SkipSignAssembly)' == 'false'">true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)globalization.snk</AssemblyOriginatorKeyFile>
<NoWarn>7035,CA2260</NoWarn>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
<AnalysisMode>Recommended</AnalysisMode>
<NoWarn>7035,CA2260,S6618</NoWarn>
<MinVerTagPrefix>v</MinVerTagPrefix>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
</PropertyGroup>

<ItemGroup Condition="'$(NuGetPackageRoot)' != ''">
Expand Down Expand Up @@ -69,7 +73,7 @@
<RunAnalyzersDuringLiveAnalysis>false</RunAnalyzersDuringLiveAnalysis>
<SonarQubeExclude>true</SonarQubeExclude>
<WarningLevel>0</WarningLevel>
<AnalysisLevel>none</AnalysisLevel>
<AnalysisMode>none</AnalysisMode>
<NoWarn>NU1701,NETSDK1206</NoWarn>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>
Expand Down
6 changes: 3 additions & 3 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="Codebelt.Extensions.Xunit" Version="11.1.1" />
<PackageVersion Include="Codebelt.Extensions.YamlDotNet" Version="10.1.5" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.7.0" />
<PackageVersion Include="Codebelt.Extensions.Xunit" Version="11.1.2" />
<PackageVersion Include="Codebelt.Extensions.YamlDotNet" Version="10.1.6" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.8.1" />
<PackageVersion Include="MinVer" Version="7.0.0" />
<PackageVersion Include="coverlet.collector" Version="10.0.1" />
<PackageVersion Include="coverlet.msbuild" Version="10.0.1" />
Expand Down
Loading