Skip to content

Commit

Permalink
Bump pylint to 2.15.8, update changelog (#7899)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Dec 5, 2022
1 parent 6178e41 commit 1f84ed9
Show file tree
Hide file tree
Showing 10 changed files with 41 additions and 21 deletions.
7 changes: 4 additions & 3 deletions CONTRIBUTORS.txt
Expand Up @@ -99,34 +99,34 @@ contributors:
- Joseph Young <80432516+jpy-git@users.noreply.github.com> (jpy-git)
- Tim Martin <tim@asymptotic.co.uk>
- Nicolas Chauvat <nicolas.chauvat@logilab.fr>
- Tushar Sadhwani <tushar.sadhwani000@gmail.com> (tusharsadhwani)
- Radu Ciorba <radu@devrandom.ro>: not-context-manager and confusing-with-statement warnings.
- Holger Peters <email@holger-peters.de>
- Cosmin Poieană <cmin@ropython.org>: unichr-builtin and improvements to bad-open-mode.
- Tushar Sadhwani <tushar.sadhwani000@gmail.com> (tusharsadhwani)
- Steven Myint <hg@stevenmyint.com>: duplicate-except.
- Peter Kolbus <peter.kolbus@gmail.com> (Garmin)
- Luigi Bertaco Cristofolini <lucristofolini@gmail.com> (luigibertaco)
- Glenn Matthews <glenn@e-dad.net>:
* autogenerated documentation for optional extensions,
* bug fixes and enhancements for docparams (née check_docs) extension
- Dani Alcala <112832187+clavedeluna@users.noreply.github.com>
- Vlad Temian <vladtemian@gmail.com>: redundant-unittest-assert and the JSON reporter.
- Julien Jehannet <julien.jehannet@logilab.fr>
- Dani Alcala <112832187+clavedeluna@users.noreply.github.com>
- Boris Feld <lothiraldan@gmail.com>
- Anthony Sottile <asottile@umich.edu>
- Pedro Algarvio <pedro@algarvio.me> (s0undt3ch)
- Julien Palard <julien@palard.fr>
- David Liu <david@cs.toronto.edu> (david-yz-liu)
- Dan Goldsmith <djgoldsmith@googlemail.com>: support for msg-template in HTML reporter.
- Buck Evan <buck.2019@gmail.com>
- orSolocate <38433858+orSolocate@users.noreply.github.com>
- Mariatta Wijaya <Mariatta@users.noreply.github.com>
* Added new check `logging-fstring-interpolation`
* Documentation typo fixes
- Jakub Wilk <jwilk@jwilk.net>
- Eli Fine <ejfine@gmail.com> (eli88fine): Fixed false positive duplicate code warning for lines with symbols only
- Andrew Haigh <nelfin@gmail.com> (nelfin)
- Émile Crater <emile@crater.logilab.fr>
- orSolocate <38433858+orSolocate@users.noreply.github.com>
- Pavel Roskin <proski@gnu.org>
- David Gilman <davidgilman1@gmail.com>
- へーさん <hira9603859504@gmail.com>
Expand Down Expand Up @@ -478,6 +478,7 @@ contributors:
- Grégoire <96051754+gregoire-mullvad@users.noreply.github.com>
- Grant Welch <gwelch925+github@gmail.com>
- Giuseppe Valente <gvalente@arista.com>
- Gideon <87426140+GideonBear@users.noreply.github.com>
- Gary Tyler McLeod <mail@garytyler.com>
- Felix von Drigalski <FvDrigalski@gmail.com>
- Fabrice Douchant <Fabrice.Douchant@logilab.fr>
Expand Down
33 changes: 33 additions & 0 deletions doc/whatsnew/2/2.15/index.rst
Expand Up @@ -29,6 +29,39 @@ Marc Byrne became a maintainer, welcome to the team !

.. towncrier release notes start
What's new in Pylint 2.15.8?
----------------------------
Release date: 2022-12-05


False Positives Fixed
---------------------

- Document a known false positive for ``useless-suppression`` when disabling
``line-too-long`` in a module with only comments and no code.

Closes #3368 (`#3368 <https://github.com/PyCQA/pylint/issues/3368>`_)

- Fix ``logging-fstring-interpolation`` false positive raised when logging and
f-string with ``%s`` formatting.

Closes #4984 (`#4984 <https://github.com/PyCQA/pylint/issues/4984>`_)

- Fixes false positive ``abstract-method`` on Protocol classes.

Closes #7209 (`#7209 <https://github.com/PyCQA/pylint/issues/7209>`_)

- Fix ``missing-param-doc`` false positive when function parameter has an
escaped underscore.

Closes #7827 (`#7827 <https://github.com/PyCQA/pylint/issues/7827>`_)

- ``multiple-statements`` no longer triggers for function stubs using inlined
``...``.

Closes #7860 (`#7860 <https://github.com/PyCQA/pylint/issues/7860>`_)


What's new in Pylint 2.15.7?
----------------------------
Release date: 2022-11-27
Expand Down
3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/3368.false_positive

This file was deleted.

3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/4984.false_positive

This file was deleted.

3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/7209.false_positive

This file was deleted.

3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/7827.false_positive

This file was deleted.

3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/7860.false_positive

This file was deleted.

2 changes: 1 addition & 1 deletion pylint/__pkginfo__.py
Expand Up @@ -9,7 +9,7 @@

from __future__ import annotations

__version__ = "2.15.7"
__version__ = "2.15.8"


def get_numversion_from_version(v: str) -> tuple[int, int, int]:
Expand Down
3 changes: 2 additions & 1 deletion script/.contributors_aliases.json
Expand Up @@ -185,7 +185,8 @@
"bot@noreply.github.com": {
"mails": [
"66853113+pre-commit-ci[bot]@users.noreply.github.com",
"49699333+dependabot[bot]@users.noreply.github.com"
"49699333+dependabot[bot]@users.noreply.github.com",
"41898282+github-actions[bot]@users.noreply.github.com"
],
"name": "bot"
},
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/pylint"

[version]
current = "2.15.7"
current = "2.15.8"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
Expand Down

0 comments on commit 1f84ed9

Please sign in to comment.