Skip to content

Bump the minor-and-patch group with 12 updates#487

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/dot-config/minor-and-patch-ab6b13869e
Closed

Bump the minor-and-patch group with 12 updates#487
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/dot-config/minor-and-patch-ab6b13869e

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 12, 2026

Copy link
Copy Markdown
Contributor

Updated dotnet-reportgenerator-globaltool from 5.5.3 to 5.5.10.

Release notes

Sourced from dotnet-reportgenerator-globaltool's releases.

5.5.10

Changes:

  • Added support for Sha256 signed licenses

This release requires .NET Framework 4.7 or .NET 8.0/9.0/10.0

5.5.9

Changes:

  • Added new setting "applyQueryStringToAllLinks" to apply query string to referenced CSS and JavaScript files and links to support SAS tokens (e.g. on blob storage) (#​349)
  • Improved escaping of JavaScript content

This release requires .NET Framework 4.7 or .NET 8.0/9.0/10.0

5.5.8

Changes:

  • Azure DevOps: Added metadata to become a trusted publisher

This release requires .NET Framework 4.7 or .NET 8.0/9.0/10.0

5.5.7

Changes:

  • #​783: Reduce memory usage for large code files

This release requires .NET Framework 4.7 or .NET 8.0/9.0/10.0

5.5.6

Changes:

This release requires .NET Framework 4.7 or .NET 8.0/9.0/10.0

5.5.5

Changes:

This release requires .NET Framework 4.7 or .NET 8.0/9.0/10.0

5.5.4

Changes:

  • #​777: Added new report type 'cjson' (contributed by @​RemyBoyer)

This release requires .NET Framework 4.7 or .NET 8.0/9.0/10.0

Commits viewable in compare view.

Updated FsCheck from 3.3.2 to 3.3.3.

Release notes

Sourced from FsCheck's releases.

3.3.3

Add Gen.pick and Gen.tryPick functions.
Fill NullReferenceException when using Replay with an Implies combinator.
Improve behavior of stamps and labels when using And/Or property combinators.

Commits viewable in compare view.

Updated husky from 0.8.0 to 0.9.1.

Release notes

Sourced from husky's releases.

0.9.1

What's Changed

Full Changelog: alirezanet/Husky.Net@v0.9.0...v0.9.1

0.9.0

What's Changed

New Contributors

Full Changelog: alirezanet/Husky.Net@v0.8.0...v0.9.0

Commits viewable in compare view.

Updated Microsoft.Extensions.DependencyInjection from 10.0.3 to 10.0.7.

Release notes

Sourced from Microsoft.Extensions.DependencyInjection's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Hosting from 10.0.3 to 10.0.7.

Release notes

Sourced from Microsoft.Extensions.Hosting's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Logging.Abstractions from 10.0.3 to 10.0.7.

Release notes

Sourced from Microsoft.Extensions.Logging.Abstractions's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Testing.Extensions.CodeCoverage from 18.5.2 to 18.6.2.

Release notes

Sourced from Microsoft.Testing.Extensions.CodeCoverage's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Testing.Extensions.VSTestBridge from 2.1.0 to 2.2.2.

Release notes

Sourced from Microsoft.Testing.Extensions.VSTestBridge's releases.

2.2.2

See release notes here.

2.2.1

See release notes here.

2.2.0-preview-20210115-03

See release notes here.

2.2.0-preview-20201126-03

See release notes here.

2.1.2

See release notes here.

2.1.1

See release notes here.

Commits viewable in compare view.

Updated Microsoft.Testing.Platform from 2.1.0 to 2.2.2.

Release notes

Sourced from Microsoft.Testing.Platform's releases.

2.2.2

See release notes here.

2.2.1

See release notes here.

2.2.0-preview-20210115-03

See release notes here.

2.2.0-preview-20201126-03

See release notes here.

2.1.2

See release notes here.

2.1.1

See release notes here.

Commits viewable in compare view.

Updated Microsoft.Testing.Platform.MSBuild from 2.1.0 to 2.2.2.

Release notes

Sourced from Microsoft.Testing.Platform.MSBuild's releases.

2.2.2

See release notes here.

2.2.1

See release notes here.

2.2.0-preview-20210115-03

See release notes here.

2.2.0-preview-20201126-03

See release notes here.

2.1.2

See release notes here.

2.1.1

See release notes here.

Commits 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.

[!CAUTION]
There are breaking changes in this release, so make sure you review the release notes and try things out before upgrading in production.

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:

using Spectre.Console.Ansi;

Console.Markup("[yellow]Hello[/] ");
Console.MarkupLine("[blue]World[/]");
  
Console.Ansi(writer => writer
    .BeginLink("https://spectreconsole.net", linkId: 123)
    .Decoration(Decoration.Bold | Decoration.Italic)
    .Foreground(Color.Yellow)
    .Write("Spectre Console")
    .ResetStyle()
    .EndLink());

Style Is Now a Struct

Style has been converted from a class to a struct, and link/URL information
has been extracted into a separate Link type. This improves allocation
performance, especially in rendering-heavy scenarios, but is a breaking change
for code that relies on reference semantics.

Progress Improvements

The Progress widget received a lot of love in this release. It now uses
TimeProvider instead of the wall clock, making it significantly easier to
write deterministic tests. ProgressTask has a new Tag property for attaching
arbitrary 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 Spectre.Console.Testing from 0.54.0 to 0.55.2.

Release notes

Sourced from Spectre.Console.Testing'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.

[!CAUTION]
There are breaking changes in this release, so make sure you review the release notes and try things out before upgrading in production.

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:

using Spectre.Console.Ansi;

Console.Markup("[yellow]Hello[/] ");
Console.MarkupLine("[blue]World[/]");
  
Console.Ansi(writer => writer
    .BeginLink("https://spectreconsole.net", linkId: 123)
    .Decoration(Decoration.Bold | Decoration.Italic)
    .Foreground(Color.Yellow)
    .Write("Spectre Console")
    .ResetStyle()
    .EndLink());

Style Is Now a Struct

Style has been converted from a class to a struct, and link/URL information
has been extracted into a separate Link type. This improves allocation
performance, especially in rendering-heavy scenarios, but is a breaking change
for code that relies on reference semantics.

Progress Improvements

The Progress widget received a lot of love in this release. It now uses
TimeProvider instead of the wall clock, making it significantly easier to
write deterministic tests. ProgressTask has a new Tag property for attaching
arbitrary 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.

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will 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 version will 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

Bumps dotnet-reportgenerator-globaltool from 5.5.3 to 5.5.10
Bumps FsCheck from 3.3.2 to 3.3.3
Bumps husky from 0.8.0 to 0.9.1
Bumps Microsoft.Extensions.DependencyInjection from 10.0.3 to 10.0.7
Bumps Microsoft.Extensions.Hosting from 10.0.3 to 10.0.7
Bumps Microsoft.Extensions.Logging.Abstractions from 10.0.3 to 10.0.7
Bumps Microsoft.Testing.Extensions.CodeCoverage from 18.5.2 to 18.6.2
Bumps Microsoft.Testing.Extensions.VSTestBridge from 2.1.0 to 2.2.2
Bumps Microsoft.Testing.Platform from 2.1.0 to 2.2.2
Bumps Microsoft.Testing.Platform.MSBuild from 2.1.0 to 2.2.2
Bumps Spectre.Console from 0.54.0 to 0.55.2
Bumps Spectre.Console.Testing from 0.54.0 to 0.55.2

---
updated-dependencies:
- dependency-name: dotnet-reportgenerator-globaltool
  dependency-version: 5.5.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: FsCheck
  dependency-version: 3.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: husky
  dependency-version: 0.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-version: 10.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: Microsoft.Extensions.Hosting
  dependency-version: 10.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: Microsoft.Extensions.Logging.Abstractions
  dependency-version: 10.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: Microsoft.Testing.Extensions.CodeCoverage
  dependency-version: 18.6.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: Microsoft.Testing.Extensions.VSTestBridge
  dependency-version: 2.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: Microsoft.Testing.Platform
  dependency-version: 2.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: Microsoft.Testing.Platform.MSBuild
  dependency-version: 2.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: Spectre.Console
  dependency-version: 0.55.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: Spectre.Console.Testing
  dependency-version: 0.55.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Dependency updates nuget NuGet package updates labels May 12, 2026
@dependabot dependabot Bot requested a review from juvistr as a code owner May 12, 2026 04:44
@dependabot dependabot Bot added dependencies Dependency updates nuget NuGet package updates labels May 12, 2026
@github-actions

Copy link
Copy Markdown

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

Scanned Files

None

@codecov

codecov Bot commented May 12, 2026

Copy link
Copy Markdown

⚠️ JUnit XML file not found

The CLI was unable to find any JUnit XML files to upload.
For more help, visit our troubleshooting guide.

@dependabot @github

dependabot Bot commented on behalf of github May 19, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this May 19, 2026
@dependabot dependabot Bot deleted the dependabot/nuget/dot-config/minor-and-patch-ab6b13869e branch May 19, 2026 08:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency updates nuget NuGet package updates

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants