summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2023-05-06 17:25:27 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2023-05-06 17:27:53 +0200
commit25f78b9d1f630c6e05310a980eb16c90df10c680 (patch)
tree2fdac6ef95d3ad8dc675c9440a37c229dd637fa4 /doc
parent7574f6beaf9defdbc551bbe2f18064659caa870c (diff)
parentfc34a4b6abe56f3ac07ca15d846b1c1955545f85 (diff)
downloadpylint-git-25f78b9d1f630c6e05310a980eb16c90df10c680.tar.gz
Merge maintenance-2.17.x in main following 2.17.4 release
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/2/2.17/index.rst31
-rw-r--r--doc/whatsnew/fragments/8632.bugfix4
2 files changed, 35 insertions, 0 deletions
diff --git a/doc/whatsnew/2/2.17/index.rst b/doc/whatsnew/2/2.17/index.rst
index f8395c30f..9c5323b18 100644
--- a/doc/whatsnew/2/2.17/index.rst
+++ b/doc/whatsnew/2/2.17/index.rst
@@ -29,6 +29,37 @@ so we find problems before the actual release.
.. towncrier release notes start
+What's new in Pylint 2.17.4?
+----------------------------
+Release date: 2023-05-06
+
+
+False Positives Fixed
+---------------------
+
+- Fix a false positive for ``bad-dunder-name`` when there is a user-defined
+ ``__index__`` method.
+
+ Closes #8613 (`#8613 <https://github.com/PyCQA/pylint/issues/8613>`_)
+
+
+
+Other Bug Fixes
+---------------
+
+- ``pyreverse``: added escaping of vertical bar character in annotation labels
+ produced by DOT printer to ensure it is not treated as field separator of
+ record-based nodes.
+
+ Closes #8603 (`#8603 <https://github.com/PyCQA/pylint/issues/8603>`_)
+
+- Fixed a crash when generating a configuration file:
+ ``tomlkit.exceptions.TOMLKitError: Can't add a table to a dotted key``
+ caused by tomlkit ``v0.11.8``.
+
+ Closes #8632 (`#8632 <https://github.com/PyCQA/pylint/issues/8632>`_)
+
+
What's new in Pylint 2.17.3?
----------------------------
Release date: 2023-04-24
diff --git a/doc/whatsnew/fragments/8632.bugfix b/doc/whatsnew/fragments/8632.bugfix
new file mode 100644
index 000000000..c6f9c01bf
--- /dev/null
+++ b/doc/whatsnew/fragments/8632.bugfix
@@ -0,0 +1,4 @@
+Fixed a crash when generating a configuration file: ``tomlkit.exceptions.TOMLKitError: Can't add a table to a dotted key``
+caused by tomlkit ``v0.11.8``.
+
+Closes #8632