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
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.28.0-alpine AS base
ARG NGINX_VERSION=1.29.0-alpine
Copy link

Copilot AI Jul 10, 2025

Choose a reason for hiding this comment

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

[nitpick] Consider moving the ARG NGINX_VERSION declaration before the first FROM to keep all build arguments centralized and ensure consistency if additional stages are added.

Copilot uses AI. Check for mistakes.

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.28.0-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
7 changes: 5 additions & 2 deletions .github/workflows/pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@ 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:
projects: src/**/*.csproj
organization: geekle
projectKey: globalization
version: ${{ needs.build.outputs.version }}
Expand All @@ -79,7 +80,9 @@ 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
with:
projects: src/**/*.csproj

deploy:
if: github.event_name != 'pull_request'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
Version 9.0.4
Version 9.0.5
Availability: .NET 9, .NET 8 and .NET Standard 2.0
Comment on lines +1 to +2
Copy link

Copilot AI Jul 10, 2025

Choose a reason for hiding this comment

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

[nitpick] Remove the leading BOM or hidden character before Version 9.0.5 to avoid encoding issues and ensure consistent formatting across environments.

Suggested change
Version 9.0.5
Availability: .NET 9, .NET 8 and .NET Standard 2.0
Version 9.0.5
Availability: .NET 9, .NET 8 and .NET Standard 2.0

Copilot uses AI. Check for mistakes.

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

Version 9.0.4
Availability: .NET 9, .NET 8 and .NET Standard 2.0

# ALM
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ For more details, please refer to `PackageReleaseNotes.txt` on a per assembly ba
> [!NOTE]
> Changelog entries prior to version 9.0.1 was migrated from previous versions of Cuemon.Extensions.Globalization.

## [9.0.5] - 2025-07-11

This is a service update that focuses on package dependencies.

## [9.0.4] - 2025-06-15

This is a service update that focuses on package dependencies.
Expand Down
4 changes: 2 additions & 2 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="Codebelt.Extensions.Xunit" Version="10.0.3" />
<PackageVersion Include="Codebelt.Extensions.YamlDotNet" Version="9.0.4" />
<PackageVersion Include="Codebelt.Extensions.Xunit" Version="10.0.4" />
<PackageVersion Include="Codebelt.Extensions.YamlDotNet" Version="9.0.5" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageVersion Include="MinVer" Version="6.0.0" />
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
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.411-9.0.301"
"dockerImage": "gimlichael/ubuntu-testrunner:net8.0.412-9.0.302"
Copy link

Copilot AI Jul 10, 2025

Choose a reason for hiding this comment

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

For improved reproducibility and security, consider pinning the Docker image to a specific digest instead of a mutable tag.

Suggested change
"dockerImage": "gimlichael/ubuntu-testrunner:net8.0.412-9.0.302"
"dockerImage": "gimlichael/ubuntu-testrunner@sha256:<digest>"

Copilot uses AI. Check for mistakes.
}
]
}
Loading