From a20c17c814460c36089607d3f6fc5c8dec269ecc Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Thu, 25 Aug 2016 19:14:46 +0200 Subject: [PATCH] Update M3 release notes Issue: #442 --- documentation/src/docs/asciidoc/release-notes-5.0.0-M3.adoc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/documentation/src/docs/asciidoc/release-notes-5.0.0-M3.adoc b/documentation/src/docs/asciidoc/release-notes-5.0.0-M3.adoc index 6bf6dc705876..1ac598f7e2ae 100644 --- a/documentation/src/docs/asciidoc/release-notes-5.0.0-M3.adoc +++ b/documentation/src/docs/asciidoc/release-notes-5.0.0-M3.adoc @@ -42,6 +42,9 @@ on GitHub. * `MethodSelector` and `DiscoverySelectors.selectMethod()` have been renamed to `JavaMethodSelector` and `DiscoverySelectors.selectJavaMethod()` to align with `JavaMethodSource`. +* Generic name-based discovery selectors (i.e., `selectName()` and `selectNames()`) in + `DiscoverySelectors` have been deprecated in favor of the dedicated + `selectJavaPackage(String)`, `selectJavaClass(String)`, and `selectJavaMethod(String)` methods. * The `-p` command-line option for configuring additional classpath entries for the `ConsoleLauncher` has been renamed to `-cp` in order to align with the option names for the standard `java` executable. In addition, a new `--class-path` alias has been @@ -81,6 +84,7 @@ on GitHub. * The `JupiterTestEngine` now supports selection of test methods via their unique ID for methods that accept arrays or primitive types as parameters. +* `ExtensionContext.Store` is now thread-safe. ====== New Features