summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-11-22 11:02:31 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-11-24 10:13:20 +0100
commit6e44febc327defc28246f01d9c4027fbd33639a8 (patch)
tree9fe58223cac7e8b235aecbd79cb94ed79cb0f195
parente8fa46928d91893723a9a038fde2d274d535fd1f (diff)
downloadpylint-git-6e44febc327defc28246f01d9c4027fbd33639a8.tar.gz
Add changelog and warning about unstable API in testutil
-rw-r--r--ChangeLog5
-rw-r--r--doc/whatsnew/2.12.rst7
2 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 30b15d0ea..b3c5fbcf7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -15,6 +15,11 @@ Release date: TBA
Closes #4982
+* Introduced primer tests and a configuration tests framework. The helper classes available in
+ ``pylint/testutil/`` are still unstable and might be modified in the near future.
+
+ Closes #4412 #5287
+
* Fix ``install graphiz`` message which isn't needed for puml output format.
* Fix a crash in the ``check_elif`` extensions where an undetected if in a comprehension
diff --git a/doc/whatsnew/2.12.rst b/doc/whatsnew/2.12.rst
index eb0e7a9a7..dae98d485 100644
--- a/doc/whatsnew/2.12.rst
+++ b/doc/whatsnew/2.12.rst
@@ -35,7 +35,7 @@ New checkers
* Fix ``useless-super-delegation`` false positive when default keyword argument is a variable.
-* Added new checker `use-implicit-booleanness``: Emitted when using collection
+* Added new checker ``use-implicit-booleanness``: Emitted when using collection
literals for boolean comparisons
* Added new checker ``use-implicit-booleaness-not-comparison``: Emitted when
@@ -204,3 +204,8 @@ Other Changes
* Fix crash on ``open()`` calls when the ``mode`` argument is not a simple string.
Partially closes #5321
+
+* Introduced primer tests and a configuration tests framework. The helper classes available in
+ ``pylint/testutil/`` are still unstable and might be modified in the near future.
+
+ Closes #4412 #5287