-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Release branch 2.15.1 #7393
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
Merged
Pierre-Sassoulas
merged 13 commits into
pylint-dev:maintenance/2.15.x
from
Pierre-Sassoulas:release-branch-2.15.1
Sep 6, 2022
Merged
Release branch 2.15.1 #7393
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
be90099
Fix `used-before-assignment` for functions/classes defined in type ch…
Rogdham 9e2f535
Fix crash while iteraring over a class attribute (#7386)
DanielNoord c4a770d
Fix false positive for ``too-many-function-args`` when a function cal…
mbyrnepr2 8a8de1f
Do not lint ignored file on stdin (#7220)
christoph-blessing 05404f0
Fix #3299 false positives with names in string literal type annotatio…
lggruspe 35007f5
Make ``missing-return-doc`` respect the ``no-docstring-rgx`` option (…
DanielNoord 939047e
Make ``disable-next`` only consider the succeeding line (#7411)
DanielNoord f2ecf4f
Upgrade astroid version following 2.12.8 release
Pierre-Sassoulas 7848356
Make ``missing-yield/raises-doc`` respect ``no-docstring-rgx`` option
DanielNoord bf1cbd6
Suppress ``OSError`` in config file discovery (#7423)
DanielNoord 62d0318
Fix 2.15 changelog (#7369)
cdce8p 7763d2a
Fix and refactors for ``docparams`` extension (#7398)
DanielNoord f94c834
Bump pylint to 2.15.1, update changelog
Pierre-Sassoulas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ on: | |
- doc/data/messages/** | ||
|
||
env: | ||
CACHE_VERSION: 22 | ||
CACHE_VERSION: 25 | ||
|
||
jobs: | ||
tests-linux: | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -374,6 +374,7 @@ contributors: | |
- Ry4an Brase <[email protected]> | ||
- Ruro <[email protected]> | ||
- Roman Ivanov <[email protected]> | ||
- Rogdham <[email protected]> | ||
- Robert Schweizer <[email protected]> | ||
- Reverb Chu <[email protected]> | ||
- Renat Galimov <[email protected]> | ||
|
@@ -422,6 +423,7 @@ contributors: | |
- Louis Sautier <[email protected]> | ||
- Lorena Buciu <[email protected]> | ||
- Logan Miller <[email protected]> | ||
- Levi Gruspe <[email protected]> | ||
- Kári Tristan Helgason <[email protected]> | ||
- Kurian Benoy <[email protected]> | ||
- Krzysztof Czapla <[email protected]> | ||
|
@@ -500,6 +502,7 @@ contributors: | |
- Craig Citro <[email protected]> | ||
- Clément Pit-Claudel <[email protected]> | ||
- Christopher Zurcher <[email protected]> | ||
- Christoph Blessing <[email protected]> | ||
- Carl Crowder <[email protected]>: don't evaluate the value of arguments for 'dangerous-default-value' | ||
- Carey Metcalfe <[email protected]>: demoted `try-except-raise` from error to warning | ||
- Cameron Olechowski <[email protected]> | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't
towncrier
know about white spaces? 😅There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I manually removed the duplicated titles, which is why there might be some problems.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's fix in #7426