Update release notes, refs #1709
This commit is contained in:
@ -37,6 +37,10 @@ Any feedback would be greatly appreciated.
|
||||
methods in test classes, which are not annotated with `@Test`. These methods might be test cases where
|
||||
the annotation has been forgotten. Because of that those test cases are never executed.
|
||||
|
||||
* The new Java rule {% rule "java/bestpractices/WhileLoopWithLiteralBoolean" %} (`java-bestpractices`) finds
|
||||
Do-While-Loops and While-Loops that can be simplified since they use simply `true` or `false` as their
|
||||
loop condition.
|
||||
|
||||
### Fixed Issues
|
||||
|
||||
### API Changes
|
||||
@ -55,6 +59,7 @@ Any feedback would be greatly appreciated.
|
||||
|
||||
* [#1704](https://github.com/pmd/pmd/pull/1704): \[java] Added AvoidUncheckedExceptionsInSignatures Rule - [Bhanu Prakash Pamidi](https://github.com/pamidi99)
|
||||
* [#1706](https://github.com/pmd/pmd/pull/1706): \[java] Add DetachedTestCase rule - [David Burström](https://github.com/davidburstromspotify)
|
||||
* [#1709](https://github.com/pmd/pmd/pull/1709): \[java] Detect while loops with literal booleans conditions - [David Burström](https://github.com/davidburstromspotify)
|
||||
|
||||
{% endtocmaker %}
|
||||
|
||||
|
@ -8,6 +8,7 @@
|
||||
This ruleset contains links to rules that are new in PMD v6.13.0
|
||||
</description>
|
||||
|
||||
<rule ref="category/java/bestpractices.xml/WhileLoopWithLiteralBoolean"/>
|
||||
<rule ref="category/java/design.xml/AvoidUncheckedExceptionsInSignatures"/>
|
||||
<rule ref="category/java/errorprone.xml/DetachedTestCase"/>
|
||||
|
||||
|
Reference in New Issue
Block a user