Skip to content

chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9#104

Open
red-hat-konflux[bot] wants to merge 1 commit intobackplane-2.17from
konflux/mintmaker/backplane-2.17/pylint-dev-pylint-3.x
Open

chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9#104
red-hat-konflux[bot] wants to merge 1 commit intobackplane-2.17from
konflux/mintmaker/backplane-2.17/pylint-dev-pylint-3.x

Conversation

@red-hat-konflux
Copy link
Copy Markdown

@red-hat-konflux red-hat-konflux bot commented Mar 4, 2026

This PR contains the following updates:

Package Type Update Change
pylint-dev/pylint repository patch v3.3.1 -> v3.3.9

Warning

Some dependencies could not be looked up. Check the warning logs for more information.

Note: The pre-commit manager in Renovate is not supported by the pre-commit maintainers or community. Please do not report any problems there, instead create a Discussion in the Renovate repository if you have any questions.


Release Notes

pylint-dev/pylint (pylint-dev/pylint)

v3.3.9

Compare Source

What's new in Pylint 3.3.9?

Release date: 2025-10-05

False Positives Fixed

  • Fix used-before-assignment for PEP 695 type aliases and parameters.

    Closes #​9815

  • No longer flag undeprecated functions in importlib.resources as deprecated.

    Closes #​10593

  • Fix false positive inconsistent-return-statements when using quit() or exit() functions.

    Closes #​10508

  • Fix false positive undefined-variable (E0602) for for-loop variable shadowing patterns like for item in item: when the variable was previously defined.

    Closes #​10562

Other Bug Fixes

  • Fixed crash in 'unnecessary-list-index-lookup' when starting an enumeration using
    minus the length of an iterable inside a dict comprehension when the len call was only
    made in this dict comprehension, and not elsewhere. Also changed the approach,
    to use inference in all cases but the simple ones, so we don't have to fix crashes
    one by one for arbitrarily complex expressions in enumerate.

    Closes #​10510

v3.3.8

Compare Source

What's new in Pylint 3.3.8?

Release date: 2025-08-09

This patch release includes an exceptional fix for a false negative issue. For details, see: #​10482 (comment)

False Positives Fixed

  • Fix false positives for possibly-used-before-assignment when variables are exhaustively
    assigned within a match block.

    Closes #​9668

  • Fix false positive for missing-raises-doc and missing-yield-doc when the method length is less than docstring-min-length.

    Refs #​10104

  • Fix a false positive for unused-variable when multiple except handlers bind the same name under a try block.

    Closes #​10426

False Negatives Fixed

  • Fix false-negative for used-before-assignment with from __future__ import annotations in function definitions.

    Refs #​10482

Other Bug Fixes

  • Fix a bug in Pyreverse where aggregations and associations were included in diagrams regardless of the selected --filter-mode (such as PUB_ONLY, ALL, etc.).

    Closes #​10373

  • Fix double underscores erroneously rendering as bold in pyreverse's Mermaid output.

    Closes #​10402

v3.3.7

Compare Source

What's new in Pylint 3.3.7?

Release date: 2025-05-04

False Positives Fixed

  • Comparisons between two calls to type() won't raise an unidiomatic-typecheck warning anymore, consistent with the behavior applied only for == previously.

    Closes #​10161

Other Bug Fixes

  • Fixed a crash when importing a class decorator that did not exist with the same name as a class attribute after the class definition.

    Closes #​10105

  • Fix a crash caused by malformed format strings when using .format with keyword arguments.

    Closes #​10282

  • Using a slice as a class decorator now raises a not-callable message instead of crashing. A lot of checks that dealt with decorators (too many to list) are now shortcut if the decorator can't immediately be inferred to a function or class definition.

    Closes #​10334

Other Changes

  • The algorithm used for no-member suggestions is now more efficient and cuts the
    calculation when the distance score is already above the threshold.

    Refs #​10277

v3.3.6

Compare Source

What's new in Pylint 3.3.6?

Release date: 2025-03-20

False Positives Fixed

  • Fix a false positive for used-before-assignment when an inner function's return type
    annotation is a class defined at module scope.

    Closes #​9391

v3.3.5

Compare Source

What's new in Pylint 3.3.5?

Release date: 2025-03-09

False Positives Fixed

  • Fix false positives for use-implicit-booleaness-not-comparison, use-implicit-booleaness-not-comparison-to-string
    and use-implicit-booleaness-not-comparison-to-zero when chained comparisons are checked.

    Closes #​10065

  • Fix a false positive for invalid-getnewargs-ex-returned when the tuple or dict has been assigned to a name.

    Closes #​10208

  • Remove getopt and optparse from the list of deprecated modules.

    Closes #​10211

Other Bug Fixes

  • Fixed conditional import x.y causing false positive possibly-used-before-assignment.

    Closes #​10081

  • Fix a crash when something besides a class is found in an except handler.

    Closes #​10106

  • Fixed raising invalid-name when using camelCase for private methods with two leading underscores.

    Closes #​10189

Other Changes

  • Upload release assets to PyPI via Trusted Publishing.

    Closes #​10256

v3.3.4

Compare Source

Other Bug Fixes

  • Fixes "skipped files" count calculation; the previous method was displaying an arbitrary number.

    Closes #​10073

  • Fixes a crash that occurred when pylint was run in a container on a host with cgroupsv2 and restrictions on CPU usage.

    Closes #​10103

  • Relaxed the requirements for isort so pylint can benefit from isort 6.

    Closes #​10203

v3.3.3

Compare Source

What's new in Pylint 3.3.3?

Release date: 2024-12-23

False Positives Fixed

  • Fix false positives for undefined-variable for classes using Python 3.12
    generic type syntax.

    Closes #​9335

  • Fix a false positive for use-implicit-booleaness-not-len. No lint should be emitted for
    generators (len is not defined for generators).

    Refs #​10100

Other Bug Fixes

  • Fix Unable to import 'collections.abc' (import-error) on Python 3.13.1.

    Closes #​10112

v3.3.2

Compare Source

False Positives Fixed

  • Fix a false positive for potential-index-error when an indexed iterable
    contains a starred element that evaluates to more than one item.

    Closes #​10076

Other Bug Fixes

  • Fixes the issue with --source-root option not working when the source files are in a subdirectory of the source root (e.g. when using a /src layout).

    Closes #​10026


Configuration

📅 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.


  • If you want to rebase/retry this PR, check this box

To execute skipped test pipelines write comment /ok-to-test.


Documentation

Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
@openshift-ci
Copy link
Copy Markdown

openshift-ci bot commented Mar 4, 2026

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: red-hat-konflux[bot]
Once this PR has been reviewed and has the lgtm label, please assign marek-veber for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 20, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 21, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 21, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 21, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 21, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 21, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 21, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 22, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 22, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 22, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 22, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 22, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 22, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 23, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 23, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 23, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 23, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 23, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 23, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 24, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 24, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 24, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 24, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 24, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 25, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 25, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 25, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 25, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 25, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 26, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 26, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 26, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 26, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 26, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 26, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 27, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 27, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 27, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 28, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 31, 2026
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 31, 2026
@red-hat-konflux red-hat-konflux bot changed the title Update pre-commit hook pylint-dev/pylint to v3.3.9 chore(deps): update pre-commit hook pylint-dev/pylint to v3.3.9 Mar 31, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants