@@ -29,6 +29,64 @@ so we find problems before the actual release.
2929
3030.. towncrier release notes start
3131
32+ What's new in Pylint 2.17.3?
33+ ----------------------------
34+ Release date: 2023-04-24
35+
36+
37+ False Positives Fixed
38+ ---------------------
39+
40+ - Fix `unused-argument ` false positive when `__new__ ` does not use all the
41+ arguments of `__init__ `.
42+
43+ Closes #3670 (`#3670 <https://github.com/PyCQA/pylint/issues/3670 >`_)
44+
45+ - Fix ``unused-import `` false positive for usage of ``six.with_metaclass ``.
46+
47+ Closes #7506 (`#7506 <https://github.com/PyCQA/pylint/issues/7506 >`_)
48+
49+ - `logging-not-lazy ` is not longer emitted for explicitly concatenated string
50+ arguments.
51+
52+ Closes #8410 (`#8410 <https://github.com/PyCQA/pylint/issues/8410 >`_)
53+
54+ - Fix false positive for isinstance-second-argument-not-valid-type when union
55+ types contains None.
56+
57+ Closes #8424 (`#8424 <https://github.com/PyCQA/pylint/issues/8424 >`_)
58+
59+ - Fixed `unused-import ` so that it observes the `dummy-variables-rgx ` option.
60+
61+ Closes #8500 (`#8500 <https://github.com/PyCQA/pylint/issues/8500 >`_)
62+
63+ - `Union ` typed variables without assignment are no longer treated as
64+ `TypeAlias `.
65+
66+ Closes #8540 (`#8540 <https://github.com/PyCQA/pylint/issues/8540 >`_)
67+
68+ - Fix false positive for ``positional-only-arguments-expected `` when a function
69+ contains both a positional-only parameter that has a default value, and
70+ ``**kwargs ``.
71+
72+ Closes #8555 (`#8555 <https://github.com/PyCQA/pylint/issues/8555 >`_)
73+
74+ - Fix false positive for ``keyword-arg-before-vararg `` when a positional-only
75+ parameter with a default value precedes ``*args ``.
76+
77+ Closes #8570 (`#8570 <https://github.com/PyCQA/pylint/issues/8570 >`_)
78+
79+
80+
81+ Other Bug Fixes
82+ ---------------
83+
84+ - Improve output of ``consider-using-generator `` message for ``min()` calls
85+ with ``default `` keyword.
86+
87+ Closes #8563 (`#8563 <https://github.com/PyCQA/pylint/issues/8563 >`_)
88+
89+
3290What's new in Pylint 2.17.2?
3391----------------------------
3492Release date: 2023-04-03
0 commit comments