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
1 change: 1 addition & 0 deletions .github/scripts/bump-nuget.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"xunit": ["Codebelt.Extensions.Xunit"],
"benchmarkdotnet": ["Codebelt.Extensions.BenchmarkDotNet"],
"bootstrapper": ["Codebelt.Bootstrapper"],
"carter": ["Codebelt.Extensions.Carter"],

Check warning on line 38 in .github/scripts/bump-nuget.py

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Change or remove duplicates of this key.

See more on https://sonarcloud.io/project/issues?id=sharedkernel&issues=AZ06G8YkPU4l3pg_b2Nq&open=AZ06G8YkPU4l3pg_b2Nq&pullRequest=25
"newtonsoft-json": [
"Codebelt.Extensions.Newtonsoft.Json",
"Codebelt.Extensions.AspNetCore.Newtonsoft.Json",
Expand All @@ -53,6 +53,7 @@
"swashbuckle-aspnetcore": ["Codebelt.Extensions.Swashbuckle"],
"savvyio": ["Savvyio."],
"shared-kernel": ["Codebelt.SharedKernel"],
"carter": ["Codebelt.Extensions.Carter"],
}


Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
if: github.event_name != 'pull_request'
name: call-nuget
needs: [build, pack, test_linux, test_windows, sonarcloud, codecov, codeql]
uses: codebeltnet/jobs-nuget-push/.github/workflows/default.yml@v2
uses: codebeltnet/jobs-nuget-push/.github/workflows/default.yml@v3
with:
version: ${{ needs.build.outputs.version }}
environment: Production
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/service-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
for f in .nuget/*/PackageReleaseNotes.txt; do
[ -f "$f" ] || continue
TFM=$(grep -m1 "^Availability:" "$f" | sed 's/Availability: //' || echo ".NET 10, .NET 9 and .NET Standard 2.0")
ENTRY="Version: ${NEW}\nAvailability: ${TFM}\n \n# ALM\n- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)\n \n"
ENTRY="Version: ${NEW}\nAvailability: ${TFM}\n\n# ALM\n- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)\n\n"
{ printf "$ENTRY"; cat "$f"; } > "$f.tmp" && mv "$f.tmp" "$f"
done

Expand Down
65 changes: 35 additions & 30 deletions .nuget/Codebelt.SharedKernel/PackageReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,94 +1,100 @@
Version: 0.5.5
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.4
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.3
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.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: 0.5.1
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.0
Availability: .NET 10 and .NET 9
 

# ALM
- ADDED Support for TFM .NET 10 (LTS)
- REMOVED Support for TFM .NET 8 (LTS)
- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)
 

Version: 0.4.6
Availability: .NET 9 and .NET 8
 

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

Version: 0.4.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: 0.4.4
Availability: .NET 9 and .NET 8
 

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

Version: 0.4.3
Availability: .NET 9 and .NET 8
 

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

Version: 0.4.2
Availability: .NET 9 and .NET 8
 

# ALM
- CHANGED Dependencies to latest and greatest with respect to TFMs
 

Version: 0.4.1
Availability: .NET 9 and .NET 8
 

# ALM
- CHANGED Dependencies to latest and greatest with respect to TFMs
 

Version: 0.4.0
Availability: .NET 9 and .NET 8
 

# ALM
- CHANGED Dependencies to latest and greatest with respect to TFMs
 

Version: 0.3.0
Availability: .NET 8
 

# ALM
- CHANGED Dependencies to latest and greatest with respect to TFMs
 

Version: 0.2.0
Availability: .NET 8
 

# New Features
- ADDED Token record in the Codebelt.SharedKernel namespace that represents an object that can be used for storing sensitive data
- ADDED TokenOptions class in the Codebelt.SharedKernel namespace that specifies options that is related to the Token record
- ADDED CorrelationId record in the Codebelt.SharedKernel namespace that represents an object that can be used as unique identifier that help you trace requests across multiple services in a distributed system
 

Version: 0.1.0
Availability: .NET 8
 

# New Features
- ADDED AccessKey record in the Codebelt.SharedKernel.Security namespace that represents an object that can be used for API key-based authentication and similar
- ADDED AccessKeyExtensions class in the Codebelt.SharedKernel.Security namespace that consist of extension methods for the AccessKey record: IsValid
Expand All @@ -98,4 +104,3 @@ Availability: .NET 8
- ADDED ComparableValueObject class in the Codebelt.SharedKernel namespace that provides an implementation of SingleValueObject{T} tailored for handling a single value that implements the IComparable{T} interface
- ADDED 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)
- ADDED TimeToLive record in the Codebelt.SharedKernel namespace that represents an object that can be used when issuing authentication tokens or similar (TTL)

29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ 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.5] - 2026-03-29

This is a service update that focuses on package dependencies.

### Changed

- Dependencies upgraded: `Cuemon.Extensions.IO` to 10.5.0, `Codebelt.Extensions.Xunit.App` to 11.0.8, `Savvyio.Domain`, `Savvyio.Extensions.Newtonsoft.Json`, and `Savvyio.Extensions.Text.Json` to 5.0.5, and `coverlet.collector`/`coverlet.msbuild` to 8.0.1,
- `Directory.Build.targets` now reads `PackageReleaseNotes.txt` via `System.IO.File.ReadAllText` instead of `ReadLinesFromFile`, preserving blank lines in NuGet package release notes,
- `testenvironments.json` Docker test environment split into dedicated `.NET 9` and `.NET 10` entries using versioned image tags (`:9` and `:10`) instead of a single combined image,
- `service-update.yml` fixed spurious trailing whitespace in the `ENTRY` bash template for the service-update workflow,
- `bump-nuget.py` extended `SOURCE_PACKAGE_MAP` with the `carter` → `Codebelt.Extensions.Carter` package mapping.

## [0.5.4] - 2026-02-28

This is a service update that focuses on package dependencies.
Expand Down Expand Up @@ -86,3 +98,20 @@ Purely an ALM release. No changes to the codebase.
- ComparableValueObject class in the Codebelt.SharedKernel namespace that provides an implementation of SingleValueObject{T} tailored for handling a single value that implements the IComparable{T} interface
- 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.5]: https://github.com/codebeltnet/shared-kernel/compare/v0.5.4...v0.5.5
[0.5.4]: https://github.com/codebeltnet/shared-kernel/compare/v0.5.3...v0.5.4
[0.5.3]: https://github.com/codebeltnet/shared-kernel/compare/v0.5.2...v0.5.3
[0.5.2]: https://github.com/codebeltnet/shared-kernel/compare/v0.5.1...v0.5.2
[0.5.1]: https://github.com/codebeltnet/shared-kernel/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/codebeltnet/shared-kernel/compare/v0.4.6...v0.5.0
[0.4.6]: https://github.com/codebeltnet/shared-kernel/compare/v0.4.5...v0.4.6
[0.4.5]: https://github.com/codebeltnet/shared-kernel/compare/v0.4.4...v0.4.5
[0.4.4]: https://github.com/codebeltnet/shared-kernel/compare/v0.4.3...v0.4.4
[0.4.3]: https://github.com/codebeltnet/shared-kernel/compare/v0.4.2...v0.4.3
[0.4.2]: https://github.com/codebeltnet/shared-kernel/compare/v0.4.1...v0.4.2
[0.4.1]: https://github.com/codebeltnet/shared-kernel/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/codebeltnet/shared-kernel/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/codebeltnet/shared-kernel/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/codebeltnet/shared-kernel/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/codebeltnet/shared-kernel/releases/tag/v0.1.0
5 changes: 1 addition & 4 deletions Directory.Build.targets
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
<Project>
<Target Name="PreparePackageReleaseNotesFromFile" BeforeTargets="GenerateNuspec" Condition="'$(IsTestProject)' == 'false' AND Exists('$(PackageReleaseNotesFile)')">
<ReadLinesFromFile File="$(PackageReleaseNotesFile)">
<Output TaskParameter="Lines" ItemName="PackageReleaseNotesLines"/>
</ReadLinesFromFile>
<PropertyGroup>
<PackageReleaseNotes>@(PackageReleaseNotesLines, '%0A')</PackageReleaseNotes>
<PackageReleaseNotes>$([System.IO.File]::ReadAllText('$(PackageReleaseNotesFile)'))</PackageReleaseNotes>
</PropertyGroup>
</Target>

Expand Down
14 changes: 7 additions & 7 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="Cuemon.Extensions.IO" Version="10.4.0" />
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="11.0.7" />
<PackageVersion Include="Cuemon.Extensions.IO" Version="10.5.0" />
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="11.0.8" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageVersion Include="MinVer" Version="7.0.0" />
<PackageVersion Include="Savvyio.Domain" Version="5.0.4" />
<PackageVersion Include="Savvyio.Extensions.Newtonsoft.Json" Version="5.0.4" />
<PackageVersion Include="Savvyio.Extensions.Text.Json" Version="5.0.4" />
<PackageVersion Include="coverlet.collector" Version="8.0.0" />
<PackageVersion Include="coverlet.msbuild" Version="8.0.0" />
<PackageVersion Include="Savvyio.Domain" Version="5.0.5" />
<PackageVersion Include="Savvyio.Extensions.Newtonsoft.Json" Version="5.0.5" />
<PackageVersion Include="Savvyio.Extensions.Text.Json" Version="5.0.5" />
<PackageVersion Include="coverlet.collector" Version="8.0.1" />
<PackageVersion Include="coverlet.msbuild" Version="8.0.1" />
<PackageVersion Include="xunit.v3" Version="3.2.2" />
<PackageVersion Include="xunit.v3.runner.console" Version="3.2.2" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5" />
Expand Down
9 changes: 7 additions & 2 deletions testenvironments.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@
"wslDistribution": "Ubuntu-24.04"
},
{
"name": "Docker-Ubuntu",
"name": "Docker-Ubuntu (net9)",
"type": "docker",
"dockerImage": "codebeltnet/ubuntu-testrunner:net8.0.418-9.0.311-10.0.103"
"dockerImage": "codebeltnet/ubuntu-testrunner:9"
},
{
"name": "Docker-Ubuntu (net10)",
"type": "docker",
"dockerImage": "codebeltnet/ubuntu-testrunner:10"
}
]
}
Loading