chore: Bump Spectre.Console.Cli and 2 others#172
Closed
dependabot[bot] wants to merge 1 commit into
Closed
Conversation
0359e6f to
66c0ff3
Compare
Bumps Spectre.Console.Cli from 1.0.0-alpha.0.11 to 1.0.0-alpha.0.16 Bumps Spectre.Console.Cli.Testing from 1.0.0-alpha.0.11 to 1.0.0-alpha.0.16 Bumps Spectre.Console.Testing to 0.55.0, 0.55.2 --- updated-dependencies: - dependency-name: Spectre.Console.Cli dependency-version: 1.0.0-alpha.0.16 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Spectre.Console.Cli.Testing dependency-version: 1.0.0-alpha.0.16 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Spectre.Console.Testing dependency-version: 0.55.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: Spectre.Console.Testing dependency-version: 0.55.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
66c0ff3 to
3278867
Compare
4 tasks
FrankRay78
added a commit
that referenced
this pull request
May 19, 2026
* chore: update .claude/settings.json * chore: bump dependencies (consolidates #78 #123 #144 #156 #172 #180 #181) - Spectre.Console 0.54.0 -> 0.55.2 (#181) - Spectre.Console.Cli/Cli.Testing 1.0.0-alpha.0.11 -> 0.16 (#172) - Spectre.Console.Testing 0.54.0 -> 0.55.2 (#172) - Microsoft.NET.Test.Sdk -> 18.5.1 (#180) - Verify / Verify.Xunit -> 31.12.5 (#156) - Roslynator.Analyzers 4.14.1 -> 4.15.0 (#144) - BenchmarkDotNet 0.15.5 -> 0.15.8 (#123) - xunit.runner.visualstudio 3.1.4 -> 3.1.5 (#78) Implement new IAnsiConsole.WriteAnsi(Action<AnsiWriter>) member added in Spectre.Console 0.55 on FileConsole (no-op, file output is plain text) and CompositeAnsiConsole (forwards to inner consoles). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> * test: cover WriteAnsi; drop unused Spectre.Console.Cli packages - Add FileConsoleTests.WriteAnsi_DoesNotThrow (no-op contract). - Add CompositeAnsiConsoleTests covering Write + WriteAnsi fan-out to all inner consoles via a SpyConsole. - Remove Spectre.Console.Cli and Spectre.Console.Cli.Testing from NetPace.Console.Tests — neither is referenced in any .cs file (CLAUDE.md already notes Spectre.Console.Cli was replaced). Closes the TDD gap flagged in the PR #201 review. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> * fix: guard FileConsole.Write against post-disposal ProgressRefreshThread Spectre.Console's ProgressRefreshThread fires on a background thread and can call Write after FileConsole has been disposed at the end of a test, crashing the test host on Linux CI with ObjectDisposedException. Add a _writeLock + _disposed guard so background writes after disposal are silently ignored. Also adds Write_AfterDispose_DoesNotThrow test to pin the behaviour. Co-authored-by: Frank Ray <FrankRay78@users.noreply.github.com> --------- Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com> Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com> Co-authored-by: Frank Ray <FrankRay78@users.noreply.github.com>
Contributor
Author
|
Looks like these dependencies are no longer a dependency, so this is no longer needed. |
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 Spectre.Console.Cli from 1.0.0-alpha.0.11 to 1.0.0-alpha.0.16.
Release notes
Sourced from Spectre.Console.Cli's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Spectre.Console.Cli.Testing from 1.0.0-alpha.0.11 to 1.0.0-alpha.0.16.
Release notes
Sourced from Spectre.Console.Cli.Testing's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Spectre.Console.Testing from 0.54.0 to 0.55.0.
Release notes
Sourced from Spectre.Console.Testing's releases.
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 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.
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.