File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
documentation/src/docs/asciidoc/release-notes
junit-jupiter-migrationsupport/src/main/java
platform-tooling-support-tests/src/test/java/platform/tooling/support/tests Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,11 @@ repository on GitHub.
4040* Fix support for test methods with the same signature as a package-private methods
4141 declared in super classes in different packages.
4242
43+ [[release-notes-6.0.1-junit-jupiter-deprecations-and-breaking-changes]]
44+ ==== Deprecations and Breaking Changes
45+
46+ * Mark `org.junit.jupiter.migrationsupport` module descriptor as deprecated for removal.
47+
4348[[release-notes-6.0.1-junit-jupiter-new-features-and-improvements]]
4449==== New Features and Improvements
4550
Original file line number Diff line number Diff line change 1212 * Support for migrating from JUnit 4 to JUnit Jupiter.
1313 *
1414 * @since 5.0
15+ * @deprecated Please migrate to the corresponding APIs and extensions provided
16+ * by JUnit Jupiter.
1517 */
18+ @ Deprecated (forRemoval = true )
1619module org .junit .jupiter .migrationsupport {
1720
1821 requires static transitive org .apiguardian .api ;
Original file line number Diff line number Diff line change 4444class ModularUserGuideTests {
4545
4646 private static final String DOCUMENTATION_MODULE_DESCRIPTOR = """
47+ @SuppressWarnings("removal")
4748 open module documentation {
4849 exports example.testkit; // just here to ensure documentation example sources are compiled
4950
You can’t perform that action at this time.
0 commit comments