From c06b6af8bc960c1e373ad42189bd1e77548bb84e Mon Sep 17 00:00:00 2001 From: Marc Philipp Date: Sat, 15 May 2021 10:35:24 +0200 Subject: [PATCH] Move #2423 to 5.7.2 --- .../docs/asciidoc/release-notes/release-notes-5.7.2.adoc | 6 ++++++ .../docs/asciidoc/release-notes/release-notes-5.8.0-M1.adoc | 3 --- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/documentation/src/docs/asciidoc/release-notes/release-notes-5.7.2.adoc b/documentation/src/docs/asciidoc/release-notes/release-notes-5.7.2.adoc index 44b8253af7f..01858e3863b 100644 --- a/documentation/src/docs/asciidoc/release-notes/release-notes-5.7.2.adoc +++ b/documentation/src/docs/asciidoc/release-notes/release-notes-5.7.2.adoc @@ -30,6 +30,12 @@ GitHub. * Test classes annotated with `@ResourceLock` no longer run in parallel with `@Isolated` ones. +==== New Features and Improvements + +* Improved `ExclusiveResource` handling: if a `Node` has only read locks and no read-write + locks, then descendants are not forced into `SAME_THREAD` execution and can run + concurrently. + [[release-notes-5.7.2-junit-vintage]] === JUnit Vintage diff --git a/documentation/src/docs/asciidoc/release-notes/release-notes-5.8.0-M1.adoc b/documentation/src/docs/asciidoc/release-notes/release-notes-5.8.0-M1.adoc index bff82f01666..912bb36b1b9 100644 --- a/documentation/src/docs/asciidoc/release-notes/release-notes-5.8.0-M1.adoc +++ b/documentation/src/docs/asciidoc/release-notes/release-notes-5.8.0-M1.adoc @@ -44,9 +44,6 @@ on GitHub. * Documented constant value of `ExclusiveResource.GLOBAL_KEY`. * Instances of `TestIdentifier` and `UniqueId` now retain less memory because they no longer store `String` representations of unique IDs. -* Improved `ExclusiveResource` handling: if a `Node` has only read locks and no read-write - locks, then descendants are not forced into `SAME_THREAD` execution and can run - concurrently. * Tools that make multiple calls to the `Launcher` API should now create a `LauncherSession` in order to allow for executing global setup and teardown code exactly once via the new `LauncherSessionListener` interface that can be registered via Java’s