Update release notes, refs #1709

This commit is contained in:
Andreas Dangel
2019-03-11 15:59:06 +01:00
parent b77225bcc1
commit c60c58dc4d
2 changed files with 6 additions and 0 deletions

View File

@ -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 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 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 ### Fixed Issues
### API Changes ### 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) * [#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) * [#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 %} {% endtocmaker %}

View File

@ -8,6 +8,7 @@
This ruleset contains links to rules that are new in PMD v6.13.0 This ruleset contains links to rules that are new in PMD v6.13.0
</description> </description>
<rule ref="category/java/bestpractices.xml/WhileLoopWithLiteralBoolean"/>
<rule ref="category/java/design.xml/AvoidUncheckedExceptionsInSignatures"/> <rule ref="category/java/design.xml/AvoidUncheckedExceptionsInSignatures"/>
<rule ref="category/java/errorprone.xml/DetachedTestCase"/> <rule ref="category/java/errorprone.xml/DetachedTestCase"/>