Bump the nuget group with 9 updates#116
Open
dependabot[bot] wants to merge 1 commit intomasterfrom
Open
Conversation
Bumps CliFx from 2.3.6 to 3.0.0 Bumps coverlet.collector from 8.0.1 to 10.0.0 Bumps Gress from 2.1.1 to 2.2.0 Bumps Microsoft.Extensions.Configuration from 10.0.5 to 10.0.7 Bumps Microsoft.Extensions.Configuration.EnvironmentVariables from 10.0.5 to 10.0.7 Bumps Microsoft.Extensions.Configuration.UserSecrets from 10.0.5 to 10.0.7 Bumps RazorBlade from 0.11.0 to 1.0.0 Bumps Spectre.Console from 0.54.0 to 0.55.2 Bumps YoutubeExplode from 6.5.7 to 6.6.0 --- updated-dependencies: - dependency-name: CliFx dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget - dependency-name: coverlet.collector dependency-version: 10.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget - dependency-name: Gress dependency-version: 2.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget - dependency-name: Gress dependency-version: 2.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget - dependency-name: Gress dependency-version: 2.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget - dependency-name: Microsoft.Extensions.Configuration dependency-version: 10.0.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: Microsoft.Extensions.Configuration.EnvironmentVariables dependency-version: 10.0.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: Microsoft.Extensions.Configuration.UserSecrets dependency-version: 10.0.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: RazorBlade dependency-version: 1.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget - dependency-name: Spectre.Console dependency-version: 0.55.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget - dependency-name: YoutubeExplode dependency-version: 6.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget ... Signed-off-by: dependabot[bot] <support@github.com>
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 CliFx from 2.3.6 to 3.0.0.
Release notes
Sourced from CliFx's releases.
3.0
What's new
Source generation instead of reflection
CliFx no longer relies on run-time reflection. Instead, it uses Roslyn source generators to collect metadata about command bindings and extend your types with additional behavior at compile time. This enables full Native AOT and assembly trimming support.
Command types must now be declared as
partial(including all enclosing types, if nested).Auto-generated
Main()methodIf your project doesn't define a
Main()method or use top-level statements, CliFx will automatically generate an entry point that builds and runs the application using all commands from the assembly.Manual help and version option binding
You can now implement
ICommandWithHelpOptionand/orICommandWithVersionOptionon your command types and apply[CommandOption]attributes to choose custom identifiers for the help and version options. By default, the source generator auto-implements these interfaces with the conventional-h|--helpand--versionbindings.Public
CommandDescriptorCommand metadata is exposed via the public
CommandDescriptorclass (inCliFx.Binding). Source-generated commands expose a staticDescriptorproperty, which can be used to register commands with the builder viaAddCommand(CommandDescriptor).Breaking changes
Type and namespace renames
CliApplicationCommandLineApplicationCliApplicationBuilderCommandLineApplicationBuilderCliFx.AttributesnamespaceCliFx.BindingnamespaceCliFx.ExceptionsnamespaceCliFx(root namespace)CliFx.Extensibility.BindingConverter<T>CliFx.Activation.ScalarInputConverter<T>/SequenceInputConverter<T>CliFx.Extensibility.BindingValidator<T>CliFx.Activation.InputValidator<T>UseTypeActivator(...)UseTypeInstantiator(...)IsRequiredremoved from attributesCommandOptionAttribute.IsRequiredandCommandParameterAttribute.IsRequiredhave been removed. Use the C#requiredkeyword on the property instead.Init-only properties no longer supported
Input-bound properties must use a regular
setaccessor. Replaceinitwithseton all properties annotated with[CommandParameter]or[CommandOption].Directives replaced with environment variables
The
[preview]and[debug]directives have been removed. UseCommandLineApplicationBuilder.AllowDebugMode(...)andAllowPreviewMode(...)to configure environment variables that enable these modes (e.g.CLIFX_DEBUG=true ./myapp ...). Both modes are disabled by default.Preview mode no longer short-circuits
... (truncated)
Commits viewable in compare view.
Updated coverlet.collector from 8.0.1 to 10.0.0.
Release notes
Sourced from coverlet.collector's releases.
10.0.0
Improvements
--coverlet-file-prefixoption for unique report files #1869Fixed
Maintenance
Diff between 8.0.1 and 10.0.0
Commits viewable in compare view.
Updated Gress from 2.1.1 to 2.2.0.
Release notes
Sourced from Gress's releases.
2.2
What's Changed
Enhancements
Box<T>withCell<T>by @Copilot in Add PowerKit; replace hand-rolledBox<T>withCell<T>Tyrrrz/Gress#27New Contributors
Full Changelog: Tyrrrz/Gress@2.1.1...2.2
Commits viewable in compare view.
Updated Microsoft.Extensions.Configuration from 10.0.5 to 10.0.7.
Release notes
Sourced from Microsoft.Extensions.Configuration's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.Extensions.Configuration.EnvironmentVariables from 10.0.5 to 10.0.7.
Release notes
Sourced from Microsoft.Extensions.Configuration.EnvironmentVariables's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.Extensions.Configuration.UserSecrets from 10.0.5 to 10.0.7.
Release notes
Sourced from Microsoft.Extensions.Configuration.UserSecrets's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated RazorBlade from 0.11.0 to 1.0.0.
Release notes
Sourced from RazorBlade's releases.
1.0.0
net10.0target with AOT supportCommits viewable in compare view.
Updated Spectre.Console from 0.54.0 to 0.55.2.
Release notes
Sourced from Spectre.Console's releases.
0.55.2
What's Changed
New Contributors
Full Changelog: spectreconsole/spectre.console@0.55.1...0.55.2
0.55.1
What's Changed
New Contributors
Full Changelog: spectreconsole/spectre.console@0.55.0...0.55.1
0.55.0
This release brings new features, performance improvements, bug fixes, and some important architectural changes.
New Spectre.Console.Ansi Library
One of the biggest changes in this release is the introduction of
Spectre.Console.Ansi,
a new standalone library for writing ANSI escape
sequences to the terminal without taking a full dependency on
Spectre.Console.This makes it easy to add ANSI support to lightweight tools and libraries where
pulling in the full Spectre.Console package would be overkill. Spectre.Console
itself now depends on this library internally.
We've also added some nice convenience methods for the .NET Console class:
Style Is Now a Struct
Stylehas been converted from a class to a struct, and link/URL informationhas been extracted into a separate
Linktype. This improves allocationperformance, especially in rendering-heavy scenarios, but is a breaking change
for code that relies on reference semantics.
Progress Improvements
The
Progresswidget received a lot of love in this release. It now usesTimeProviderinstead of the wall clock, making it significantly easier towrite deterministic tests.
ProgressTaskhas a newTagproperty for attachingarbitrary metadata, and you can now override the global hide-when-completed
behavior on individual tasks. Tasks can also be removed from the progress
context entirely.
Speed calculations have been improved with configurable max sampling age and
... (truncated)
Commits viewable in compare view.
Updated YoutubeExplode from 6.5.7 to 6.6.0.
Release notes
Sourced from YoutubeExplode's releases.
6.6
What's Changed
Enhancements
SubstringAfterby @Copilot in Use range indexer inSubstringAfterTyrrrz/YoutubeExplode#941Microsoft.SourceLink.GitHubpackage references by @Copilot in Remove explicitMicrosoft.SourceLink.GitHubpackage references Tyrrrz/YoutubeExplode#943IsVideoUpscaledproperty toIVideoStreamInfoto detect AI-upscaled streams by @Copilot in AddIsVideoUpscaledproperty toIVideoStreamInfoto detect AI-upscaled streams Tyrrrz/YoutubeExplode#950Bugs
New Contributors
Full Changelog: Tyrrrz/YoutubeExplode@6.5.7...6.6
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