Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
6 changes: 4 additions & 2 deletions .docfx/Dockerfile.docfx
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM --platform=$BUILDPLATFORM nginx:1.27.5-alpine AS base
ARG NGINX_VERSION=1.29-alpine

FROM --platform=$BUILDPLATFORM nginx:${NGINX_VERSION} AS base
RUN rm -rf /usr/share/nginx/html/*

FROM --platform=$BUILDPLATFORM codebeltnet/docfx:2.78.3 AS build
Expand All @@ -8,7 +10,7 @@ ADD [".", "docfx"]
RUN cd docfx; \
docfx build

FROM nginx:1.27.5-alpine AS final
FROM nginx:${NGINX_VERSION} AS final
WORKDIR /usr/share/nginx/html
COPY --from=build /build/docfx/wwwroot /usr/share/nginx/html

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
sonarcloud:
name: call-sonarcloud
needs: [build,test]
uses: codebeltnet/jobs-sonarcloud/.github/workflows/default.yml@v1
uses: codebeltnet/jobs-sonarcloud/.github/workflows/default.yml@v2
with:
organization: geekle
projectKey: sharedkernel
Expand All @@ -79,7 +79,7 @@ jobs:
codeql:
name: call-codeql
needs: [build,test]
uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v1
uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v2
permissions:
security-events: write

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.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

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.4.4] - 2025-08-26

This is a service update that focuses on package dependencies.

## [0.4.3] - 2025-05-29

This is a service update that focuses on package dependencies.
Expand Down
14 changes: 7 additions & 7 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="Cuemon.Extensions.IO" Version="9.0.5" />
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="10.0.1" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.14.0" />
<PackageVersion Include="Cuemon.Extensions.IO" Version="9.0.8" />
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="10.0.5" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageVersion Include="MinVer" Version="6.0.0" />
<PackageVersion Include="Savvyio.Domain" Version="4.0.3" />
<PackageVersion Include="Savvyio.Extensions.Newtonsoft.Json" Version="4.0.3" />
<PackageVersion Include="Savvyio.Extensions.Text.Json" Version="4.0.3" />
<PackageVersion Include="Savvyio.Domain" Version="4.2.0" />
<PackageVersion Include="Savvyio.Extensions.Newtonsoft.Json" Version="4.2.0" />
<PackageVersion Include="Savvyio.Extensions.Text.Json" Version="4.2.0" />
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
<PackageVersion Include="coverlet.msbuild" Version="6.0.4" />
<PackageVersion Include="xunit" Version="2.9.3" />
<PackageVersion Include="xunit.runner.console" Version="2.9.3" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.0" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.4" />
</ItemGroup>
</Project>
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.409-9.0.300"
"dockerImage": "gimlichael/ubuntu-testrunner:net8.0.413-9.0.304"
}
]
}
Loading