Closed renovate[bot] closed 9 months ago
This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 10 days.
This PR was closed because it has been stalled for 10 days with no activity.
Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future 3.x
releases. But if you manually upgrade to 3.x
then Renovate will re-enable minor
and patch
updates automatically.
If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.
This PR contains the following updates:
>=2.17.2
->>=3.0.3
Release Notes
pylint-dev/pylint (development/pylint)
### [`v3.0.3`](https://togithub.com/pylint-dev/pylint/releases/tag/v3.0.3) [Compare Source](https://togithub.com/pylint-dev/pylint/compare/v3.0.2...v3.0.3) ## What's new in Pylint 3.0.3? Release date: 2023-12-11 ## False Positives Fixed - Fixed false positive for `unnecessary-lambda` when the call has keyword arguments but not the lambda. Closes [#9148](https://togithub.com/pylint-dev/pylint/issues/9148) - Fixed incorrect suggestion for shallow copy in unnecessary-comprehension Example of the suggestion: \#pylint: disable=missing-module-docstring a = \[1, 2, 3] b = \[x for x in a] b\[0] = 0 print(a) # \[1, 2, 3] After changing b = \[x for x in a] to b = a based on the suggestion, the script now prints \[0, 2, 3]. The correct suggestion should be use list(a) to preserve the original behavior. Closes [#9172](https://togithub.com/pylint-dev/pylint/issues/9172) - Fix false positives for `undefined-variable` and `unused-argument` for classes and functions using Python 3.12 generic type syntax. Closes [#9193](https://togithub.com/pylint-dev/pylint/issues/9193) - Fixed `pointless-string-statement` false positive for docstrings on Python 3.12 type aliases. Closes [#9268](https://togithub.com/pylint-dev/pylint/issues/9268) - Fix false positive for `invalid-exception-operation` when concatenating tuples of exception types. Closes [#9288](https://togithub.com/pylint-dev/pylint/issues/9288) ## Other Bug Fixes - Fix a bug where pylint was unable to walk recursively through a directory if the directory has an `__init__.py` file. Closes [#9210](https://togithub.com/pylint-dev/pylint/issues/9210) ### [`v3.0.2`](https://togithub.com/pylint-dev/pylint/releases/tag/v3.0.2) [Compare Source](https://togithub.com/pylint-dev/pylint/compare/v3.0.1...v3.0.2) ## False Positives Fixed - Fix `used-before-assignment` false positive for generic type syntax (PEP 695, Python 3.12). Closes [#9110](https://togithub.com/pylint-dev/pylint/issues/9110) ## Other Bug Fixes - Escape special symbols and newlines in messages. Closes [#7874](https://togithub.com/pylint-dev/pylint/issues/7874) - Fixes suggestion for `nested-min-max` for expressions with additive operators, list and dict comprehensions. Closes [#8524](https://togithub.com/pylint-dev/pylint/issues/8524) - Fixes ignoring conditional imports with `ignore-imports=y`. Closes [#8914](https://togithub.com/pylint-dev/pylint/issues/8914) - Emit `inconsistent-quotes` for f-strings with 3.12 interpreter only if targeting pre-3.12 versions. Closes [#9113](https://togithub.com/pylint-dev/pylint/issues/9113) ### [`v3.0.1`](https://togithub.com/pylint-dev/pylint/releases/tag/v3.0.1) ## False Positives Fixed - Fixed false positive for `inherit-non-class` for generic Protocols. Closes [#9106](https://togithub.com/pylint-dev/pylint/issues/9106) ## Other Changes - Fix a crash when an enum class which is also decorated with a `dataclasses.dataclass` decorator is defined. Closes [#9100](https://togithub.com/pylint-dev/pylint/issues/9100) ### [`v3.0.0`](https://togithub.com/pylint-dev/pylint/releases/tag/v3.0.0) Pylint now support python 3.12 officially. This long anticipated major version also provides some important usability and performance improvements, along with enacting necessary breaking changes and long-announced deprecations. The documentation of each message with an example is very close too. The required astroid version is now 3.0.0. See the [astroid changelog](https://pylint.readthedocs.io/projects/astroid/en/latest/changelog.html#what-s-new-in-astroid-3-0-0) for additional fixes, features, and performance improvements applicable to pylint. Our code is now fully typed. The invalid-name message no longer checks for a minimum length of 3 characters by default. Dependencies like wrapt or setuptools were removed. A new json2 reporter has been added. It features an enriched output that is easier to parse and provides more info, here's a sample output. ```json { "messages": [ { "type": "convention", "symbol": "line-too-long", "message": "Line too long (1/2)", "messageId": "C0301", "confidence": "HIGH", "module": "0123", "obj": "", "line": 1, "column": 0, "endLine": 1, "endColumn": 4, "path": "0123", "absolutePath": "0123" } ], "statistics": { "messageTypeCount": { "fatal": 0, "error": 0, "warning": 0, "refactor": 0, "convention": 1, "info": 0 }, "modulesLinted": 1, "score": 5.0 } } ``` ## Breaking Changes - Enabling or disabling individual messages will now take effect even if an `--enable=all` or `disable=all` follows in the same configuration file (or on the command line). This means for the following example, `fixme` messages will now be emitted: ```bash pylint my_module --enable=fixme --disable=all ``` To regain the prior behavior, remove the superfluous earlier option. Closes [#3696](https://togithub.com/pylint-dev/pylint/issues/3696) - Remove support for launching pylint with Python 3.7. Code that supports Python 3.7 can still be linted with the `--py-version=3.7` setting. Refs [#6306](https://togithub.com/pylint-dev/pylint/issues/6306) - Disables placed in a `try` block now apply to the `except` block. Previously, they only happened to do so in the presence of an `else` clause. Refs [#7767](https://togithub.com/pylint-dev/pylint/issues/7767) - `pyreverse` now uses a new default color palette that is more colorblind friendly. The color scheme is taken from `Paul Tol's NotesConfiguration
π Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
π¦ Automerge: Disabled by config. Please merge this manually once you are satisfied.
β» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
π Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.