chore: bump deps and update license expression#365
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR refreshes NuGet dependencies across Atom’s core libraries, modules, and test projects, and updates NuGet package metadata by switching from a packaged license file to a PackageLicenseExpression (MIT).
Changes:
- Bumped runtime dependencies (e.g., Invex.* libraries, StructuredText*,
System.IO.Abstractions) and analyzer packages (Invex.RepoUtils.PublicApiAnalyzers). - Updated test dependencies (
Verify.NUnit,TestableIO.System.IO.Abstractions.TestingHelpers) across test projects. - Updated NuGet package metadata to use
PackageLicenseExpressionand reorganized some.csprojItemGroups.
Reviewed changes
Copilot reviewed 18 out of 18 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| Directory.Build.props | Switches NuGet licensing metadata to PackageLicenseExpression (MIT). |
| src/Invex.Atom.Build/Invex.Atom.Build.csproj | Bumps Invex.* dependencies and System.IO.Abstractions; updates analyzer package version. |
| src/Invex.Atom.Workflows/Invex.Atom.Workflows.csproj | Updates Invex.StructuredText, adds/bumps runtime deps, reorganizes analyzers into a separate ItemGroup. |
| src/Invex.Atom.Tool/Invex.Atom.Tool.csproj | Bumps System.IO.Abstractions. |
| src/Invex.Atom.Module.GitVersion/Invex.Atom.Module.GitVersion.csproj | Bumps Invex.RepoUtils.PublicApiAnalyzers. |
| src/Invex.Atom.Module.GithubWorkflows/Invex.Atom.Module.GithubWorkflows.csproj | Bumps Invex.StructuredText.GithubActions and analyzer package. |
| src/Invex.Atom.Module.Dotnet/Invex.Atom.Module.Dotnet.csproj | Bumps Invex.RepoUtils.PublicApiAnalyzers. |
| src/Invex.Atom.Module.DevopsWorkflows/Invex.Atom.Module.DevopsWorkflows.csproj | Bumps Invex.StructuredText.AzureDevopsPipelines and analyzer package. |
| src/Invex.Atom.Module.AzureStorage/Invex.Atom.Module.AzureStorage.csproj | Reorganizes references and bumps analyzer package (also introduces an issue with MimeTypes asset visibility). |
| src/Invex.Atom.Module.AzureKeyVault/Invex.Atom.Module.AzureKeyVault.csproj | Bumps Invex.RepoUtils.PublicApiAnalyzers. |
| tests/Invex.Atom.Workflows.Tests/Invex.Atom.Workflows.Tests.csproj | Bumps Verify.NUnit and TestableIO.*.TestingHelpers. |
| tests/Invex.Atom.Tool.Tests/Invex.Atom.Tool.Tests.csproj | Bumps Verify.NUnit and TestableIO.*.TestingHelpers. |
| tests/Invex.Atom.TestUtils/Invex.Atom.TestUtils.csproj | Bumps TestableIO.*.TestingHelpers. |
| tests/Invex.Atom.Module.GithubWorkflows.Tests/Invex.Atom.Module.GithubWorkflows.Tests.csproj | Bumps Verify.NUnit and TestableIO.*.TestingHelpers. |
| tests/Invex.Atom.Module.Dotnet.Tests/Invex.Atom.Module.Dotnet.Tests.csproj | Bumps TestableIO.*.TestingHelpers. |
| tests/Invex.Atom.Module.DevopsWorkflows.Tests/Invex.Atom.Module.DevopsWorkflows.Tests.csproj | Bumps Verify.NUnit and TestableIO.*.TestingHelpers. |
| tests/Invex.Atom.Build.Tests/Invex.Atom.Build.Tests.csproj | Bumps Verify.NUnit and TestableIO.*.TestingHelpers. |
| tests/Invex.Atom.Build.SourceGenerators.Tests/Invex.Atom.Build.SourceGenerators.Tests.csproj | Bumps Verify.NUnit. |
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 various package dependencies across the solution to their latest versions, improves package metadata, and makes minor project file organization changes. The main focus is on keeping dependencies up-to-date for bug fixes, security, and compatibility.
Dependency updates:
Invex.FileSystem,Invex.Process, andInvex.SemanticVersiondependencies to version 1.2.0, andSystem.IO.Abstractionsto 22.2.0 inInvex.Atom.Build.csproj.Invex.StructuredText.AzureDevopsPipelinesandInvex.StructuredText.GithubActionsto 1.3.0 in their respective module projects [1] [2].Invex.StructuredTextto 1.3.0 and addedSpectre.ConsoleandSystem.IO.Abstractions22.2.0 inInvex.Atom.Workflows.csproj.MimeTypesand reorganizedInvex.RepoUtils.PublicApiAnalyzersreference inInvex.Atom.Module.AzureStorage.csproj.Analyzer and test package updates:
Invex.RepoUtils.PublicApiAnalyzersto 1.7.0 across all projects [1] [2] [3] [4] [5] [6] [7] [8].TestableIO.System.IO.Abstractions.TestingHelpersto 22.2.0 andVerify.NUnitto 31.24.0 in all test projects [1] [2] [3] [4] [5] [6] [7] [8].Project metadata improvements:
PackageLicenseExpression(MIT) inDirectory.Build.propsfor improved NuGet compliance.Project file organization:
ItemGroupsections in.csprojfiles for better clarity and separation of analyzer dependencies [1] [2].These changes ensure that all projects and tests use the latest stable dependencies and analyzers, improving reliability and maintainability.