Skip to content

Commit 3b47409

Browse files
Bump pylint to 3.1.0, update changelog
Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
1 parent f56a894 commit 3b47409

20 files changed

+117
-54
lines changed

doc/whatsnew/3/3.1/index.rst

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,111 @@
1212
Summary -- Release highlights
1313
=============================
1414

15+
Two new checks--``use-yield-from``, ``deprecated-attribute``--
16+
and a smattering of bug fixes.
1517

1618
.. towncrier release notes start
19+
20+
What's new in Pylint 3.1.0?
21+
---------------------------
22+
Release date: 2024-02-25
23+
24+
25+
New Features
26+
------------
27+
28+
- Skip ``consider-using-join`` check for non-empty separators if an ``suggest-join-with-non-empty-separator`` option is set to ``no``.
29+
30+
Closes #8701 (`#8701 <https://github.com/pylint-dev/pylint/issues/8701>`_)
31+
32+
- Discover ``.pyi`` files when linting.
33+
34+
These can be ignored with the ``ignore-patterns`` setting.
35+
36+
Closes #9097 (`#9097 <https://github.com/pylint-dev/pylint/issues/9097>`_)
37+
38+
- Check ``TypeAlias`` and ``TypeVar`` (PEP 695) nodes for ``invalid-name``.
39+
40+
Refs #9196 (`#9196 <https://github.com/pylint-dev/pylint/issues/9196>`_)
41+
42+
- Support for resolving external toml files named pylintrc.toml and .pylintrc.toml.
43+
44+
Closes #9228 (`#9228 <https://github.com/pylint-dev/pylint/issues/9228>`_)
45+
46+
- Check for `.clear`, `.discard`, `.pop` and `remove` methods being called on a set while it is being iterated over.
47+
48+
Closes #9334 (`#9334 <https://github.com/pylint-dev/pylint/issues/9334>`_)
49+
50+
51+
52+
New Checks
53+
----------
54+
55+
- New message `use-yield-from` added to the refactoring checker. This message is emitted when yielding from a loop can be replaced by `yield from`.
56+
57+
Closes #9229. (`#9229 <https://github.com/pylint-dev/pylint/issues/9229>`_)
58+
59+
- Added a ``deprecated-attribute`` message to check deprecated attributes in the stdlib.
60+
61+
Closes #8855 (`#8855 <https://github.com/pylint-dev/pylint/issues/8855>`_)
62+
63+
64+
False Positives Fixed
65+
---------------------
66+
67+
- Fixed false positive for ``inherit-non-class`` for generic Protocols.
68+
69+
Closes #9106 (`#9106 <https://github.com/pylint-dev/pylint/issues/9106>`_)
70+
71+
- Exempt ``TypedDict`` from ``typing_extensions`` from ``too-many-ancestor`` checks.
72+
73+
Refs #9167 (`#9167 <https://github.com/pylint-dev/pylint/issues/9167>`_)
74+
75+
76+
77+
False Negatives Fixed
78+
---------------------
79+
80+
- Extend broad-exception-raised and broad-exception-caught to except*.
81+
82+
Closes #8827 (`#8827 <https://github.com/pylint-dev/pylint/issues/8827>`_)
83+
84+
- Fix a false-negative for unnecessary if blocks using a different than expected ordering of arguments.
85+
86+
Closes #8947. (`#8947 <https://github.com/pylint-dev/pylint/issues/8947>`_)
87+
88+
89+
90+
Other Bug Fixes
91+
---------------
92+
93+
- Improve the message provided for wrong-import-order check. Instead of the import statement ("import x"), the message now specifies the import that is out of order and which imports should come after it. As reported in the issue, this is particularly helpful if there are multiple imports on a single line that do not follow the PEP8 convention.
94+
95+
The message will report imports as follows:
96+
For "import X", it will report "(standard/third party/first party/local) import X"
97+
For "import X.Y" and "from X import Y", it will report "(standard/third party/first party/local) import X.Y"
98+
The import category is specified to provide explanation as to why pylint has issued the message and guidence to the developer on how to fix the problem.
99+
100+
Closes #8808 (`#8808 <https://github.com/pylint-dev/pylint/issues/8808>`_)
101+
102+
103+
104+
Other Changes
105+
-------------
106+
107+
- Print how many files were checked in verbose mode.
108+
109+
Closes #8935 (`#8935 <https://github.com/pylint-dev/pylint/issues/8935>`_)
110+
111+
- Fix a crash when an enum class which is also decorated with a ``dataclasses.dataclass`` decorator is defined.
112+
113+
Closes #9100 (`#9100 <https://github.com/pylint-dev/pylint/issues/9100>`_)
114+
115+
116+
117+
Internal Changes
118+
----------------
119+
120+
- Update astroid version to 3.1.0.
121+
122+
Refs #9457 (`#9457 <https://github.com/pylint-dev/pylint/issues/9457>`_)

doc/whatsnew/fragments/8701.feature

Lines changed: 0 additions & 3 deletions
This file was deleted.

doc/whatsnew/fragments/8808.bugfix

Lines changed: 0 additions & 8 deletions
This file was deleted.

doc/whatsnew/fragments/8827.false_negative

Lines changed: 0 additions & 3 deletions
This file was deleted.

doc/whatsnew/fragments/8855.new_check

Lines changed: 0 additions & 3 deletions
This file was deleted.

doc/whatsnew/fragments/8935.other

Lines changed: 0 additions & 3 deletions
This file was deleted.

doc/whatsnew/fragments/8947.false_negative

Lines changed: 0 additions & 3 deletions
This file was deleted.

doc/whatsnew/fragments/9097.feature

Lines changed: 0 additions & 5 deletions
This file was deleted.

doc/whatsnew/fragments/9100.other

Lines changed: 0 additions & 3 deletions
This file was deleted.

doc/whatsnew/fragments/9106.false_positive

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)