summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2023-01-09 12:26:14 +0100
committerGitHub <noreply@github.com>2023-01-09 12:26:14 +0100
commitb773f2995004521565cf52334c184dcfa75285c8 (patch)
tree9d9b73982d29c4b1d1495a641f764d4c266e3fb5
parent6ac908ffe04e18b62419dabac9686b107bee278d (diff)
parent17272bd8209ba7bd02aad53e1c2ba0ed4183f4df (diff)
downloadpylint-git-b773f2995004521565cf52334c184dcfa75285c8.tar.gz
Merge maintenance 2.15.x in main following 2.15.10 release (#8036)
-rw-r--r--doc/whatsnew/2/2.15/index.rst38
1 files changed, 38 insertions, 0 deletions
diff --git a/doc/whatsnew/2/2.15/index.rst b/doc/whatsnew/2/2.15/index.rst
index b46abce99..0327fdc8f 100644
--- a/doc/whatsnew/2/2.15/index.rst
+++ b/doc/whatsnew/2/2.15/index.rst
@@ -29,6 +29,44 @@ Marc Byrne became a maintainer, welcome to the team !
.. towncrier release notes start
+What's new in Pylint 2.15.10?
+-----------------------------
+Release date: 2023-01-09
+
+
+False Positives Fixed
+---------------------
+
+- Fix ``use-sequence-for-iteration`` when unpacking a set with ``*``.
+
+ Closes #5788 (`#5788 <https://github.com/PyCQA/pylint/issues/5788>`_)
+
+- Fix false positive ``assigning-non-slot`` when a class attribute is
+ re-assigned.
+
+ Closes #6001 (`#6001 <https://github.com/PyCQA/pylint/issues/6001>`_)
+
+- Fixes ``used-before-assignment`` false positive when the walrus operator
+ is used in a ternary operator.
+
+ Closes #7779 (`#7779 <https://github.com/PyCQA/pylint/issues/7779>`_)
+
+- Prevent ``used-before-assignment`` when imports guarded by ``if
+ TYPE_CHECKING``
+ are guarded again when used.
+
+ Closes #7979 (`#7979 <https://github.com/PyCQA/pylint/issues/7979>`_)
+
+
+
+Other Bug Fixes
+---------------
+
+- Using custom braces in ``msg-template`` will now work properly.
+
+ Closes #5636 (`#5636 <https://github.com/PyCQA/pylint/issues/5636>`_)
+
+
What's new in Pylint 2.15.9?
----------------------------
Release date: 2022-12-17