summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorhippo91 <guillaume.peillex@gmail.com>2020-10-24 10:54:31 +0200
committerhippo91 <guillaume.peillex@gmail.com>2020-10-24 10:54:31 +0200
commitee15027d7c5f60b4c489a5355903a3b1fe715e92 (patch)
treeca5d4cb33616b863fcc2e64dc68ffe711eb2f1f7 /ChangeLog
parent033f635e251e9cdf42b1c7da616287cc1cd567ec (diff)
parentacf39ac275dc3a8637794907fbd46ed55e211bb6 (diff)
downloadpylint-git-ee15027d7c5f60b4c489a5355903a3b1fe715e92.tar.gz
Merge branch 'master' into bug_pylint_3885
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog17
1 files changed, 15 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index db0b17fff..d0ee2fed9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,12 +16,19 @@ Release date: TBA
Closes #3885
+* Fix bug that lead to duplicate messages when using ``--jobs 2`` or more.
+
+ Close #3584
+
+* Adds option ``check-protected-access-in-special-methods`` in the ClassChecker to activate/deactivate
+ ``protected-access`` message emission for single underscore prefixed attribute in special methods.
+
+ Close #3120
+
* Fix vulnerable regular expressions in ``pyreverse``
Close #3811
-Release date: TBA
-
* ``inconsistent-return-statements`` message is now emitted if one of ``try/except`` statement
is not returning explicitly while the other do.
@@ -33,6 +40,10 @@ Release date: TBA
* Fix a crash when a specified config file does not exist
+* Add support to ``ignored-argument-names`` in DocstringParameterChecker and adds `useless-param-doc` and `useless-type-doc` messages.
+
+ Close #3800
+
* Fix ``duplicate-code`` false positive when lines only contain whitespace and non-alphanumeric characters (e.g. parentheses, bracket, comman, etc.)
* Improve lint message for `singleton-comparison` with bools
@@ -43,6 +54,8 @@ Release date: TBA
* Fix AttributeError in checkers/refactoring.py
+* Improve sphinx directives spelling filter
+
* Fix a bug with postponed evaluation when using aliases for annotations.
Close #3798