chore: update deps - #19
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates solution dependencies (primarily Invex.RepoUtils packages and Verify.NUnit) and adds a global.json intended to standardize the .NET SDK used for builds across the repo.
Changes:
- Bumps
Invex.RepoUtils.PublicApiAnalyzersto1.9.0in the three library projects. - Bumps
Invex.RepoUtils.TestUtilsto1.9.0andVerify.NUnitto31.28.0across the three test projects. - Adds
global.jsonto pin the SDK and updates_atomtoInvex.RepoUtils.Atom.Module1.9.0.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| tests/Invex.StructuredText.Tests/Invex.StructuredText.Tests.csproj | Updates test utility package versions (Invex.RepoUtils.TestUtils, Verify.NUnit). |
| tests/Invex.StructuredText.GithubActions.Tests/Invex.StructuredText.GithubActions.Tests.csproj | Updates test utility package versions (Invex.RepoUtils.TestUtils, Verify.NUnit). |
| tests/Invex.StructuredText.AzureDevopsPipelines.Tests/Invex.StructuredText.AzureDevopsPipelines.Tests.csproj | Updates test utility package versions (Invex.RepoUtils.TestUtils, Verify.NUnit). |
| src/Invex.StructuredText/Invex.StructuredText.csproj | Updates Invex.RepoUtils.PublicApiAnalyzers to 1.9.0. |
| src/Invex.StructuredText.GithubActions/Invex.StructuredText.GithubActions.csproj | Updates Invex.RepoUtils.PublicApiAnalyzers to 1.9.0. |
| src/Invex.StructuredText.AzureDevopsPipelines/Invex.StructuredText.AzureDevopsPipelines.csproj | Updates Invex.RepoUtils.PublicApiAnalyzers to 1.9.0. |
| global.json | Introduces SDK pinning/roll-forward configuration (currently with an invalid SDK version format). |
| _atom/_atom.csproj | Updates Atom module dependency (Invex.RepoUtils.Atom.Module) to 1.9.0. |
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.
This pull request updates several package dependencies across the solution to their latest versions and introduces a new
global.jsonfile to standardize the .NET SDK version. The main focus is on upgradingInvex.RepoUtilspackages and related test utilities, as well as ensuring all projects use the latest compatible analyzer and test packages.Dependency updates:
Invex.RepoUtils.PublicApiAnalyzersfrom version 1.8.0 to 1.9.0 inInvex.StructuredText,Invex.StructuredText.GithubActions, andInvex.StructuredText.AzureDevopsPipelinesprojects. [1] [2] [3]Invex.RepoUtils.TestUtilsfrom version 1.8.0 to 1.9.0 in the test projects. [1] [2] [3]Invex.RepoUtils.Atom.Moduledependency from version 1.8.0 to 1.9.0 in_atom/_atom.csproj.Verify.NUnitfrom version 31.27.0 to 31.28.0 in all test projects. [1] [2] [3]Build tooling:
global.jsonfile to enforce .NET SDK version 10.0.0 and configure SDK roll-forward behavior.