CONFIG: Update NuGet dependencies and modernise ADotNet build/PR workflows#211
Open
perirrs wants to merge 11 commits into
Open
CONFIG: Update NuGet dependencies and modernise ADotNet build/PR workflows#211perirrs wants to merge 11 commits into
perirrs wants to merge 11 commits into
Conversation
…from 10.0.8 to 10.0.9
There was a problem hiding this comment.
Pull request overview
Updates MeshClient to align with the project’s .NET 10 modernization standard by refreshing NuGet dependencies and regenerating/modernizing GitHub workflows via ADotNet v5.
Changes:
- Bumped
Microsoft.Extensions.*packages to10.0.9, updatedMicrosoft.NET.Test.Sdkto18.7.0, and updated test dependencyWireMock.Netto2.11.0. - Upgraded
NEL.MESH.InfrastructuretoADotNet 5.0.0and updated pipeline generation to newer ADotNet workflow components. - Modernized GitHub workflows (newer
checkout/setup-dotnet/github-scriptactions; PR linter enhancements incl. assignee automation).
Reviewed changes
Copilot reviewed 11 out of 11 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| NEL.MESH/NEL.MESH.csproj | Updates Microsoft.Extensions.DependencyInjection / Hosting to 10.0.9. |
| NEL.MESH.UI/NEL.MESH.UI.csproj | Updates Microsoft.Extensions.Configuration* packages to 10.0.9. |
| NEL.MESH.Tests.Unit/NEL.MESH.Tests.Unit.csproj | Updates test SDK + config packages to 10.0.9 / 18.7.0. |
| NEL.MESH.Tests.Integration/NEL.MESH.Tests.Integration.csproj | Updates test SDK + config packages to 10.0.9 / 18.7.0. |
| NEL.MESH.Tests.Integration.Witness/NEL.MESH.Tests.Integration.Witness.csproj | Updates test SDK + config packages to 10.0.9 / 18.7.0. |
| NEL.MESH.Tests.Acceptance/NEL.MESH.Tests.Acceptance.csproj | Updates test SDK + config packages and bumps WireMock.Net to 2.11.0. |
| NEL.MESH.Infrastructure/Services/ScriptGenerationService.cs | Updates ADotNet pipeline generation to newer task/job versions and PR linter jobs. |
| NEL.MESH.Infrastructure/NEL.MESH.Infrastructure.csproj | Upgrades ADotNet from 4.3.0 to 5.0.0. |
| .github/workflows/prLinter.yml | Updates actions versions, adds fork guards, and adds “Set Author As PR Assignee” job. |
| .github/workflows/build.yml | Updates checkout / setup-dotnet actions to v5 and adjusts PR trigger filtering. |
| .github/dependabot.yml | Adds FluentAssertions ignore rules. |
Comment on lines
+16
to
+18
| ignore: | ||
| - dependency-name: "FluentAssertions" | ||
| versions: ["8.x", "9.x", "10.x", "*"] |
Comment on lines
86
to
89
| permissions: | ||
| contents: read | ||
| issues: write | ||
| pull-requests: write |
Comment on lines
+171
to
+174
| permissions: | ||
| contents: read | ||
| issues: write | ||
| pull-requests: write |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Brings MeshClient up to the .NET 10 modernisation standard.
closes AB#29755
Dependency updates (CONFIG)
Workflow modernisation (CODE RUB)
Validation
Note for reviewer