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 44b8253af7fd..01858e3863b5 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 bff82f016661..912bb36b1b95 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