summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2023-04-24 22:21:18 +0200
committerGitHub <noreply@github.com>2023-04-24 22:21:18 +0200
commitb36a6169069ad9694b63596eeaf2c95ce1c517f9 (patch)
treea96d16a8c0ea1e73c7fce01dc50a9319b9b8c05a /doc
parentf223c6de3a39eae6d1c76e30b55da28639dd8777 (diff)
parent5048ca8ae7ecd4ead6e0a78e9fd2b6aac5545739 (diff)
downloadpylint-git-b36a6169069ad9694b63596eeaf2c95ce1c517f9.tar.gz
Merge maintenance 2.17.x in main (#8621)
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/2/2.17/index.rst58
1 files changed, 58 insertions, 0 deletions
diff --git a/doc/whatsnew/2/2.17/index.rst b/doc/whatsnew/2/2.17/index.rst
index 7ea69bf68..f8395c30f 100644
--- a/doc/whatsnew/2/2.17/index.rst
+++ b/doc/whatsnew/2/2.17/index.rst
@@ -29,6 +29,64 @@ so we find problems before the actual release.
.. towncrier release notes start
+What's new in Pylint 2.17.3?
+----------------------------
+Release date: 2023-04-24
+
+
+False Positives Fixed
+---------------------
+
+- Fix `unused-argument` false positive when `__new__` does not use all the
+ arguments of `__init__`.
+
+ Closes #3670 (`#3670 <https://github.com/PyCQA/pylint/issues/3670>`_)
+
+- Fix ``unused-import`` false positive for usage of ``six.with_metaclass``.
+
+ Closes #7506 (`#7506 <https://github.com/PyCQA/pylint/issues/7506>`_)
+
+- `logging-not-lazy` is not longer emitted for explicitly concatenated string
+ arguments.
+
+ Closes #8410 (`#8410 <https://github.com/PyCQA/pylint/issues/8410>`_)
+
+- Fix false positive for isinstance-second-argument-not-valid-type when union
+ types contains None.
+
+ Closes #8424 (`#8424 <https://github.com/PyCQA/pylint/issues/8424>`_)
+
+- Fixed `unused-import` so that it observes the `dummy-variables-rgx` option.
+
+ Closes #8500 (`#8500 <https://github.com/PyCQA/pylint/issues/8500>`_)
+
+- `Union` typed variables without assignment are no longer treated as
+ `TypeAlias`.
+
+ Closes #8540 (`#8540 <https://github.com/PyCQA/pylint/issues/8540>`_)
+
+- Fix false positive for ``positional-only-arguments-expected`` when a function
+ contains both a positional-only parameter that has a default value, and
+ ``**kwargs``.
+
+ Closes #8555 (`#8555 <https://github.com/PyCQA/pylint/issues/8555>`_)
+
+- Fix false positive for ``keyword-arg-before-vararg`` when a positional-only
+ parameter with a default value precedes ``*args``.
+
+ Closes #8570 (`#8570 <https://github.com/PyCQA/pylint/issues/8570>`_)
+
+
+
+Other Bug Fixes
+---------------
+
+- Improve output of ``consider-using-generator`` message for ``min()` calls
+ with ``default`` keyword.
+
+ Closes #8563 (`#8563 <https://github.com/PyCQA/pylint/issues/8563>`_)
+
+
What's new in Pylint 2.17.2?
----------------------------
Release date: 2023-04-03