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
6 changes: 6 additions & 0 deletions .nuget/Codebelt.SharedKernel/PackageReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version: 0.5.10
Availability: .NET 10 and .NET 9

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

Version: 0.5.9
Availability: .NET 10 and .NET 9

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

## [0.5.10] - 2026-07-26

This is a patch release that focuses on package dependency upgrades and build system improvements.

### Changed

- `Cuemon.Extensions.IO` upgraded to 10.5.5,
- `Codebelt.Extensions.Xunit.App` upgraded to 11.1.2,
- `Microsoft.NET.Test.Sdk` upgraded to 18.8.1 for improved testing infrastructure,
- `Savvyio.Domain`, `Savvyio.Extensions.Newtonsoft.Json`, and `Savvyio.Extensions.Text.Json` upgraded to 5.0.10,
- Code analyzers enabled with Recommended analysis mode and style enforcement enforced in build process,
- MinVer tag prefix configured to recognize `v`-prefixed version tags,
- nginx base image version constraint in `.docfx/Dockerfile.docfx` relaxed to allow patch-level security updates within the 1.31 minor version.

## [0.5.9] - 2026-07-02

This is a minor release that adds DocFX API documentation structure and improves CI deployment safety.
Expand Down Expand Up @@ -145,6 +159,7 @@ Purely an ALM release. No changes to the codebase.
- CoordinatedUniversalTime record in the Codebelt.SharedKernel namespace that represents an object that can be used when you need a timestamp that is based on an absolute time (UTC)
- TimeToLive record in the Codebelt.SharedKernel namespace that represents an object that can be used when issuing authentication tokens or similar (TTL)

[0.5.10]: https://github.com/codebeltnet/shared-kernel/compare/v0.5.9...v0.5.10
[0.5.9]: https://github.com/codebeltnet/shared-kernel/compare/v0.5.8...v0.5.9
[0.5.8]: https://github.com/codebeltnet/shared-kernel/compare/v0.5.7...v0.5.8
[0.5.7]: https://github.com/codebeltnet/shared-kernel/compare/v0.5.6...v0.5.7
Expand Down
9 changes: 7 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<SignAssembly Condition="('$(CI)' == 'true' OR '$(IsMainAuthor)' == 'true') AND '$(SkipSignAssembly)' == 'false'">true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)sharedkernel.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 All @@ -57,7 +62,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
12 changes: 6 additions & 6 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="Cuemon.Extensions.IO" Version="10.5.4" />
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="11.1.1" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.7.0" />
<PackageVersion Include="Cuemon.Extensions.IO" Version="10.5.5" />
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="11.1.2" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.8.1" />
<PackageVersion Include="MinVer" Version="7.0.0" />
<PackageVersion Include="Savvyio.Domain" Version="5.0.9" />
<PackageVersion Include="Savvyio.Extensions.Newtonsoft.Json" Version="5.0.9" />
<PackageVersion Include="Savvyio.Extensions.Text.Json" Version="5.0.9" />
<PackageVersion Include="Savvyio.Domain" Version="5.0.10" />
<PackageVersion Include="Savvyio.Extensions.Newtonsoft.Json" Version="5.0.10" />
<PackageVersion Include="Savvyio.Extensions.Text.Json" Version="5.0.10" />
<PackageVersion Include="coverlet.collector" Version="10.0.1" />
<PackageVersion Include="coverlet.msbuild" Version="10.0.1" />
<PackageVersion Include="xunit.v3" Version="3.2.2" />
Expand Down
4 changes: 2 additions & 2 deletions src/Codebelt.SharedKernel/Security/Secret.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ public override string ToString()
}

/// <summary>
/// Converts this instance to its equivalent <see cref="T:byte[]"/> representation.
/// Converts this instance to its equivalent <see cref="byte"/>[] representation.
/// </summary>
/// <param name="setup">The <see cref="EncodingOptions"/> which may be configured.</param>
/// <returns>A <see cref="T:byte[]"/> that is equivalent to this instance.</returns>
/// <returns>A <see cref="byte"/>[] that is equivalent to this instance.</returns>
public byte[] ToByteArray(Action<EncodingOptions> setup = null)
{
return ToString().ToByteArray(setup);
Expand Down
Loading