Skip to content

Commit 437fa9e

Browse files
authored
V9.0.5/service update (#10)
💬 updated community health pages ⬆️ bump dependencies 📦 updated NuGet package definition
1 parent 49a207d commit 437fa9e

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

.docfx/Dockerfile.docfx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
FROM --platform=$BUILDPLATFORM nginx:1.28.0-alpine AS base
1+
ARG NGINX_VERSION=1.29.0-alpine
2+
3+
FROM --platform=$BUILDPLATFORM nginx:${NGINX_VERSION} AS base
24
RUN rm -rf /usr/share/nginx/html/*
35

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

11-
FROM nginx:1.28.0-alpine AS final
13+
FROM nginx:${NGINX_VERSION} AS final
1214
WORKDIR /usr/share/nginx/html
1315
COPY --from=build /build/docfx/wwwroot /usr/share/nginx/html
1416

.github/workflows/pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
sonarcloud:
6363
name: call-sonarcloud
6464
needs: [build,test]
65-
uses: codebeltnet/jobs-sonarcloud/.github/workflows/default.yml@v1
65+
uses: codebeltnet/jobs-sonarcloud/.github/workflows/default.yml@v2
6666
with:
6767
organization: geekle
6868
projectKey: unitify
@@ -80,7 +80,7 @@ jobs:
8080
codeql:
8181
name: call-codeql
8282
needs: [build,test]
83-
uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v1
83+
uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v2
8484
permissions:
8585
security-events: write
8686

.nuget/Codebelt.Unitify/PackageReleaseNotes.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Version 9.0.5
2+
Availability: .NET 9 and .NET 8
3+
 
4+
# ALM
5+
- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)
6+
 
17
Version 9.0.4
28
Availability: .NET 9 and .NET 8
39

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ For more details, please refer to `PackageReleaseNotes.txt` on a per assembly ba
77
> [!NOTE]
88
> Changelog entries prior to version 9.0.0 was migrated from previous versions of [Cuemon.Core](https://github.com/gimlichael/Cuemon/commit/83e0c7af2cdaa07351e878fa7276558838f2e7e6).
99
10+
## [9.0.5] - 2025-07-11
11+
12+
This is a service update that focuses on package dependencies.
13+
1014
## [9.0.4] - 2025-06-16
1115

1216
This is a service update that focuses on package dependencies.

Directory.Packages.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="10.0.3" />
7-
<PackageVersion Include="Cuemon.Core" Version="9.0.6" />
6+
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="10.0.4" />
7+
<PackageVersion Include="Cuemon.Core" Version="9.0.7" />
88
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
99
<PackageVersion Include="MinVer" Version="6.0.0" />
1010
<PackageVersion Include="coverlet.collector" Version="6.0.4" />

testenvironments.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{
1010
"name": "Docker-Ubuntu",
1111
"type": "docker",
12-
"dockerImage": "gimlichael/ubuntu-testrunner:net8.0.411-9.0.301"
12+
"dockerImage": "gimlichael/ubuntu-testrunner:net8.0.412-9.0.302"
1313
}
1414
]
1515
}

0 commit comments

Comments
 (0)