Update changelog, refs #660

This commit is contained in:
Juan Martín Sotuyo Dodero
2017-10-09 15:48:40 -03:00
parent 4dcef95e43
commit 047dfa54f0

View File

@ -105,6 +105,10 @@ and include them to such reports.
* The new rule `ForLoopCanBeForeach` (ruleset `java-migration`) helps to identify those for-loops that can
be safely refactored into for-each-loops available since java 1.5.
* The new rule `AvoidSoslInLoops` (ruleset `apex-performance`) is the companion of the old
`apex-performance/AvoidSoqlInLoops` rule, flagging SOSL (Salesforce Object Search Language) queries when within
loops, to avoid governor issues, and hitting the database too often.
#### Modified Rules
* The rule `UnnecessaryFinalModifier` (ruleset `java-unnecessarycode`) has been revamped to detect more cases.
@ -159,6 +163,7 @@ All existing rules have been updated to reflect these changes. If you have custo
* [#488](https://github.com/pmd/pmd/pull/488): \[apex] Use Apex lexer for CPD
* [#489](https://github.com/pmd/pmd/pull/489): \[apex] Update Apex compiler
* [#500](https://github.com/pmd/pmd/issues/500): \[apex] Running through CLI shows jorje optimization messages
* [#637](https://github.com/pmd/pmd/issues/637): \[apex] Avoid SOSL in loops
* cpp
* [#448](https://github.com/pmd/pmd/issues/448): \[cpp] Write custom CharStream to handle continuation characters
* java
@ -292,4 +297,5 @@ All existing rules have been updated to reflect these changes. If you have custo
* [#588](https://github.com/pmd/pmd/pull/588): \[java] XPath function to compute metrics - [Clément Fournier](https://github.com/oowekyala)
* [#598](https://github.com/pmd/pmd/pull/598): \[java] Fix #388: controversial.AvoidLiteralsInIfCondition 0.0 false positive - [Clément Fournier](https://github.com/oowekyala)
* [#620](https://github.com/pmd/pmd/pull/620): \[core] Moved properties to n.s.pmd.properties - [Clément Fournier](https://github.com/oowekyala)
* [#660](https://github.com/pmd/pmd/pull/660): \[apex] avoid sosl in loops - [Jan Aertgeerts](https://github.com/JAertgeerts)