pmd/docs/pages/release_notes.md

271 lines
18 KiB
Markdown
Raw Normal View History

---
title: PMD Release Notes
permalink: pmd_release_notes.html
keywords: changelog, release notes
---
2017-06-24 22:28:05 +02:00
## ????? - 6.0.0-SNAPSHOT
2017-06-24 22:28:05 +02:00
The PMD team is pleased to announce PMD 6.0.0.
2016-07-27 22:03:51 +02:00
2017-06-24 22:28:05 +02:00
This is a major release.
2016-07-07 20:48:01 +02:00
2017-04-29 20:22:28 +02:00
### Table Of Contents
* [New and noteworthy](#new-and-noteworthy)
* [Revamped Apex CPD](#revamped-apex-cpd)
* [Java Type Resolution](#java-type-resolution)
* [Metrics Framework](#metrics-framework)
2017-09-03 20:06:07 -03:00
* [Error Reporting](#error-reporting)
* [Java Symbol Table](#java-symbol-table)
* [Apex Parser Update](#apex-parser-update)
* [Modified Rules](#modified-rules)
* [Removed Rules](#removed-rules)
* [Fixed Issues](#fixed-issues)
* [API Changes](#api-changes)
* [External Contributions](#external-contributions)
2017-04-29 20:22:28 +02:00
### New and noteworthy
#### Revamped Apex CPD
2017-07-10 20:57:02 +02:00
We are now using the Apex Jorje Lexer to tokenize Apex code for CPD. This change means:
* All comments are now ignored for CPD. This is consistent with how other languages such as Java and Groovy work.
* Tokenization honors the language specification, which improves accuracy.
CPD will therefore have less false positives and false negatives.
#### Java Type Resolution
2017-07-08 16:23:17 -03:00
As part of Google Summer of Code 2017, [Bendegúz Nagy](https://github.com/WinterGrascph)'s work on type resolution for Java continues.
2017-07-25 11:40:46 -03:00
For this release he has extended support for method calls for both instance and static methods.
2017-07-08 16:23:17 -03:00
2017-07-13 15:42:30 -03:00
Method shadowing and overloading are supported, as are varargs. However, the selection of the target method upon the presence
2017-07-11 15:55:56 -03:00
of generics and type inference is still work in progress. Expect it in forecoming releases.
2017-07-08 16:23:17 -03:00
2017-07-21 12:50:52 -03:00
As for fields, the basic support was in place for release 5.8.0, but has now been expanded to support static fields.
2017-07-10 20:47:48 +02:00
#### Metrics Framework
2017-07-10 20:57:02 +02:00
As part of Google Summer of Code 2017, [Clément Fournier](https://github.com/oowekyala) is continuing his work
2017-07-10 20:47:48 +02:00
on the new metrics framework for object-oriented metrics.
There are already a couple of metrics (e.g. ATFD, WMC, Cyclo, LoC) implemented. More metrics are planned.
Based on those metrics, rules like "GodClass" detection can be implemented more easily.
2017-08-14 10:20:48 +02:00
The Metrics framework has been abstracted and is available in `pmd-core` for other languages. With this
PMD release, the metrics framework is supported for both Java and Apex.
2017-09-03 20:06:07 -03:00
#### Error Reporting
A number of improvements on error reporting have taken place, meaning changes to some of the report formats.
##### Processing Errors
Processing errors can now provide not only the message previously included on some reports, but also a full stacktrace.
This will allow better error reports when providing feedback to the PMD team and help in debugging issues.
The report formats providing full stacktrace of errors are:
* html
* summaryhtml
* textcolor
* vbhtml
* xml
##### Configuration Errors
2017-07-25 13:43:57 -03:00
For a long time reports have been notified of configuration errors on rules, but they have remained hidden.
On a push to make these more evident to users, and help them get the best results out of PMD, we have started
to include them on the reports.
So far, only reports that include processing errors are showing configuration errors. In other words, the report formats
providing configuration error reporting are:
* csv
* html
* summaryhtml
* text
* textcolor
* vbhtml
* xml
As we move forward we will be able to detect and report more configuration errors (ie: incomplete `auxclasspath`)
and include them to such reports.
2017-07-10 20:47:48 +02:00
2017-06-26 15:09:34 -03:00
#### Modified Rules
* The rule `UnnecessaryFinalModifier` (ruleset `java-unnecessarycode`) has been revamped to detect more cases.
2017-07-10 20:57:02 +02:00
It will now flag anonymous class' methods marked as final (can't be overridden, so it's pointless), along with
final methods overridden / defined within enum instances.
2017-06-26 15:09:34 -03:00
2017-08-16 14:15:46 -03:00
* The rule `UnnecessaryParentheses` (ruleset `java-controversial`) has been merged into `UselessParentheses`
(ruleset `java-unnecessary`). The rule covers all scenarios previously covered by either rule.
2017-08-16 15:16:44 -03:00
* The rule `UncommentedEmptyConstructor` (ruleset `java-design`) will now ignore empty constructors annotated with
`javax.inject.Inject`.
2017-08-25 15:01:37 -03:00
* The rule `AbstractClassWithoutAnyMethod` (ruleset `java-design`) will now ignore classes annotated with
`com.google.auto.value.AutoValue`.
2017-08-26 10:56:20 +02:00
* The rule `GodClass` (ruleset `java-design`) has been revamped to use the new metrics framework.
#### Removed Rules
2017-06-26 14:11:35 -03:00
* The deprecated rule `UseSingleton` has been removed from the ruleset `java-design`. The rule has been renamed
long time ago to `UseUtilityClass`.
2017-05-01 17:42:38 +02:00
2017-08-09 12:24:15 -03:00
#### Java Symbol Table
A [bug in symbol table](https://github.com/pmd/pmd/pull/549/commits/0958621ca884a8002012fc7738308c8dfc24b97c) prevented
the symbol table analysis to properly match primitive arrays types. The issue [affected the `java-unsedcode/UnusedPrivateMethod`](https://github.com/pmd/pmd/issues/521)
rule, but other rules may now produce improved results as consequence of this fix.
#### Apex Parser Update
2017-08-14 10:20:48 +02:00
The Apex parser version was bumped, from `1.0-sfdc-187` to `1.0-sfdc-224`. This update let us take full advantage
of the latest improvements from Salesforce, but introduces some breaking changes:
2017-08-14 10:20:48 +02:00
* `BlockStatements` are now created for all control structures, even if no brace is used. We have therefore added
a `hasCurlyBrace` method to differentiate between both scenarios.
* New AST node types are available. In particular `CastExpression`, `ConstructorPreamble`, `IllegalStoreExpression`,
`MethodBlockStatement`, `Modifier`, `MultiStatement`, `NestedExpression`, `NestedStoreExpression`,
`NewKeyValueObjectExpression` and `StatementExecuted`
* Some nodes have been removed. Such is the case of `TestNode`, `DottedExpression` and `NewNameValueObjectExpression`
(replaced by `NewKeyValueObjectExpression`)
2017-08-14 10:20:48 +02:00
All existing rules have been updated to reflect these changes. If you have custom rules, be sure to update them.
2017-08-09 12:24:15 -03:00
2016-12-13 13:38:59 -03:00
### Fixed Issues
2016-06-25 13:51:03 +02:00
2017-07-07 10:52:23 +02:00
* apex
* [#488](https://github.com/pmd/pmd/pull/488): \[apex] Use Apex lexer for CPD
2017-08-12 19:12:44 +02:00
* [#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
2017-07-07 22:46:29 +02:00
* cpp
* [#448](https://github.com/pmd/pmd/issues/448): \[cpp] Write custom CharStream to handle continuation characters
2017-06-26 14:13:35 -03:00
* java
* [#1513](https://sourceforge.net/p/pmd/bugs/1513/): \[java] Remove deprecated rule UseSingleton
2017-07-17 20:50:50 +02:00
* [#487](https://github.com/pmd/pmd/pull/487): \[java] Fix typeresolution for anonymous extending object
2017-07-27 11:15:15 -03:00
* [#496](https://github.com/pmd/pmd/issues/496): \[java] processing error on generics inherited from enclosing class
2017-07-29 18:54:44 -03:00
* [#527](https://github.com/pmd/pmd/issues/527): \[java] Lombok getter annotation on enum is not recognized correctly
2017-08-02 23:58:57 -03:00
* java-comments
* [#536](https://github.com/pmd/pmd/issues/536): \[java] CommentDefaultAccessModifierRule ignores constructors
2017-06-26 13:03:28 -03:00
* java-controversial
* [#408](https://github.com/pmd/pmd/issues/408): \[java] DFA not analyzing asserts
2017-08-16 14:15:46 -03:00
* [#537](https://github.com/pmd/pmd/issues/537): \[java] UnnecessaryParentheses fails to detect obvious scenario
2017-08-16 15:16:44 -03:00
* java-design
* [#357](https://github.com/pmd/pmd/issues/357): \[java] UncommentedEmptyConstructor consider annotations on Constructor
2017-08-25 15:01:37 -03:00
* [#438](https://github.com/pmd/pmd/issues/438): \[java] Relax AbstractClassWithoutAnyMethod when class is annotated by @AutoValue
2017-07-24 17:51:41 -03:00
* java-sunsecure
* [#468](https://github.com/pmd/pmd/issues/468): \[java] ArrayIsStoredDirectly false positive
2017-08-09 12:24:15 -03:00
* java-unusedcode
* [#521](https://github.com/pmd/pmd/issues/521): \[java] UnusedPrivateMethod returns false positives with primitive data type in map argument
2017-06-26 15:09:34 -03:00
* java-unnecessarycode
* [#412](https://github.com/pmd/pmd/issues/412): \[java] java-unnecessarycode/UnnecessaryFinalModifier missing cases
2017-05-26 14:27:44 -03:00
2017-06-24 22:28:05 +02:00
### API Changes
2017-04-29 20:22:28 +02:00
2017-06-26 13:08:14 -03:00
* The class `net.sourceforge.pmd.lang.dfa.NodeType` has been converted to an enum.
All node types are enum members now instead of int constants. The names for node types are retained.
2017-07-17 20:23:07 +02:00
* The properties API (rule and report properties) have been revamped to be fully typesafe. This is everything
around `net.sourceforge.pmd.PropertyDescriptor`.
2017-08-17 19:57:58 +02:00
* The rule classes `net.sourceforge.pmd.lang.apex.rule.apexunit.ApexUnitTestClassShouldHaveAsserts`
and `net.sourceforge.pmd.lang.apex.rule.apexunit.ApexUnitTestShouldNotUseSeeAllDataTrue` have been
renamed to `ApexUnitTestClassShouldHaveAssertsRule` and `ApexUnitTestShouldNotUseSeeAllDataTrueRule`,
respectively. This is to comply with the naming convention, that each rule class should be suffixed with "Rule".
This change has no impact on custom rulesets, since the rule names themselves didn't change.
* The never implemented method `PMD.processFiles(PMDConfiguration, RuleSetFactory, Collection<File>, RuleContext, ProgressMonitor)` along with the interface `ProgressMonitor` has been removed.
* All APIs deprecated in older versions are now removed. This includes:
* `Renderer.getPropertyDefinitions`
* `AbstractRenderer.defineProperty(String, String)`
* `AbstractRenderer.propertyDefinitions`
* `ReportListener`
* `Report.addListener(ReportListener)`
* `SynchronizedReportListener`
* `CPDConfiguration.CPDConfiguration(int, Language, String)`
* `CPDConfiguration.getRendererFromString(String)`
* `StreamUtil`
* `StringUtil.appendXmlEscaped(StringBuilder, String)`
* `StringUtil.htmlEncode(String)`
* Several methods in `net.sourceforge.pmd.util.CollectionUtil` have been deprecated and will be removed in PMD 7.0.0. In particular:
* `CollectionUtil.addWithoutDuplicates(T[], T)`
* `CollectionUtil.addWithoutDuplicates(T[], T[])`
* `CollectionUtil.areSemanticEquals(T[], T[])`
* `CollectionUtil.areEqual(Object, Object)`
* `CollectionUtil.arraysAreEqual(Object, Object)`
* `CollectionUtil.valuesAreTransitivelyEqual(Object[], Object[])`
* Several methods in `net.sourceforge.pmd.util.StringUtil` have been deprecated and will be removed in PMD 7.0.0. In particular:
* `StringUtil.startsWithAny(String, String[])`
* `StringUtil.isNotEmpty(String)`
* `StringUtil.isEmpty(String)`
* `StringUtil.isMissing(String)`
* `StringUtil.areSemanticEquals(String, String)`
* `StringUtil.replaceString(String, String, String)`
* `StringUtil.replaceString(String, char, String)`
* `StringUtil.substringsOf(String, char)`
* `StringUtil.substringsOf(String, String)`
* `StringUtil.asStringOn(StringBuffer, Iterator, String)`
* `StringUtil.asStringOn(StringBuilder, Object[], String)`
* `StringUtil.lpad(String, int)`
2017-08-28 16:14:24 -03:00
* The class `net.sourceforge.pmd.lang.java.typeresolution.typedefinition.JavaTypeDefinition` is now abstract, and has been enhanced
to provide several new methods.
2017-04-29 20:22:28 +02:00
### External Contributions
2017-05-01 16:51:07 +02:00
* [#420](https://github.com/pmd/pmd/pull/420): \[java] Fix UR anomaly in assert statements - [Clément Fournier](https://github.com/oowekyala)
2017-07-10 20:47:48 +02:00
* [#482](https://github.com/pmd/pmd/pull/482): \[java] Metrics testing framework + improved capabilities for metrics - [Clément Fournier](https://github.com/oowekyala)
* [#484](https://github.com/pmd/pmd/pull/484): \[core] Changed linux usage to a more unix like path - [patriksevallius](https://github.com/patriksevallius)
2017-07-08 16:25:46 -03:00
* [#486](https://github.com/pmd/pmd/pull/486): \[java] Add basic method typeresolution - [Bendegúz Nagy](https://github.com/WinterGrascph)
2017-07-11 15:55:56 -03:00
* [#492](https://github.com/pmd/pmd/pull/492): \[java] Typeresolution for overloaded methods - [Bendegúz Nagy](https://github.com/WinterGrascph)
2017-07-10 20:47:48 +02:00
* [#495](https://github.com/pmd/pmd/pull/495): \[core] Custom rule reinitialization code - [Clément Fournier](https://github.com/oowekyala)
2017-07-17 20:23:07 +02:00
* [#479](https://github.com/pmd/pmd/pull/479): \[core] Typesafe and immutable properties - [Clément Fournier](https://github.com/oowekyala)
2017-07-19 20:07:14 +02:00
* [#499](https://github.com/pmd/pmd/pull/499): \[java] Metrics memoization tests - [Clément Fournier](https://github.com/oowekyala)
2017-07-13 15:42:30 -03:00
* [#501](https://github.com/pmd/pmd/pull/501): \[java] Add support for most specific vararg method type resolution - [Bendegúz Nagy](https://github.com/WinterGrascph)
2017-07-21 12:50:52 -03:00
* [#502](https://github.com/pmd/pmd/pull/502): \[java] Add support for static field type resolution - [Bendegúz Nagy](https://github.com/WinterGrascph)
2017-07-21 11:18:18 +02:00
* [#505](https://github.com/pmd/pmd/pull/505): \[java] Followup on metrics - [Clément Fournier](https://github.com/oowekyala)
2017-07-24 12:42:38 -03:00
* [#506](https://github.com/pmd/pmd/pull/506): \[java] Add reduction rules to type inference - [Bendegúz Nagy](https://github.com/WinterGrascph)
2017-07-25 21:41:13 +02:00
* [#511](https://github.com/pmd/pmd/pull/511): \[core] Prepare abstraction of the metrics framework - [Clément Fournier](https://github.com/oowekyala)
2017-07-24 14:40:52 -03:00
* [#512](https://github.com/pmd/pmd/pull/512): \[java] Add incorporation to type inference - [Bendegúz Nagy](https://github.com/WinterGrascph)
2017-07-24 14:54:57 -03:00
* [#513](https://github.com/pmd/pmd/pull/513): \[java] Fix for maximally specific method selection - [Bendegúz Nagy](https://github.com/WinterGrascph)
2017-07-25 11:40:46 -03:00
* [#514](https://github.com/pmd/pmd/pull/514): \[java] Add static method type resolution - [Bendegúz Nagy](https://github.com/WinterGrascph)
2017-07-28 14:53:52 +02:00
* [#517](https://github.com/pmd/pmd/pull/517): \[doc] Metrics documentation - [Clément Fournier](https://github.com/oowekyala)
2017-08-28 20:31:08 +02:00
* [#518](https://github.com/pmd/pmd/pull/518): \[core] Properties refactoring: factorized enumerated property - [Clément Fournier](https://github.com/oowekyala)
2017-07-28 14:45:38 +02:00
* [#523](https://github.com/pmd/pmd/pull/523): \[java] Npath complexity metric and rule - [Clément Fournier](https://github.com/oowekyala)
2017-08-02 16:38:18 -03:00
* [#524](https://github.com/pmd/pmd/pull/524): \[java] Add support for explicit type arguments with method invocation - [Bendegúz Nagy](https://github.com/WinterGrascph)
2017-07-29 18:51:43 -03:00
* [#525](https://github.com/pmd/pmd/pull/525): \[core] Fix line ending and not ignored files issues - [Matias Comercio](https://github.com/MatiasComercio)
2017-07-29 19:01:25 -03:00
* [#528](https://github.com/pmd/pmd/pull/528): \[core] Fix typo - [Ayoub Kaanich](https://github.com/kayoub5)
2017-08-13 12:07:15 +02:00
* [#529](https://github.com/pmd/pmd/pull/529): \[java] Abstracted the Java metrics framework - [Clément Fournier](https://github.com/oowekyala)
2017-07-29 18:54:44 -03:00
* [#530](https://github.com/pmd/pmd/pull/530): \[java] Fix issue #527: Lombok getter annotation on enum is not recognized correctly - [Clément Fournier](https://github.com/oowekyala)
2017-09-03 20:06:07 -03:00
* [#533](https://github.com/pmd/pmd/pull/533): \[core] improve error message - [Dennis Kieselhorst](https://github.com/deki)
2017-08-01 11:24:16 -03:00
* [#535](https://github.com/pmd/pmd/pull/535): \[apex] Fix broken Apex visitor adapter - [Clément Fournier](https://github.com/oowekyala)
2017-08-06 22:22:17 +02:00
* [#542](https://github.com/pmd/pmd/pull/542): \[java] Metrics abstraction - [Clément Fournier](https://github.com/oowekyala)
2017-08-14 10:20:48 +02:00
* [#545](https://github.com/pmd/pmd/pull/545): \[apex] Apex metrics framework - [Clément Fournier](https://github.com/oowekyala)
2017-08-13 12:07:15 +02:00
* [#548](https://github.com/pmd/pmd/pull/548): \[java] Metrics documentation - [Clément Fournier](https://github.com/oowekyala)
2017-08-15 00:29:39 -03:00
* [#550](https://github.com/pmd/pmd/pull/550): \[java] Add basic resolution to type inference - [Bendegúz Nagy](https://github.com/WinterGrascph)
2017-08-19 18:32:49 +02:00
* [#553](https://github.com/pmd/pmd/pull/553): \[java] Refactored ParserTst into a static utility class + add getSourceFromClass - [Clément Fournier](https://github.com/oowekyala)
2017-08-16 14:15:46 -03:00
* [#554](https://github.com/pmd/pmd/pull/554): \[java] Fix #537: UnnecessaryParentheses fails to detect obvious scenario - [Clément Fournier](https://github.com/oowekyala)
2017-08-15 20:13:08 +02:00
* [#555](https://github.com/pmd/pmd/pull/555): \[java] Changed metrics/CyclomaticComplexityRule to use WMC when reporting classes - [Clément Fournier](https://github.com/oowekyala)
2017-08-16 15:16:44 -03:00
* [#556](https://github.com/pmd/pmd/pull/556): \[java] Fix #357: UncommentedEmptyConstructor consider annotations on Constructor - [Clément Fournier](https://github.com/oowekyala)
2017-08-15 20:36:33 +02:00
* [#557](https://github.com/pmd/pmd/pull/557): \[java] Fix NPath metric not counting ternaries correctly - [Clément Fournier](https://github.com/oowekyala)
2017-08-17 15:04:16 -03:00
* [#563](https://github.com/pmd/pmd/pull/563): \[java] Add support for basic method type inference for strict invocation - [Bendegúz Nagy](https://github.com/WinterGrascph)
2017-08-21 22:08:29 +02:00
* [#567](https://github.com/pmd/pmd/pull/567): \[java] Last API change for metrics (metric options) - [Clément Fournier](https://github.com/oowekyala)
2017-08-24 11:15:12 -03:00
* [#570](https://github.com/pmd/pmd/pull/570): \[java] Model lower, upper and intersection types - [Bendegúz Nagy](https://github.com/WinterGrascph)
2017-08-23 20:39:05 +02:00
* [#573](https://github.com/pmd/pmd/pull/573): \[java] Data class rule - [Clément Fournier](https://github.com/oowekyala)
2017-08-26 10:56:20 +02:00
* [#576](https://github.com/pmd/pmd/pull/576): \[doc]\[java] Add hint for Guava users in InefficientEmptyStringCheck - [mmoehring](https://github.com/mmoehring)
* [#578](https://github.com/pmd/pmd/pull/578): \[java] Refactored god class rule - [Clément Fournier](https://github.com/oowekyala)
2017-08-28 16:14:24 -03:00
* [#579](https://github.com/pmd/pmd/pull/579): \[java] Update parsing to produce upper and lower bounds - [Bendegúz Nagy](https://github.com/WinterGrascph)
2017-08-26 11:05:41 +02:00
* [#580](https://github.com/pmd/pmd/pull/580): \[core] Add AbstractMetric to topple the class hierarchy of metrics - [Clément Fournier](https://github.com/oowekyala)
2017-08-25 15:01:37 -03:00
* [#581](https://github.com/pmd/pmd/pull/581): \[java] Relax AbstractClassWithoutAnyMethod when class is annotated by @AutoValue - [Niklas Baudy](https://github.com/vanniktech)
2017-08-29 19:54:34 +02:00
* [#583](https://github.com/pmd/pmd/pull/583): \[java] Documentation about writing metrics - [Clément Fournier](https://github.com/oowekyala)