From 084c92efadc8ea878dd44b89fdf3c982c6988f4b Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Wed, 3 Dec 2014 21:24:39 +0100 Subject: [PATCH] Update changelog for next version --- src/site/markdown/overview/changelog-old.md | 22 +++++++++++++++++++++ src/site/markdown/overview/changelog.md | 18 ++++------------- 2 files changed, 26 insertions(+), 14 deletions(-) diff --git a/src/site/markdown/overview/changelog-old.md b/src/site/markdown/overview/changelog-old.md index 965d625a0d..dc476f17d8 100644 --- a/src/site/markdown/overview/changelog-old.md +++ b/src/site/markdown/overview/changelog-old.md @@ -3,6 +3,28 @@ Previous versions of PMD can be downloaded here: http://sourceforge.net/projects/pmd/files/pmd/ +## December 3, 2014 - 5.2.2: + +**New Parameters for CPD:** + +For the language cpp, the following new parameters are supported: + +* `--no-skip-blocks`: Disables skipping of code blocks like a pre-processor. This is by default enabled. +* `--skip-blocks-pattern`: Pattern to find the blocks to skip. Start and End pattern separated by "`|`". Default value is "`#if 0|#endif`". + +**Bugfixes:** + +* [#1090](https://sourceforge.net/p/pmd/bugs/1090/): cpp parser exception with inline asm +* [#1128](https://sourceforge.net/p/pmd/bugs/1128/): CompareObjectsWithEquals False Positive comparing boolean (primitive) values +* [#1254](https://sourceforge.net/p/pmd/bugs/1254/): CPD run that worked in 5.1.2 fails in 5.1.3 with OOM +* [#1276](https://sourceforge.net/p/pmd/bugs/1276/): False positive in UnusedPrivateMethod with inner enum +* [#1280](https://sourceforge.net/p/pmd/bugs/1280/): False Positive in UnusedImports when import used in javadoc +* [#1281](https://sourceforge.net/p/pmd/bugs/1281/): UnusedPrivateMethod incorrectly flagged for methods nested private classes +* [#1282](https://sourceforge.net/p/pmd/bugs/1282/): False Positive with implicit String.valuesOf() (Java) +* [#1285](https://sourceforge.net/p/pmd/bugs/1285/): Prevent to modify the System environment +* [#1286](https://sourceforge.net/p/pmd/bugs/1286/): UnusedPrivateMethod returns false positives for varags and enums + + ## November 3, 2014 - 5.2.1: **Bugfixes:** diff --git a/src/site/markdown/overview/changelog.md b/src/site/markdown/overview/changelog.md index 0d0dbbb469..70978f3932 100644 --- a/src/site/markdown/overview/changelog.md +++ b/src/site/markdown/overview/changelog.md @@ -1,22 +1,12 @@ # Changelog -## December 3, 2014 - 5.2.2: +## ???? - 5.2.3: -**New Parameters for CPD:** +**Feature Requests and Improvements:** -For the language cpp, the following new parameters are supported: +**New/Modified Rules:** -* `--no-skip-blocks`: Disables skipping of code blocks like a pre-processor. This is by default enabled. -* `--skip-blocks-pattern`: Pattern to find the blocks to skip. Start and End pattern separated by "`|`". Default value is "`#if 0|#endif`". +**Pull requests:** **Bugfixes:** -* [#1090](https://sourceforge.net/p/pmd/bugs/1090/): cpp parser exception with inline asm -* [#1128](https://sourceforge.net/p/pmd/bugs/1128/): CompareObjectsWithEquals False Positive comparing boolean (primitive) values -* [#1254](https://sourceforge.net/p/pmd/bugs/1254/): CPD run that worked in 5.1.2 fails in 5.1.3 with OOM -* [#1276](https://sourceforge.net/p/pmd/bugs/1276/): False positive in UnusedPrivateMethod with inner enum -* [#1280](https://sourceforge.net/p/pmd/bugs/1280/): False Positive in UnusedImports when import used in javadoc -* [#1281](https://sourceforge.net/p/pmd/bugs/1281/): UnusedPrivateMethod incorrectly flagged for methods nested private classes -* [#1282](https://sourceforge.net/p/pmd/bugs/1282/): False Positive with implicit String.valuesOf() (Java) -* [#1285](https://sourceforge.net/p/pmd/bugs/1285/): Prevent to modify the System environment -* [#1286](https://sourceforge.net/p/pmd/bugs/1286/): UnusedPrivateMethod returns false positives for varags and enums