Releases: nextest-rs/nextest
Releases · nextest-rs/nextest
cargo-nextest 0.9.79-rc.2
Added
- Expanded version information:
cargo nextest -V
now shows commit and date information similar torustc
andcargo
, andcargo nextest --version
shows this information in long form.
Fixed
- Nextest will now enable colors by default in more situations, particularly over SSH connections. For more information, see this issue.
- Fixed a case of
cargo metadata
parsing with renamed packages (#1746).
nextest-runner 0.62.0
See the changelog for cargo-nextest 0.9.79.
cargo-nextest 0.9.79-rc.1
Added
- Expanded version information:
cargo nextest -V
now shows commit and date information similar torustc
andcargo
, andcargo nextest --version
shows this information in long form.
Fixed
- Nextest will now enable colors by default in more situations, particularly over SSH connections. For more information, see this issue.
- Fixed a case of
cargo metadata
parsing with renamed packages (#1746).
nextest-runner 0.61.0
See the changelog for cargo-nextest 0.9.78.
nextest-metadata 0.12.1
Internal dependency updates.
cargo-nextest 0.9.78
Added
For failing tests, if nextest finds text matching patterns that indicate failure, such as "thread
panicked at", it now highlights those lines (if color is enabled).
Rust's libtest doesn't provide structured output for this, so nextest uses heuristics. These
heuristics will be tweaked over time; to see what nextest would highlight, run cargo nextest debug extract highlight
, and provide either --stdout
and --stderr
, or --combined
if stdout and
stderr are combined.
nextest-runner 0.60.0
See the changelog for cargo-nextest 0.9.77.
nextest-metadata 0.12.0
Changed
- Renamed references from "default-set" to "default-filter" to match cargo-nextest changes.
Removed
NextestExitCode::INVALID_FILTER_EXPRESSION
has been renamed toINVALID_FILTERSET
.
nextest-filtering 0.12.0
Changed
- Renamed references from "default-set" to "default-filter" to match cargo-nextest changes.
cargo-nextest 0.9.77
Changed
A couple of UI changes:
default-set
is nowdefault-filter
.--bound=all
is now--ignore-default-filter
.
Sorry about the breakage here -- this should be the last of the changes.