Skip to content

cargo-nextest 0.9.133

Latest

Choose a tag to compare

@github-actions github-actions released this 14 Apr 21:17
· 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 test binary emulation, --nocapture can now be passed in after --.

Fixed

  • When --status-level fail is 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 t for test status info no longer shows the output twice; nextest now only reacts to key-press events, ignoring key-release events. (#3225)

Security

  • Update rand to 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 covered rand versions have the log feature turned on.
  • Update rustls-webpki to 0.103.10.