Update release notes, fixes #1692, refs #1704

This commit is contained in:
Andreas Dangel
2019-03-06 19:45:56 +01:00
parent 50158b48c8
commit eba69e3bb9
2 changed files with 23 additions and 0 deletions

View File

@ -14,11 +14,20 @@ This is a {{ site.pmd.release_type }} release.
### New and noteworthy
#### New Rules
* The new Java rule {% rule "java/design/AvoidUncheckedExceptionsInSignatures" %} finds methods or constructors
that declare unchecked exceptions in their `throws` clause. This forces the caller to handle the exception,
even though it is a runtime exception.
### Fixed Issues
* java-design
* [#1692](https://github.com/pmd/pmd/issues/1692): \[java] Add rule to avoid declaration of throwing unchecked exception
### API Changes
### External Contributions
* [#1704](https://github.com/pmd/pmd/pull/1704): \[java] Added AvoidUncheckedExceptionsInSignatures Rule - [Bhanu Prakash Pamidi](https://github.com/pamidi99)
{% endtocmaker %}

View File

@ -0,0 +1,14 @@
<?xml version="1.0"?>
<ruleset name="6130"
xmlns="http://pmd.sourceforge.net/ruleset/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://pmd.sourceforge.net/ruleset/2.0.0 https://pmd.sourceforge.io/ruleset_2_0_0.xsd">
<description>
This ruleset contains links to rules that are new in PMD v6.13.0
</description>
<rule ref="category/java/design.xml/AvoidUncheckedExceptionsInSignatures"/>
</ruleset>