Skip to content

Commit cbf0e22

Browse files
committed
[meta] prepare releases
1 parent d865091 commit cbf0e22

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

site/src/changelog.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,34 @@ 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.116] - 2025-12-26
13+
14+
### Added
15+
16+
- Nextest now sets several new [environment variables](https://nexte.st/docs/configuration/env-vars/#environment-variables-nextest-sets) for each test execution:
17+
18+
- `NEXTEST_TEST_NAME`: The name of the test being run.
19+
- `NEXTEST_ATTEMPT`: The current attempt number (starting from 1).
20+
- `NEXTEST_TOTAL_ATTEMPTS`: The total number of attempts that will be made.
21+
- `NEXTEST_BINARY_ID`: The binary ID of the test.
22+
- `NEXTEST_ATTEMPT_ID`: A unique identifier for this specific attempt.
23+
- `NEXTEST_STRESS_CURRENT` and `NEXTEST_STRESS_TOTAL`: For [stress tests](https://nexte.st/docs/features/stress-tests/), the current and total iteration counts.
24+
25+
These variables allow tests to be aware of their execution context, enabling conditional behavior based on retry attempts or stress test iterations.
26+
27+
Thanks [liranco](https://github.com/liranco) for your first contribution! ([#2797])
28+
29+
- With `cargo nextest run --verbose`, nextest now displays the command line used to run each test. Thanks [dangvu0502](https://github.com/dangvu0502) for your first contribution! ([#2800])
30+
31+
- A new [glossary page](https://nexte.st/docs/glossary/) documents key nextest terminology.
32+
33+
### Changed
34+
35+
- The internal `__NEXTEST_ATTEMPT` environment variable has been removed and replaced by the public `NEXTEST_ATTEMPT` variable.
36+
37+
[#2797]: https://github.com/nextest-rs/nextest/pull/2797
38+
[#2800]: https://github.com/nextest-rs/nextest/pull/2800
39+
1240
## [0.9.115] - 2025-12-14
1341

1442
### Added
@@ -1710,6 +1738,7 @@ Supported in this initial release:
17101738
- [Test retries](https://nexte.st/book/retries.md) and flaky test detection
17111739
- [JUnit support](https://nexte.st/book/junit.md) for integration with other test tooling
17121740

1741+
[0.9.116]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.116
17131742
[0.9.115]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.115
17141743
[0.9.114]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.114
17151744
[0.9.113]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.113

0 commit comments

Comments
 (0)