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.4-alpine
ARG NGINX_VERSION=1.29.5-alpine

FROM --platform=$BUILDPLATFORM nginx:${NGINX_VERSION} AS base
RUN rm -rf /usr/share/nginx/html/*
Expand Down
38 changes: 30 additions & 8 deletions .github/workflows/ci-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,14 @@ jobs:
name: call-build
strategy:
matrix:
arch: [X64, ARM64]
configuration: [Debug, Release]
uses: codebeltnet/jobs-dotnet-build/.github/workflows/default.yml@v3
with:
configuration: ${{ matrix.configuration }}
strong-name-key-filename: sharedkernel.snk
runs-on: ${{ matrix.arch == 'ARM64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
upload-build-artifact-name: build-${{ matrix.configuration }}-${{ matrix.arch }}
secrets: inherit

pack:
Expand All @@ -38,26 +41,45 @@ jobs:
with:
configuration: ${{ matrix.configuration }}
version: ${{ needs.build.outputs.version }}
download-build-artifact-pattern: build-${{ matrix.configuration }}-X64

test:
name: call-test
test_linux:
name: call-test-linux
needs: [build]
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, windows-2025, ubuntu-24.04-arm, windows-11-arm]
arch: [X64, ARM64]
configuration: [Debug, Release]
uses: codebeltnet/jobs-dotnet-test/.github/workflows/default.yml@v3
with:
runs-on: ${{ matrix.arch == 'ARM64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
configuration: ${{ matrix.configuration }}
runs-on: ${{ matrix.os }}
build-switches: -p:SkipSignAssembly=true
restore: true
build: true # required for xunitv3
download-pattern: build-${{ matrix.configuration }}-${{ matrix.arch }}

test_windows:
name: call-test-windows
needs: [build]
strategy:
fail-fast: false
matrix:
arch: [X64, ARM64]
configuration: [Debug, Release]
uses: codebeltnet/jobs-dotnet-test/.github/workflows/default.yml@v3
with:
runs-on: ${{ matrix.arch == 'ARM64' && 'windows-11-arm' || 'windows-2025' }}
configuration: ${{ matrix.configuration }}
build-switches: -p:SkipSignAssembly=true
restore: true
build: true # required for xunitv3
download-pattern: build-${{ matrix.configuration }}-${{ matrix.arch }}

sonarcloud:
name: call-sonarcloud
needs: [build,test]
needs: [build,test_linux,test_windows]
uses: codebeltnet/jobs-sonarcloud/.github/workflows/default.yml@v3
with:
organization: geekle
Expand All @@ -67,23 +89,23 @@ jobs:

codecov:
name: call-codecov
needs: [build,test]
needs: [build,test_linux,test_windows]
uses: codebeltnet/jobs-codecov/.github/workflows/default.yml@v1
with:
repository: codebeltnet/shared-kernel
secrets: inherit

codeql:
name: call-codeql
needs: [build,test]
needs: [build,test_linux,test_windows]
uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v3
permissions:
security-events: write

deploy:
if: github.event_name != 'pull_request'
name: call-nuget
needs: [build, pack, test, sonarcloud, codecov, codeql]
needs: [build, pack, test_linux, test_windows, sonarcloud, codecov, codeql]
uses: codebeltnet/jobs-nuget-push/.github/workflows/default.yml@v2
with:
version: ${{ needs.build.outputs.version }}
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.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

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.

## [0.5.2] - 2026-02-15

This is a service update that focuses on package dependencies.

## [0.5.1] - 2026-01-24

This is a service update that focuses on package dependencies.
Expand Down
12 changes: 6 additions & 6 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.1.2" />
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="11.0.4" />
<PackageVersion Include="Cuemon.Extensions.IO" Version="10.2.1" />
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="11.0.5" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageVersion Include="MinVer" Version="7.0.0" />
<PackageVersion Include="Savvyio.Domain" Version="5.0.1" />
<PackageVersion Include="Savvyio.Extensions.Newtonsoft.Json" Version="5.0.1" />
<PackageVersion Include="Savvyio.Extensions.Text.Json" Version="5.0.1" />
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
<PackageVersion Include="coverlet.msbuild" Version="6.0.4" />
<PackageVersion Include="Savvyio.Extensions.Newtonsoft.Json" Version="5.0.2" />
<PackageVersion Include="Savvyio.Extensions.Text.Json" Version="5.0.2" />
<PackageVersion Include="coverlet.collector" Version="8.0.0" />
<PackageVersion Include="coverlet.msbuild" Version="8.0.0" />
Comment on lines +13 to +14
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🌐 Web query:

coverlet 8.0.0 breaking changes from version 6.0

💡 Result:

Coverlet v8.0.0 introduces (relative to v6.0.x) these practical breaking changes:

  • Minimum .NET raised to .NET 8 (LTS): v8.0.0 “upgraded minimum required .NET SDK and runtime to .NET 8.0 LTS” (explicitly called out as a Breaking Change). If your build agents/dev machines are on .NET 6/7, you must upgrade to .NET 8.0+. [1]
  • If you consume Coverlet as components/tools, they now expect .NET 8-era tooling (per project docs):
    • coverlet.collector: requires .NET 8 SDK 8.0.112+ and Microsoft.NET.Test.Sdk 17.12.0+. [2]
    • coverlet.console (.NET global tool): requires .NET 8.0 or above. [2]
  • coverlet.core moved to net8.0 and dropped Newtonsoft.Json (can break you if you reference coverlet.core directly from a project targeting older TFMs, or relied on the transitive Newtonsoft dependency). [1]

Note: the repo tags/releases jump from 6.0.4 to 8.0.0 (no 7.x release line to account for). [1]


Verify .NET 8 SDK compatibility before upgrading coverlet to 8.0.0.

Coverlet 8.0.0 raises the minimum required .NET to 8.0 LTS and drops support for .NET 6/7. Additionally:

  • coverlet.collector requires .NET 8 SDK 8.0.112+ and Microsoft.NET.Test.Sdk 17.12.0+
  • coverlet.core now targets only net8.0 and no longer includes Newtonsoft.Json (transitive dependency removed)

Confirm your build agents and development environment run .NET 8.0+ before proceeding.

🤖 Prompt for AI Agents
In `@Directory.Packages.props` around lines 13 - 14, The PackageVersion entries
for coverlet.collector and coverlet.msbuild were bumped to 8.0.0 but Coverlet 8
requires .NET 8 and specific SDK/test SDK versions; verify your CI/build agents
and developer machines are running .NET SDK 8.0.112+ and update
Microsoft.NET.Test.Sdk to 17.12.0+ if needed, and confirm any projects depending
on coverlet.core can target net8.0 (or add a compatible coverlet.core) — if you
cannot guarantee those upgrades, revert the PackageVersion changes for
coverlet.collector/coverlet.msbuild to the previous compatible version instead
of 8.0.0.

<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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Shared Kernel API by Codebelt

[![Shared Kernel CI/CD Pipeline](https://github.com/codebeltnet/shared-kernel/actions/workflows/pipelines.yml/badge.svg)](https://github.com/codebeltnet/shared-kernel/actions/workflows/pipelines.yml) [![codecov](https://codecov.io/gh/codebeltnet/shared-kernel/graph/badge.svg?token=xdDAkBq1s3)](https://codecov.io/gh/codebeltnet/shared-kernel) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=sharedkernel&metric=alert_status)](https://sonarcloud.io/dashboard?id=sharedkernel) [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=sharedkernel&metric=sqale_rating)](https://sonarcloud.io/dashboard?id=sharedkernel) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=sharedkernel&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=sharedkernel) [![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=sharedkernel&metric=security_rating)](https://sonarcloud.io/dashboard?id=sharedkernel) [![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/codebeltnet/shared-kernel/badge)](https://scorecard.dev/viewer/?uri=github.com/codebeltnet/shared-kernel)
[![Shared Kernel CI/CD Pipeline](https://github.com/codebeltnet/shared-kernel/actions/workflows/ci-pipeline.yml/badge.svg)](https://github.com/codebeltnet/shared-kernel/actions/workflows/ci-pipeline.yml) [![codecov](https://codecov.io/gh/codebeltnet/shared-kernel/graph/badge.svg?token=xdDAkBq1s3)](https://codecov.io/gh/codebeltnet/shared-kernel) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=sharedkernel&metric=alert_status)](https://sonarcloud.io/dashboard?id=sharedkernel) [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=sharedkernel&metric=sqale_rating)](https://sonarcloud.io/dashboard?id=sharedkernel) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=sharedkernel&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=sharedkernel) [![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=sharedkernel&metric=security_rating)](https://sonarcloud.io/dashboard?id=sharedkernel) [![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/codebeltnet/shared-kernel/badge)](https://scorecard.dev/viewer/?uri=github.com/codebeltnet/shared-kernel)

### ℹ️ About

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.417-9.0.309-10.0.102"
"dockerImage": "codebeltnet/ubuntu-testrunner:net8.0.418-9.0.311-10.0.103"
}
]
}
Loading