Skip to content

Commit 88f0a8d

Browse files
committed
[meta] prepare releases
1 parent d5c13b3 commit 88f0a8d

File tree

2 files changed

+70
-70
lines changed

2 files changed

+70
-70
lines changed

nextest-runner/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [0.69.0] - 2024-12-12
4+
5+
See the changelog for [cargo-nextest 0.9.86](https://nexte.st/changelog#0.9.86).
6+
37
## [0.69.0-b.4] - 2024-12-11
48

59
See the changelog for [cargo-nextest 0.9.86-b.4](https://nexte.st/changelog#0.9.86-b.4).

site/src/changelog.md

+66-70
Original file line numberDiff line numberDiff line change
@@ -8,65 +8,10 @@ toc_depth: 1
88
This page documents new features and bugfixes for cargo-nextest. Please see the [stability
99
policy](https://nexte.st/docs/stability/) for how versioning works with cargo-nextest.
1010

11-
## [0.9.86-b.4] - 2024-12-11
11+
## [0.9.86] - 2024-12-12
1212

13-
Since beta 3:
14-
15-
### Added
16-
17-
- Setup scripts are now represented in the JUnit output. For more information,
18-
see [*Setup scripts in JUnit output*].
19-
20-
### Changed
21-
22-
- Each test now has a separate Tokio task associated with it. This leads to
23-
greater reliability (each test's task can now panic independently), and is
24-
faster in repos with many small tests.
25-
26-
For example, in one test done against
27-
[`clap-rs/clap`](https://github.com/clap-rs/clap) on Linux, `cargo nextest
28-
run` goes down from 0.36 seconds to 0.23 seconds.
29-
30-
### Fixed
31-
32-
- Fixed a bug where pressing two Ctrl-Cs in succession would not `SIGKILL` any running tests.
33-
- `junit.store-success-output` now works correctly -- previously, storage of output is disabled unconditionally.
34-
- In JUnit output, the `testsuite` elements are now stored in the order they are first seen (`IndexMap`), rather than in random order (`HashMap`).
35-
36-
[*Setup scripts in JUnit output*]: https://nexte.st/docs/configuration/setup-scripts/#setup-scripts-in-junit-output
37-
38-
## [0.9.86-b.3] - 2024-12-09
39-
40-
Since beta 2:
41-
42-
### Added
43-
44-
- Added a way to pass in extra arguments to the test binary at runtime, via
45-
`run-extra-args`. See [*Passing in extra arguments*].
46-
47-
### Fixed
48-
49-
- When [adding extra files to an archive], nextest now ignores empty and `.`
50-
path components in the specification while joining the specified `path`. This
51-
means that archives won't accidentally get duplicated entries.
52-
- Update `idna` to address [RUSTSEC-2024-0421]. Since nextest only accesses
53-
domains that do not use punycode, we disable that support entirely.
54-
55-
[*Passing in extra arguments*]: https://nexte.st/docs/configuration/extra-args/
56-
[adding extra files to an archive]: https://nexte.st/docs/ci-features/archiving/#adding-extra-files-to-an-archive
57-
[RUSTSEC-2024-0421]: https://rustsec.org/advisories/RUSTSEC-2024-0421.html
58-
59-
## [0.9.86-b.2] - 2024-12-06
60-
61-
Since beta 1:
62-
63-
* Fixed `--no-fail-fast` and `--fail-fast` not being honored properly.
64-
* Internal refactoring work, with no expected functional changes.
65-
66-
## [0.9.86-b.1] - 2024-12-04
67-
68-
This release of nextest has a number of internal and external improvements. Please try it out
69-
and [report issues](https://github.com/nextest-rs/nextest/issues/new?assignees=&labels=bug&projects=&template=bug-report.yml&title=Bug%3A+) you find!
13+
This is a substantial release with several new features. It's gone through a
14+
period of beta testing, but if you run into issues please [file a bug]!
7015

7116
### Added
7217

@@ -102,22 +47,76 @@ Configuration for `--max-fail` will be added in a future release ([#1944]).
10247

10348
Thanks to [AJamesyD](https://github.com/AJamesyD) for your first contribution!
10449

105-
[#1944]: https://github.com/nextest-rs/nextest/issues/1944
50+
#### Extra arguments to the test binary
10651

107-
### Fixed
52+
You can now pass in extra arguments to the test binary at runtime, via the
53+
`run-extra-args` configuration option. In combination with a custom test harness
54+
like `libtest-mimic`, this can be used to run tests on the main thread of the
55+
process.
10856

109-
Nextest now supports being run in Cargo setups where the `Cargo.toml` that
110-
defines the workspace is not hierarchically above the workspace members. This is
111-
an uncommon setup, but it is supported by Cargo--and now by nextest as well.
57+
For more information, see [*Passing in extra arguments*].
11258

113-
Thanks to [PegasusPlusUS](https://github.com/PegasusPlusUS) for your first
114-
contribution!
59+
#### Setup scripts in JUnit output
60+
61+
Setup scripts are now represented in the JUnit output. For more information, see
62+
[*Setup scripts in JUnit output*].
11563

11664
### Changed
11765

66+
#### Tokio task per test
67+
68+
Each test now has a separate Tokio task associated with it. This leads to
69+
greater reliability (each test's task can now panic independently), and is
70+
faster in repos with many small tests.
71+
72+
For example, in one test done against
73+
[`clap-rs/clap`](https://github.com/clap-rs/clap) on Linux, the time reported by
74+
`cargo nextest run` goes down from 0.36 seconds to 0.23 seconds.
75+
76+
#### UI refresh
77+
78+
Several minor improvements to the user interface:
79+
11880
- The progress bar and other UI elements use Unicode characters if available.
81+
- Pressing `Ctrl-C` twice now prints out a "Killing" message.
11982
- Some more minor improvements that should lead to a more cohesive user experience.
120-
- MSRV for compiling nextest is now Rust 1.81.
83+
84+
#### MSRV update
85+
86+
The MSRV for compiling nextest is now Rust 1.81. (The MSRV for running tests
87+
remains unchanged.)
88+
89+
### Fixed
90+
91+
- Fixed a bug where pressing two Ctrl-Cs in succession would not `SIGKILL` any running tests.
92+
93+
- `junit.store-success-output` now works correctly—previously, storage of output is disabled unconditionally.
94+
95+
- In JUnit output, the `testsuite` elements are now listed in the order they are first seen (`IndexMap`), rather than in random order (`HashMap`).
96+
97+
- When [adding extra files to an archive], nextest now ignores empty and `.`
98+
path components in the specification while joining the specified `path`. This
99+
normalizes paths, meaning that archives won't accidentally get duplicated entries.
100+
101+
- Update `idna` to address [RUSTSEC-2024-0421]. Since nextest only accesses
102+
domains that do not use punycode, we disable that support entirely.
103+
104+
- Nextest now supports being run in Cargo setups where the `Cargo.toml` that
105+
defines the workspace is not hierarchically above the workspace members. This is
106+
an uncommon setup, but it is supported by Cargo—and now by nextest as well.
107+
108+
Thanks to [PegasusPlusUS](https://github.com/PegasusPlusUS) for your first
109+
contribution!
110+
111+
- If an I/O error occurs waiting for a test process to finish, standard output
112+
and standard error are now displayed correctly.
113+
114+
[file a bug]: https://github.com/nextest-rs/nextest/issues/new?assignees=&labels=bug&projects=&template=bug-report.yml&title=Bug%3A+
115+
[#1944]: https://github.com/nextest-rs/nextest/issues/1944
116+
[*Passing in extra arguments*]: https://nexte.st/docs/configuration/extra-args/
117+
[*Setup scripts in JUnit output*]: https://nexte.st/docs/configuration/setup-scripts/#setup-scripts-in-junit-output
118+
[adding extra files to an archive]: https://nexte.st/docs/ci-features/archiving/#adding-extra-files-to-an-archive
119+
[RUSTSEC-2024-0421]: https://rustsec.org/advisories/RUSTSEC-2024-0421.html
121120

122121
## [0.9.85] - 2024-11-26
123122

@@ -1303,10 +1302,7 @@ Supported in this initial release:
13031302
- [Test retries](https://nexte.st/book/retries.md) and flaky test detection
13041303
- [JUnit support](https://nexte.st/book/junit.md) for integration with other test tooling
13051304

1306-
[0.9.86-b.4]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.86-b.4
1307-
[0.9.86-b.3]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.86-b.3
1308-
[0.9.86-b.2]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.86-b.2
1309-
[0.9.86-b.1]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.86-b.1
1305+
[0.9.86]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.86
13101306
[0.9.85]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.85
13111307
[0.9.84]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.84
13121308
[0.9.83]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.83

0 commit comments

Comments
 (0)