Thread: [pmd-devel] [ANNOUNCE] PMD 6.54.0 released
A source code analyzer
Brought to you by:
adangel,
juansotuyo
|
From: Andreas D. <and...@pm...> - 2023-01-28 15:55:00
Attachments:
OpenPGP_signature
|
* Downloads: https://github.com/pmd/pmd/releases/tag/pmd_releases%2F6.54.0 * Documentation: https://pmd.github.io/pmd-6.54.0/ 28-January-2023 - 6.54.0 The PMD team is pleased to announce PMD 6.54.0. This is a minor release. Table Of Contents * New and noteworthy <https://sourceforge.net/p/pmd/news/2023/01/pmd-6540-28-january-2023-released/#new-and-noteworthy> o New report format html-report-v2.xslt <https://sourceforge.net/p/pmd/news/2023/01/pmd-6540-28-january-2023-released/#new-report-format-html-report-v2.xslt> * Fixed Issues <https://sourceforge.net/p/pmd/news/2023/01/pmd-6540-28-january-2023-released/#fixed-issues> * API Changes <https://sourceforge.net/p/pmd/news/2023/01/pmd-6540-28-january-2023-released/#api-changes> o PMD CLI <https://sourceforge.net/p/pmd/news/2023/01/pmd-6540-28-january-2023-released/#pmd-cli> o Deprecated APIs <https://sourceforge.net/p/pmd/news/2023/01/pmd-6540-28-january-2023-released/#deprecated-apis> + For removal <https://sourceforge.net/p/pmd/news/2023/01/pmd-6540-28-january-2023-released/#for-removal> + Internal APIs <https://sourceforge.net/p/pmd/news/2023/01/pmd-6540-28-january-2023-released/#internal-apis> + Experimental APIs <https://sourceforge.net/p/pmd/news/2023/01/pmd-6540-28-january-2023-released/#experimental-apis> * External Contributions <https://sourceforge.net/p/pmd/news/2023/01/pmd-6540-28-january-2023-released/#external-contributions> * Stats <https://sourceforge.net/p/pmd/news/2023/01/pmd-6540-28-january-2023-released/#stats> New and noteworthy New report format html-report-v2.xslt Thanks to @mohan-chinnappan-n a new PMD report format has been added which features a data table with charting functions. It uses an XSLT stylesheet to convert PMD's XML format into HTML. See the example report <https://pmd.github.io/latest/report-examples/html-report-v2.html>. Fixed Issues * apex-bestpractices * #2669 <https://github.com/pmd/pmd/issues/2669>: [apex] UnusedLocalVariable false positive in dynamic SOQL * core * #4026 <https://github.com/pmd/pmd/issues/4026>: [cli] Filenames printed as absolute paths in the report despite parameter |--short-names| * #4279 <https://github.com/pmd/pmd/issues/4279>: [core] Can not set ruleset property value to empty * #4329 <https://github.com/pmd/pmd/pull/4329>: [core] Refactor usage of snakeyaml * #4340 <https://github.com/pmd/pmd/issues/4340>: [core] Allow to filter found matches in CPDReport * java * #4364 <https://github.com/pmd/pmd/issues/4364>: [java] Parsing error with textblock containing quote followed by two backslashes * testing * #4236 <https://github.com/pmd/pmd/issues/4236>: [test] kotest logs look broken API Changes PMD CLI * PMD now supports a new |--relativize-paths-with| flag (or short |-z|), which replaces |--short-names|. It serves the same purpose: Shortening the pathnames in the reports. However, with the new flag it's possible to explicitly define one or more pathnames that should be used as the base when creating relative paths. The old flag |--short-names| is deprecated. Deprecated APIs For removal * |ApexRootNode#getApexVersion| <https://docs.pmd-code.org/apidocs/pmd-apex/6.54.0/net/sourceforge/pmd/lang/apex/ast/ApexRootNode.html#getApexVersion()> has been deprecated for removal. The version returned is always |Version.CURRENT|, as the apex compiler integration doesn't use additional information which Apex version actually is used. Therefore, this method can't be used to determine the Apex version of the project that is being analyzed. * |CPDConfiguration#setEncoding| <https://docs.pmd-code.org/apidocs/pmd-core/6.54.0/net/sourceforge/pmd/cpd/CPDConfiguration.html#setEncoding(java.lang.String)> and |CPDConfiguration#getEncoding| <https://docs.pmd-code.org/apidocs/pmd-core/6.54.0/net/sourceforge/pmd/cpd/CPDConfiguration.html#getEncoding()>. Use the methods |getSourceEncoding| <https://docs.pmd-code.org/apidocs/pmd-core/6.54.0/net/sourceforge/pmd/AbstractConfiguration.html#getSourceEncoding()> and |setSourceEncoding| <https://docs.pmd-code.org/apidocs/pmd-core/6.54.0/net/sourceforge/pmd/AbstractConfiguration.html#setSourceEncoding(java.lang.String)> instead. Both are available for |CPDConfiguration| which extends |AbstractConfiguration|. * |BaseCLITest| <https://docs.pmd-code.org/apidocs/pmd-test/6.54.0/net/sourceforge/pmd/cli/BaseCLITest.html#> and |BaseCPDCLITest| <https://docs.pmd-code.org/apidocs/pmd-test/6.54.0/net/sourceforge/pmd/cli/BaseCPDCLITest.html#> have been deprecated for removal without replacement. CLI tests should be done in pmd-core only (and in PMD7 in pmd-cli). Individual language modules shouldn't need to test the CLI integration logic again. Instead, the individual language modules should test their functionality as unit tests. * |CPDConfiguration.LanguageConverter| <https://docs.pmd-code.org/apidocs/pmd-core/6.54.0/net/sourceforge/pmd/cpd/CPDConfiguration.LanguageConverter.html#> * |FileCollector#addZipFile| <https://docs.pmd-code.org/apidocs/pmd-core/6.54.0/net/sourceforge/pmd/lang/document/FileCollector.html#addZipFile(java.nio.file.Path)> has been deprecated. It is replaced by |FileCollector#addZipFileWithContent| <https://docs.pmd-code.org/apidocs/pmd-core/6.54.0/net/sourceforge/pmd/lang/document/FileCollector.html#addZipFileWithContent(java.nio.file.Path)> which directly adds the content of the zip file for analysis. * |PMDConfiguration#setReportShortNames| <https://docs.pmd-code.org/apidocs/pmd-core/6.54.0/net/sourceforge/pmd/PMDConfiguration.html#setReportShortNames(boolean)> and |PMDConfiguration#isReportShortNames| <https://docs.pmd-code.org/apidocs/pmd-core/6.54.0/net/sourceforge/pmd/PMDConfiguration.html#isReportShortNames()> have been deprecated for removal. Use |PMDConfiguration#addRelativizeRoot| <https://docs.pmd-code.org/apidocs/pmd-core/6.54.0/net/sourceforge/pmd/PMDConfiguration.html#addRelativizeRoot(java.nio.file.Path)> instead. Internal APIs * |CSVWriter| <https://docs.pmd-code.org/apidocs/pmd-core/6.54.0/net/sourceforge/pmd/renderers/CSVWriter.html#> * Some fields in |AbstractAntTestHelper| <https://docs.pmd-code.org/apidocs/pmd-test/6.54.0/net/sourceforge/pmd/ant/AbstractAntTestHelper.html#> Experimental APIs * CPDReport has a new method which limited mutation of a given report: * |filterMatches| <https://docs.pmd-code.org/apidocs/pmd-core/6.54.0/net/sourceforge/pmd/cpd/CPDReport.html#filterMatches(net.sourceforge.pmd.util.Predicate)> creates a new CPD report with some matches removed with a given predicate based filter. External Contributions * #4110 <https://github.com/pmd/pmd/pull/4110>: [apex] Feature/unused variable bind false positive with dynamic SOQL - Thomas Prouvot <https://github.com/tprouvot> (@tprouvot) * #4125 <https://github.com/pmd/pmd/pull/4125>: [core] New report format html-report-v2.xslt to provide html with datatable and chart features - Mohan Chinnappan <https://github.com/mohan-chinnappan-n> - (@mohan-chinnappan-n) * #4280 <https://github.com/pmd/pmd/pull/4280>: [apex] Deprecate ApexRootNode.getApexVersion - Aaron Hurst <https://github.com/aaronhurst-google> (@aaronhurst-google) * #4285 <https://github.com/pmd/pmd/pull/4285>: [java] CommentDefaultAccessModifier - add co.elastic.clients.util.VisibleForTesting as default suppressed annotation - Matthew Luckam <https://github.com/mluckam> (@mluckam) Stats * 107 commits * 19 closed tickets & PRs * Days since last release: 27 |