Skip to content

Commit 0357c72

Browse files
committed
[meta] prepare beta releases
1 parent 11d4eea commit 0357c72

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

site/src/changelog.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,18 @@ toc_depth: 1
99
This page documents new features and bugfixes for cargo-nextest. Please see the [stability
1010
policy](https://nexte.st/docs/stability/) for how versioning works with cargo-nextest.
1111

12+
## [0.9.119-b.1] - 2026-01-05
13+
14+
### Added
15+
16+
Support for using [a pager like `less`](https://nexte.st/docs/user-config/pager/) with nextest's output. Currently supported are:
17+
18+
- `cargo nextest list`
19+
- `cargo nextest show-config test-groups`
20+
- `-h` and `--help` commands
21+
22+
The pager support is closely modeled after the [Jujutsu version control system](https://github.com/jj-vcs/jj). The default pager is `less -FRX` on Unix platforms, and a builtin pager (based on [sapling-streampager](https://docs.rs/sapling-streampager)) on Windows.
23+
1224
## [0.9.118] - 2026-01-04
1325

1426
### Added
@@ -1789,6 +1801,7 @@ Supported in this initial release:
17891801
- [Test retries](https://nexte.st/book/retries.md) and flaky test detection
17901802
- [JUnit support](https://nexte.st/book/junit.md) for integration with other test tooling
17911803

1804+
[0.9.119-b.1]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.119-b.1
17921805
[0.9.118]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.118
17931806
[0.9.117]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.117
17941807
[0.9.116]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.116

site/src/docs/user-config/pager.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ description: "Pager support: scrollable output for long listings and help."
99

1010
Nextest supports paging output through an external pager (like `less`) or a builtin pager. This is useful for commands that produce long output, such as `cargo nextest list` or `cargo nextest show-config test-groups`.
1111

12+
Nextest's pager support is closely modeled after the [Jujutsu version control system](https://github.com/jj-vcs/jj).
13+
1214
## Paged commands
1315

1416
The following commands support paging:
@@ -64,9 +66,11 @@ The `pager` setting specifies which pager to use. It supports several formats:
6466
pager = ":builtin"
6567
```
6668

67-
Use nextest's builtin pager (based on [streampager]).
69+
Use nextest's builtin pager (based on [sapling-streampager]).
70+
71+
[sapling-streampager]: https://crates.io/crates/sapling-streampager
6872

69-
[streampager]: https://crates.io/crates/sapling-streampager
73+
The `PAGER` environment variable is ignored for a better user experience.
7074

7175
### Controlling pagination
7276

0 commit comments

Comments
 (0)