summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-11-29 12:12:52 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2022-11-29 12:12:52 +0100
commitc592c9291a1776f6037d9d2385ce74fb6e73da5b (patch)
tree93dc7c25df6ff78128dd03e7c7aec9b784f3d537
parent6b427a9189c86143bc361c56393e028ad3e5c3e1 (diff)
parent5a96370ff556fd71cc228ccb5c26b70e55041028 (diff)
downloadpylint-git-c592c9291a1776f6037d9d2385ce74fb6e73da5b.tar.gz
Merge branch 'maintenance/2.15.x' in main following 2.15.7 release
-rw-r--r--.github/workflows/tests.yaml2
-rw-r--r--CONTRIBUTORS.txt1
-rw-r--r--doc/whatsnew/2/2.15/index.rst35
3 files changed, 37 insertions, 1 deletions
diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml
index 17446b1c6..9d741197c 100644
--- a/.github/workflows/tests.yaml
+++ b/.github/workflows/tests.yaml
@@ -5,9 +5,9 @@ on:
branches:
- main
- "maintenance/**"
- pull_request:
paths-ignore:
- doc/data/messages/**
+ pull_request: ~
env:
CACHE_VERSION: 1
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index 05e6c9633..67a930ca3 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -483,6 +483,7 @@ contributors:
- Fabrice Douchant <Fabrice.Douchant@logilab.fr>
- Fabio Natali <me@fabionatali.com>
- Fabian Damken <fdamken+github@frisp.org>
+- Eric McDonald <221418+emcd@users.noreply.github.com>
- Eric Froemling <ericfroemling@gmail.com>
- Emmanuel Chaudron <manu.chaud@hotmail.fr>
- Elizabeth Bott <52465744+elizabethbott@users.noreply.github.com>
diff --git a/doc/whatsnew/2/2.15/index.rst b/doc/whatsnew/2/2.15/index.rst
index 4ad6eb9bc..b1e40d274 100644
--- a/doc/whatsnew/2/2.15/index.rst
+++ b/doc/whatsnew/2/2.15/index.rst
@@ -29,6 +29,41 @@ Marc Byrne became a maintainer, welcome to the team !
.. towncrier release notes start
+What's new in Pylint 2.15.7?
+----------------------------
+Release date: 2022-11-27
+
+
+False Positives Fixed
+---------------------
+
+- Fix ``deprecated-method`` false positive when alias for method is similar to
+ name of deprecated method.
+
+ Closes #5886 (`#5886 <https://github.com/PyCQA/pylint/issues/5886>`_)
+
+- Fix a false positive for ``used-before-assignment`` for imports guarded by
+ ``typing.TYPE_CHECKING`` later used in variable annotations.
+
+ Closes #7609 (`#7609 <https://github.com/PyCQA/pylint/issues/7609>`_)
+
+
+
+Other Bug Fixes
+---------------
+
+- Pylint will now filter duplicates given to it before linting. The output
+ should
+ be the same whether a file is given/discovered multiple times or not.
+
+ Closes #6242, #4053 (`#6242 <https://github.com/PyCQA/pylint/issues/6242>`_)
+
+- Fixes a crash in ``stop-iteration-return`` when the ``next`` builtin is
+ called without arguments.
+
+ Closes #7828 (`#7828 <https://github.com/PyCQA/pylint/issues/7828>`_)
+
+
What's new in Pylint 2.15.6?
----------------------------
Release date: 2022-11-19