Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump pylint to 2.17.6, update changelog #9064

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions doc/whatsnew/2/2.17/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,45 @@ so we find problems before the actual release.

.. towncrier release notes start

What's new in Pylint 2.17.6?
----------------------------
Release date: 2023-09-24
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Release date: 2023-09-24
Release date: 2023-09-25



Other Bug Fixes
---------------

- When parsing comma-separated lists of regular expressions in the config,
ignore
commas that are inside braces since those indicate quantifiers, not
delineation
between expressions.

Closes #7229 (`#7229 <https://github.com/pylint-dev/pylint/issues/7229>`_)

- ``sys.argv`` is now always correctly considered as impossible to infer
(instead of
using the actual values given to pylint).

Closes #7710 (`#7710 <https://github.com/pylint-dev/pylint/issues/7710>`_)

- Don't show class fields more than once in Pyreverse diagrams.

Closes #8189 (`#8189 <https://github.com/pylint-dev/pylint/issues/8189>`_)

- Don't show arrows more than once in Pyreverse diagrams.

Closes #8522 (`#8522 <https://github.com/pylint-dev/pylint/issues/8522>`_)

- Don't show duplicate type annotations in Pyreverse diagrams.

Closes #8888 (`#8888 <https://github.com/pylint-dev/pylint/issues/8888>`_)

- Don't add `Optional` to `|` annotations with `None` in Pyreverse diagrams.

Closes #9014 (`#9014 <https://github.com/pylint-dev/pylint/issues/9014>`_)


What's new in Pylint 2.17.5?
----------------------------
Release date: 2023-07-26
Expand Down
5 changes: 0 additions & 5 deletions doc/whatsnew/fragments/7229.bugfix

This file was deleted.

4 changes: 0 additions & 4 deletions doc/whatsnew/fragments/7710.bugfix

This file was deleted.

3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/8189.bugfix

This file was deleted.

3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/8522.bugfix

This file was deleted.

3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/8888.bugfix

This file was deleted.

3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/9014.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from __future__ import annotations

__version__ = "2.17.5"
__version__ = "2.17.6"


def get_numversion_from_version(v: str) -> tuple[int, int, int]:
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github_url = "https://github.com/pylint-dev/pylint"

[version]
current = "2.17.5"
current = "2.17.6"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
Expand Down
2 changes: 1 addition & 1 deletion towncrier.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.towncrier]
version = "2.17.5"
version = "2.17.6"
directory = "doc/whatsnew/fragments"
filename = "doc/whatsnew/2/2.17/index.rst"
template = "doc/whatsnew/fragments/_template.rst"
Expand Down