chore(deps): Bump the nuget-dependencies group with 10 updates#238
Merged
JerrettDavis merged 2 commits intoJul 21, 2026
Merged
Conversation
Bumps Microsoft.CodeAnalysis.CSharp from 5.3.0 to 5.6.0 Bumps Microsoft.CodeAnalysis.CSharp.Workspaces from 5.3.0 to 5.6.0 Bumps Microsoft.Extensions.FileSystemGlobbing from 10.0.9 to 10.0.10 Bumps Microsoft.NET.Test.Sdk from 18.7.0 to 18.8.1 Bumps PatternKit.Core from 0.147.8 to 0.147.12 Bumps System.CommandLine from 2.0.0-beta4.22272.1 to 2.0.0-rc.2.25502.107 Bumps System.Reflection.MetadataLoadContext from 10.0.9 to 10.0.10 Bumps System.Text.Json from 10.0.9 to 10.0.10 Bumps TinyBDD from 0.19.27 to 0.19.29 Bumps TinyBDD.Xunit from 0.19.27 to 0.19.29 --- updated-dependencies: - dependency-name: Microsoft.CodeAnalysis.CSharp dependency-version: 5.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-dependencies - dependency-name: Microsoft.CodeAnalysis.CSharp dependency-version: 5.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-dependencies - dependency-name: Microsoft.CodeAnalysis.CSharp dependency-version: 5.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-dependencies - dependency-name: Microsoft.CodeAnalysis.CSharp dependency-version: 5.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-dependencies - dependency-name: Microsoft.CodeAnalysis.CSharp.Workspaces dependency-version: 5.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-dependencies - dependency-name: Microsoft.Extensions.FileSystemGlobbing dependency-version: 10.0.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.NET.Test.Sdk dependency-version: 18.8.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-dependencies - dependency-name: PatternKit.Core dependency-version: 0.147.12 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: System.CommandLine dependency-version: 2.0.0-rc.2.25502.107 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: System.Reflection.MetadataLoadContext dependency-version: 10.0.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: System.Text.Json dependency-version: 10.0.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: System.Text.Json dependency-version: 10.0.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: TinyBDD dependency-version: 0.19.29 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: TinyBDD.Xunit dependency-version: 0.19.29 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
Dependency ReviewThe following issues were found:
License IssuesWrapGod.Abstractions/WrapGod.Abstractions.csproj
WrapGod.Analyzers/WrapGod.Analyzers.csproj
WrapGod.Cli/WrapGod.Cli.csproj
WrapGod.Extractor/WrapGod.Extractor.csproj
WrapGod.Generator/WrapGod.Generator.csproj
WrapGod.Manifest/WrapGod.Manifest.csproj
WrapGod.Migration.Engine/WrapGod.Migration.Engine.csproj
WrapGod.Tests/WrapGod.Tests.csproj
examples/WrapGod.WorkflowDemo/WrapGod.WorkflowDemo.csproj
OpenSSF ScorecardScorecard details
Scanned Files
|
Test Results920 tests 919 ✅ 2m 2s ⏱️ Results for commit fbe39c8. ♻️ This comment has been updated with latest results. |
The nuget-dependencies group bump raised System.CommandLine from
2.0.0-beta4.22272.1 to 2.0.0-rc.2.25502.107, whose API changed in
breaking ways. Migrate all CLI command definitions (main + examples)
to the rc API while preserving CLI behavior exactly (same commands,
options, arguments, aliases, defaults, help text, exit codes).
API changes handled:
- Argument<T>(name, description) / (name, () => default, description)
-> Argument<T>(name) { Description, DefaultValueFactory = _ => ... }.
- Option<T>(["--x","-a"], description) -> Option<T>("--x", "-a")
{ Description }; primary name first, aliases as params (each must
carry its own leading dashes).
- Option<T>(name, () => default, description) default factory
-> DefaultValueFactory = _ => default (Func<ArgumentResult,T>).
- Option.IsRequired -> Option.Required.
- command.SetHandler(handler, symbols...) / SetHandler(ctx => ...)
-> command.SetAction(parseResult => ...) with the appropriate
sync/async(+CancellationToken) overload; context.ParseResult
.GetValueForOption/Argument -> parseResult.GetValue; context.ExitCode
-> action return value (commands that used Environment.ExitCode keep
doing so); context.GetCancellationToken() -> the action's ct param.
- rootCommand.InvokeAsync(args) -> rootCommand.Parse(args).InvokeAsync().
Tests:
- Added WrapGod.Tests/TestCliInvocation.cs: a test-only shim restoring
the removed Command.InvokeAsync(string/string[]) ergonomics via
Parse(args).InvokeAsync(config). The old overloads implicitly applied
UseDefaults(), so the shim adds a recursive HelpOption when absent and
binds InvocationConfiguration Output/Error to the current Console
writers, keeping captured stdout/stderr and --help exit codes intact.
- Regenerated 4 cli-help snapshots: Option.Name now includes the leading
"--" and Aliases no longer duplicate it, and RootCommand now enumerates
its --help/--version options. Same flags/aliases/arities/descriptions;
representation only.
Examples:
- WrapGod.WorkflowDemo pinned Microsoft.CodeAnalysis.CSharp(.Workspaces)
5.3.0 while the group bump moved the main projects (transitively
referenced) to 5.6.0, causing NU1605 downgrade-as-error in
build-examples. Aligned the direct references to 5.6.0.
Local build: dotnet build (Release) — 15 projects, 0 errors/warnings;
examples slnx — 29 projects, 0 errors. Local tests: 919 passed,
1 skipped, 0 failed.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
JerrettDavis
deleted the
dependabot/nuget/WrapGod.Abstractions/nuget-dependencies-beb79b4f6d
branch
July 21, 2026 18:05
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.
Updated Microsoft.CodeAnalysis.CSharp from 5.3.0 to 5.6.0.
Release notes
Sourced from Microsoft.CodeAnalysis.CSharp's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.CodeAnalysis.CSharp.Workspaces from 5.3.0 to 5.6.0.
Updated Microsoft.Extensions.FileSystemGlobbing from 10.0.9 to 10.0.10.
Release notes
Sourced from Microsoft.Extensions.FileSystemGlobbing's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.NET.Test.Sdk from 18.7.0 to 18.8.1.
Release notes
Sourced from Microsoft.NET.Test.Sdk's releases.
18.8.1
What's Changed
Full Changelog: microsoft/vstest@v18.8.0...v18.8.1
18.8.0
What's Changed
Full Changelog: microsoft/vstest@v18.7.0...v18.8.0
Commits viewable in compare view.
Updated PatternKit.Core from 0.147.8 to 0.147.12.
Release notes
Sourced from PatternKit.Core's releases.
0.147.12
What's Changed
Full Changelog: JerrettDavis/PatternKit@v0.147.11...v0.147.12
0.147.11
What's Changed
Full Changelog: JerrettDavis/PatternKit@v0.147.10...v0.147.11
0.147.10
What's Changed
Full Changelog: JerrettDavis/PatternKit@v0.147.9...v0.147.10
0.147.9
What's Changed
Full Changelog: JerrettDavis/PatternKit@v0.147.8...v0.147.9
Commits viewable in compare view.
Updated System.CommandLine from 2.0.0-beta4.22272.1 to 2.0.0-rc.2.25502.107.
Release notes
Sourced from System.CommandLine's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated System.Reflection.MetadataLoadContext from 10.0.9 to 10.0.10.
Release notes
Sourced from System.Reflection.MetadataLoadContext's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated System.Text.Json from 10.0.9 to 10.0.10.
Release notes
Sourced from System.Text.Json's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated TinyBDD from 0.19.27 to 0.19.29.
Release notes
Sourced from TinyBDD's releases.
0.19.29
What's Changed
Full Changelog: JerrettDavis/TinyBDD@v0.19.28...v0.19.29
0.19.28
What's Changed
Full Changelog: JerrettDavis/TinyBDD@v0.19.27...v0.19.28
Commits viewable in compare view.
Updated TinyBDD.Xunit from 0.19.27 to 0.19.29.
Release notes
Sourced from TinyBDD.Xunit's releases.
0.19.29
What's Changed
Full Changelog: JerrettDavis/TinyBDD@v0.19.28...v0.19.29
0.19.28
What's Changed
Full Changelog: JerrettDavis/TinyBDD@v0.19.27...v0.19.28
Commits viewable in compare view.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions