Skip to content

chore(deps): update pre-commit hooks#119

Merged
edgarrmondragon merged 1 commit intomainfrom
renovate/pre-commit
Mar 5, 2026
Merged

chore(deps): update pre-commit hooks#119
edgarrmondragon merged 1 commit intomainfrom
renovate/pre-commit

Conversation

@renovate
Copy link

@renovate renovate bot commented Feb 24, 2026

This PR contains the following updates:

Package Type Update Change Age Confidence
adamtheturtle/doccmd-pre-commit repository minor v2026.2.15v2026.3.2 age confidence
astral-sh/ruff-pre-commit repository patch v0.15.2v0.15.5 age confidence
astral-sh/uv-pre-commit repository patch 0.10.40.10.8 age confidence
python-jsonschema/check-jsonschema repository minor 0.36.20.37.0 age confidence
ruff (source, changelog) pre-commit-python patch ==0.15.2==0.15.5 age confidence

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

adamtheturtle/doccmd-pre-commit (adamtheturtle/doccmd-pre-commit)

v2026.3.2

Compare Source

2026.3.2 (2026-03-02)

v2026.3.1

Compare Source

2026.3.1 (2026-03-01)

v2026.2.26

Compare Source

2026.2.26 (2026-02-26)
astral-sh/ruff-pre-commit (astral-sh/ruff-pre-commit)

v0.15.5

Compare Source

See: https://github.com/astral-sh/ruff/releases/tag/0.15.5

v0.15.4

Compare Source

See: https://github.com/astral-sh/ruff/releases/tag/0.15.4

v0.15.3

Compare Source

See: https://github.com/astral-sh/ruff/releases/tag/0.15.3

astral-sh/uv-pre-commit (astral-sh/uv-pre-commit)

v0.10.8

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.10.8

v0.10.7

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.10.7

v0.10.6

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.10.6

v0.10.5

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.10.5

python-jsonschema/check-jsonschema (python-jsonschema/check-jsonschema)

v0.37.0

Compare Source

  • Update vendored schemas: bamboo-spec, bitbucket-pipelines, circle-ci, gitlab-ci,
    mergify, renovate, woodpecker-ci (2026-02-26)
  • Removed support for Python 3.9
  • Verbose text output has been adjusted. At the first verbosity level (-v),
    all errors are reported but the checked filenames are no longer displayed. The
    list of filenames checked is now emitted at the second verbosity level (-vv)
    and above. (:issue:648)
  • check-jsonschema's sdist contents are now validated with check-sdist, and missing
    files have been added.
astral-sh/ruff (ruff)

v0.15.5

Compare Source

Released on 2026-03-05.

Preview features
  • Discover Markdown files by default in preview mode (#​23434)
  • [perflint] Extend PERF102 to comprehensions and generators (#​23473)
  • [refurb] Fix FURB101 and FURB103 false positives when I/O variable is used later (#​23542)
  • [ruff] Add fix for none-not-at-end-of-union (RUF036) (#​22829)
  • [ruff] Fix false positive for re.split with empty string pattern (RUF055) (#​23634)
Bug fixes
  • [fastapi] Handle callable class dependencies with __call__ method (FAST003) (#​23553)
  • [pydocstyle] Fix numpy section ordering (D420) (#​23685)
  • [pyflakes] Fix false positive for names shadowing re-exports (F811) (#​23356)
  • [pyupgrade] Avoid inserting redundant None elements in UP045 (#​23459)
Documentation
  • Document extension mapping for Markdown code formatting (#​23574)
  • Update default Python version examples (#​23605)
Other changes
  • Publish releases to Astral mirror (#​23616)
Contributors

v0.15.4

Compare Source

Released on 2026-02-26.

This is a follow-up release to 0.15.3 that resolves a panic when the new rule PLR1712 was enabled with any rule that analyzes definitions, such as many of the ANN or D rules.

Bug fixes
  • Fix panic on access to definitions after analyzing definitions (#​23588)
  • [pyflakes] Suppress false positive in F821 for names used before del in stub files (#​23550)
Documentation
  • Clarify first-party import detection in Ruff (#​23591)
  • Fix incorrect import-heading example (#​23568)
Contributors

v0.15.3

Compare Source

Released on 2026-02-26.

Preview features
  • Drop explicit support for .qmd file extension (#​23572)

    This can now be enabled instead by setting the extension option:

    # ruff.toml
    extension = { qmd = "markdown" }
    
    # pyproject.toml
    [tool.ruff]
    extension = { qmd = "markdown" }
  • Include configured extensions in file discovery (#​23400)

  • [flake8-bandit] Allow suspicious imports in TYPE_CHECKING blocks (S401-S415) (#​23441)

  • [flake8-bugbear] Allow B901 in pytest hook wrappers (#​21931)

  • [flake8-import-conventions] Add missing conventions from upstream (ICN001, ICN002) (#​21373)

  • [pydocstyle] Add rule to enforce docstring section ordering (D420) (#​23537)

  • [pylint] Implement swap-with-temporary-variable (PLR1712) (#​22205)

  • [ruff] Add unnecessary-assign-before-yield (RUF070) (#​23300)

  • [ruff] Support file-level noqa in RUF102 (#​23535)

  • [ruff] Suppress diagnostic for invalid f-strings before Python 3.12 (RUF027) (#​23480)

  • [flake8-bandit] Don't flag BaseLoader/CBaseLoader as unsafe (S506) (#​23510)

Bug fixes
  • Avoid infinite loop between I002 and PYI025 (#​23352)
  • [pyflakes] Fix false positive for @overload from lint.typing-modules (F811) (#​23357)
  • [pyupgrade] Fix false positive for TypeVar default before Python 3.12 (UP046) (#​23540)
  • [pyupgrade] Fix handling of \N in raw strings (UP032) (#​22149)
Rule changes
  • Render sub-diagnostics in the GitHub output format (#​23455)

  • [flake8-bugbear] Tag certain B007 diagnostics as unnecessary (#​23453)

  • [ruff] Ignore unknown rule codes in RUF100 (#​23531)

    These are now flagged by RUF102 instead.

Documentation
  • Fix missing settings links for several linters (#​23519)
  • Update isort action comments heading (#​23515)
  • [pydocstyle] Fix double comma in description of D404 (#​23440)
Other changes
  • Update the Python module (notably find_ruff_bin) for parity with uv (#​23406)
Contributors

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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from edgarrmondragon as a code owner February 24, 2026 09:21
@renovate renovate bot changed the title chore(deps): update pre-commit hook astral-sh/uv-pre-commit to v0.10.5 chore(deps): update pre-commit hook astral-sh/uv-pre-commit to v0.10.6 Feb 25, 2026
@renovate renovate bot force-pushed the renovate/pre-commit branch from edb1bc9 to cf537e8 Compare February 25, 2026 02:46
@renovate renovate bot changed the title chore(deps): update pre-commit hook astral-sh/uv-pre-commit to v0.10.6 chore(deps): update pre-commit hooks Feb 26, 2026
@renovate renovate bot force-pushed the renovate/pre-commit branch 5 times, most recently from ba360a0 to f69f695 Compare March 2, 2026 01:35
@edgarrmondragon edgarrmondragon self-assigned this Mar 2, 2026
@renovate renovate bot force-pushed the renovate/pre-commit branch 2 times, most recently from bbc719b to ab2f95b Compare March 4, 2026 01:02
@renovate renovate bot force-pushed the renovate/pre-commit branch from ab2f95b to 97eeb57 Compare March 5, 2026 22:52
@edgarrmondragon edgarrmondragon added this pull request to the merge queue Mar 5, 2026
Merged via the queue into main with commit b8decc1 Mar 5, 2026
2 checks passed
@edgarrmondragon edgarrmondragon deleted the renovate/pre-commit branch March 5, 2026 22:53
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.

1 participant