·
68 commits
to main
since this release
Immutable
release. Only release title and notes can be modified.
Added
-
Nextest now supports a
group()filterset predicate for CLI filter expressions, allowing tests to be listed or run by their assigned test group. (#3273)For example, to run all tests in a specific group:
cargo nextest run -E 'group(my-group)'To list all tests that aren't in the default global group:
cargo nextest list -E 'not group(@global)' -
As part of
cargo testbinary emulation,--nocapturecan now be passed in after--.
Fixed
- When
--status-level failis set, slow test notifications were previously displayed in a corrupt format (the duration and test name were shown, but the status was omitted). Slow notifications are now correctly hidden. (#3236) - On Windows, pressing
tfor test status info no longer shows the output twice; nextest now only reacts to key-press events, ignoring key-release events. (#3225)
Security
- Update
randto 0.10.1 for RUSTSEC-2026-0097 / GHSA-cq8v-f236-94qc. Note that based on the advisory description, this unsoundness does not appear to affect nextest, since none of the coveredrandversions have thelogfeature turned on. - Update
rustls-webpkito 0.103.10.