diff --git a/nextest-runner/CHANGELOG.md b/nextest-runner/CHANGELOG.md index f1af48d8aa9..b1eb7fea4cf 100644 --- a/nextest-runner/CHANGELOG.md +++ b/nextest-runner/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog -## [0.66.0] - 2024-10-28 +## [0.67.0] - 2024-11-15 + +See the changelog for [cargo-nextest 0.9.84](https://nexte.st/changelog#0.9.84). + +## [0.66.0] - 2024-11-15 See the changelog for [cargo-nextest 0.9.83](https://nexte.st/changelog#0.9.83). @@ -490,6 +494,7 @@ Thanks to [Guiguiprim](https://github.com/Guiguiprim) for their contributions to - Initial version. +[0.67.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.67.0 [0.66.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.66.0 [0.65.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.65.0 [0.64.0]: https://github.com/nextest-rs/nextest/releases/tag/nextest-runner-0.64.0 diff --git a/site/src/changelog.md b/site/src/changelog.md index 0bcd150b3f2..5800e98c004 100644 --- a/site/src/changelog.md +++ b/site/src/changelog.md @@ -1,3 +1,4 @@ + --- icon: material/list-box toc_depth: 1 @@ -8,6 +9,14 @@ toc_depth: 1 This page documents new features and bugfixes for cargo-nextest. Please see the [stability policy](https://nexte.st/docs/stability/) for how versioning works with cargo-nextest. +## [0.9.84] - 2024-11-15 + +### Fixed + +- Fixed a rare crash during test run cancellation ([#1876]). + +[#1876]: https://github.com/nextest-rs/nextest/pull/1876 + ## [0.9.83] - 2024-11-15 ### Added @@ -1171,6 +1180,7 @@ Supported in this initial release: - [Test retries](https://nexte.st/book/retries.md) and flaky test detection - [JUnit support](https://nexte.st/book/junit.md) for integration with other test tooling +[0.9.84]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.84 [0.9.83]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.83 [0.9.82]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.82 [0.9.81]: https://github.com/nextest-rs/nextest/releases/tag/cargo-nextest-0.9.81 diff --git a/site/src/docs/configuration/per-test-overrides.md b/site/src/docs/configuration/per-test-overrides.md index abcd7a951fb..3b2e9aa8760 100644 --- a/site/src/docs/configuration/per-test-overrides.md +++ b/site/src/docs/configuration/per-test-overrides.md @@ -43,7 +43,7 @@ for more information. `junit.store-success-output` and `junit.store-failure-output` : In [JUnit reports](../machine-readable/junit.md), whether to store output for passing and failing tests, respectively. -`default-filter` +`default-filter` : The [default filter](../running.md#running-a-subset-of-tests-by-default) on this platform. Only supported for overrides that specify `platform` and not `filter`. ## Example diff --git a/site/src/docs/running.md b/site/src/docs/running.md index ebd75c02ea1..bf16291a797 100644 --- a/site/src/docs/running.md +++ b/site/src/docs/running.md @@ -122,7 +122,7 @@ skipped due to their presence in the default filter. For example: #### Per-platform default filters - + Default filters can be set per-platform via [the `overrides` section](configuration/per-test-overrides.md).