Skip to content

chore(deps): bump the pre-commit group across 1 directory with 9 updates#1205

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pre_commit/main/pre-commit-34a3ceaee6
Open

chore(deps): bump the pre-commit group across 1 directory with 9 updates#1205
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pre_commit/main/pre-commit-34a3ceaee6

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 10, 2026

Copy link
Copy Markdown
Contributor

Bumps the pre-commit group with 9 updates in the / directory:

Package From To
https://github.com/commitizen-tools/commitizen v4.13.10 4.16.3
https://github.com/pycqa/isort 9.0.0 9.0.0
https://github.com/ambv/black 26.3.1 26.5.1
https://github.com/asottile/blacken-docs 1.20.0 1.20.0
black 26.3.1 26.5.1
https://github.com/pycqa/flake8 7.3.0 7.3.0
flake8-noqa 1.4.0 1.5.0
flake8-pyi 25.5.0 26.5.0
https://github.com/Mateusz-Grzelinski/actionlint-py v1.7.12.24 1.7.12.24

Updates https://github.com/commitizen-tools/commitizen from v4.13.10 to 4.16.3

Release notes

Sourced from https://github.com/commitizen-tools/commitizen's releases.

v4.16.3 (2026-05-30)

Fix

  • check: expand env vars in --rev-range (#2005)
Changelog

Sourced from https://github.com/commitizen-tools/commitizen's changelog.

v4.13.9 (2026-02-25)

Fix

  • avoid raising an exception when a change_type is not defined (#1879)

v4.13.8 (2026-02-18)

Fix

  • config: fix contains_commitizen_section failing for completely empty files

v4.13.7 (2026-02-09)

Fix

  • provider: use encoding settings in config (#1857)

v4.13.6 (2026-02-07)

Fix

  • bump: preserve existing changelog header when changelog_merge_prerelease is used with cz bump --changelog (#1850)

v4.13.5 (2026-02-05)

Fix

  • changelog: add incremental parameter to changelog generation (#1808)

v4.13.4 (2026-02-04)

Fix

  • pre-commit-hooks: correct rev-range syntax in commitizen-branch (#1841)

v4.13.3 (2026-02-04)

Refactor

  • version_schemes: shorten generate_prerelease (#1838)

v4.13.2 (2026-02-03)

Refactor

  • simplify code with pathlib Path object (#1840)
  • tags: extract version resolution method (#1839)

v4.13.1 (2026-02-03)

... (truncated)

Commits
  • 286da54 bump: version 4.16.2 → 4.16.3
  • 8f5b496 fix(check): expand env vars in --rev-range (#2005)
  • df8f6a0 docs(cli/screenshots): update CLI screenshots
  • 2b4707c test: normalize argparse choice snapshots (#2000)
  • c806e26 docs(cli/screenshots): update CLI screenshots
  • effd5dd ci(deps): bump uv from 0.11.6 to 0.11.15 (#2004)
  • a523e55 docs(cli/screenshots): update CLI screenshots
  • 93b74c9 ci(deps): bump pymdown-extensions from 10.21.2 to 10.21.3 (#1995)
  • 98f1777 docs(cli/screenshots): update CLI screenshots
  • c3f6797 ci(deps): bump peter-evans/create-or-update-comment from 4 to 5 (#1998)
  • Additional commits viewable in compare view

Updates https://github.com/pycqa/isort from 9.0.0 to 9.0.0

Changelog

Sourced from https://github.com/pycqa/isort's changelog.

Changelog

NOTE: isort follows the semver versioning standard. Find out more about isort's release policy here.

Releases

Unreleased

8.0.0 February 19 2026

  • Removed --old-finders and --magic-placement flags and old_finders configuration option. The legacy finder logic that relied on environment introspection has been removed (#2445) @​joao-faria-dev
  • Update the plone profile to not clash with black (#2456) @​ale-rt

6.1.0 October 1 2025

6.0.1 Febuary 26 2025

6.0.0 January 27 2025

5.13.2 December 13 2023

5.13.1 December 11 2023

5.13.0 December 9 2023

... (truncated)

Commits
  • a333737 Merge pull request #2463 from FinlayTheBerry/issue/2461
  • 878ba7e Added compression to stdlibs for Python 3.14 in isort/stdlibs/py314.py
  • b5f06a7 Merge pull request #2459 from Fridayai700/fix-unindented-comment-corruption
  • 3459bde Merge pull request #2460 from PyCQA/DanielNoord-patch-1
  • 6e70bb6 Update CHANGELOG for version 8.0.0
  • fd2514b Fix unindented comments being corrupted in indented blocks
  • b0f2dab Merge pull request #2458 from skv0zsneg/issue/1882
  • 313797b Fix lint.
  • 7d3a6f5 Add ignore for cyclomatic complexity check.
  • 6b9f895 Remove debug prints.
  • Additional commits viewable in compare view

Updates https://github.com/ambv/black from 26.3.1 to 26.5.1

Release notes

Sourced from https://github.com/ambv/black's releases.

26.5.1

Stable style

  • Fix unstable formatting of annotated assignments whose subscript annotation contains an inline comment (e.g. x: list[ # pyright: ignore[...]) (#5130)
  • Preserve inline comments (including # type: ignore) immediately before a # fmt: skip line, avoiding AST equivalence failures (#5139)

Packaging

  • Correct the version in the published executables (#5137)

Documentation

  • Add Neovim integration guide covering conform.nvim, ALE, and simple command approaches (#5124)
Changelog

Sourced from https://github.com/ambv/black's changelog.

Change Log

Unreleased

  • Add support for NO_COLOR environment variable to disable ANSI output (#5129)
  • No spurious target version warning when runtime version is included in a --target-version flag (#5167)

Highlights

Stable style

  • Fix crash when a standalone comment sits between tokens of a comprehension or lambda (#5144)
  • Fix a crash when splitting case case if ... match patterns at very small line lengths (#5147)
  • Fix multiline docstring indentation when leading tabs are used inside indented docstrings (#5148)
  • Respect # fmt: skip on a line that opens a bracket (e.g. from x import ( # fmt: skip) when a standalone comment is among the bracket's contents: the whole statement is now preserved instead of being reformatted (and previously crashing) (#5161)

Preview style

  • Stop splitting between a variable and its comparator (not in, ==, is, ...) when the right-hand side is a bracketed expression. Black now lets the bracket explode instead. This fixes the awkward break that was showing up in comprehension if clauses (#4514) as well as the same shape inside if, elif, assert, and parenthesized expressions (#5135)
  • In .pyi stub files, enforce a blank line after a function or method that has a docstring-only body when another comment or statement follows it (#5158)

Configuration

  • Fix find_project_root returning a stale cached result when --code is used from different working directories in the same process. The CWD fallback (used when no srcs are given) is now resolved before the lru_cache key is computed, so each directory gets the correct pyproject.toml (#5152)

... (truncated)

Commits

Updates https://github.com/asottile/blacken-docs from 1.20.0 to 1.20.0

Changelog

Sourced from https://github.com/asottile/blacken-docs's changelog.

========= Changelog

  • Drop Python 3.9 support.

1.20.0 (2025-09-08)

  • Support Python 3.14.

1.19.1 (2024-10-23)

  • Add support for Black's --pyi flag.

    Thanks to Alex Waygood in PR [#375](https://github.com/asottile/blacken-docs/issues/375) <https://github.com/adamchainz/blacken-docs/pull/375>__.

1.19.0 (2024-10-07)

  • reStructuredText: Gracefully ignore empty code blocks.

    Thanks to Stephen Rosen in PR [#368](https://github.com/asottile/blacken-docs/issues/368) <https://github.com/adamchainz/blacken-docs/issues/368>__.

  • Drop Python 3.8 support.

  • Support Python 3.13.

1.18.0 (2024-06-30)

  • Add support for on/off comments.

    Thanks to Timothée Mazzucotelli in PR [#287](https://github.com/asottile/blacken-docs/issues/287) <https://github.com/adamchainz/blacken-docs/pull/287>__.

  • Fix Markdown pycon formatting to allow formatting the rest of the file.

1.17.0 (2024-06-29)

  • Add a --check option. When used, blacken-docs will not modify files but indicate when changes are necessary with a message and non-zero exit code.

    Thanks to Joaquim Esteves in PR [#278](https://github.com/asottile/blacken-docs/issues/278) <https://github.com/adamchainz/blacken-docs/pull/278>__.

  • Allow options in LaTeX minted blocks.

    Thanks to Peter Cock in PR [#313](https://github.com/asottile/blacken-docs/issues/313) <https://github.com/adamchainz/blacken-docs/pull/313>__.

... (truncated)

Commits

Updates black from 26.3.1 to 26.5.1

Updates https://github.com/pycqa/flake8 from 7.3.0 to 7.3.0

Commits

Updates flake8-noqa from 1.4.0 to 1.5.0

Updates flake8-pyi from 25.5.0 to 26.5.0

Updates https://github.com/Mateusz-Grzelinski/actionlint-py from v1.7.12.24 to 1.7.12.24

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the pre-commit group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [https://github.com/commitizen-tools/commitizen](https://github.com/commitizen-tools/commitizen) | `v4.13.10` | `4.16.3` |
| [https://github.com/pycqa/isort](https://github.com/pycqa/isort) | `9.0.0` | `9.0.0` |
| [https://github.com/ambv/black](https://github.com/ambv/black) | `26.3.1` | `26.5.1` |
| [https://github.com/asottile/blacken-docs](https://github.com/asottile/blacken-docs) | `1.20.0` | `1.20.0` |
| black | `26.3.1` | `26.5.1` |
| [https://github.com/pycqa/flake8](https://github.com/pycqa/flake8) | `7.3.0` | `7.3.0` |
| flake8-noqa | `1.4.0` | `1.5.0` |
| flake8-pyi | `25.5.0` | `26.5.0` |
| [https://github.com/Mateusz-Grzelinski/actionlint-py](https://github.com/Mateusz-Grzelinski/actionlint-py) | `v1.7.12.24` | `1.7.12.24` |



Updates `https://github.com/commitizen-tools/commitizen` from v4.13.10 to 4.16.3
- [Release notes](https://github.com/commitizen-tools/commitizen/releases)
- [Changelog](https://github.com/commitizen-tools/commitizen/blob/master/CHANGELOG.md)
- [Commits](commitizen-tools/commitizen@2ca29f9...286da54)

Updates `https://github.com/pycqa/isort` from 9.0.0 to 9.0.0
- [Release notes](https://github.com/pycqa/isort/releases)
- [Changelog](https://github.com/PyCQA/isort/blob/main/CHANGELOG.md)
- [Commits](PyCQA/isort@dac090c...a333737)

Updates `https://github.com/ambv/black` from 26.3.1 to 26.5.1
- [Release notes](https://github.com/ambv/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@c6755bb...87928e6)

Updates `https://github.com/asottile/blacken-docs` from 1.20.0 to 1.20.0
- [Changelog](https://github.com/adamchainz/blacken-docs/blob/main/CHANGELOG.rst)
- [Commits](adamchainz/blacken-docs@dda8db1...fda7769)

Updates `black` from 26.3.1 to 26.5.1

Updates `https://github.com/pycqa/flake8` from 7.3.0 to 7.3.0
- [Commits](PyCQA/flake8@d93590f...c48217e)

Updates `flake8-noqa` from 1.4.0 to 1.5.0

Updates `flake8-pyi` from 25.5.0 to 26.5.0

Updates `https://github.com/Mateusz-Grzelinski/actionlint-py` from v1.7.12.24 to 1.7.12.24
- [Commits](Mateusz-Grzelinski/actionlint-py@c04ed26...2f3dbd3)

---
updated-dependencies:
- dependency-name: https://github.com/commitizen-tools/commitizen
  dependency-version: 4.16.3
  dependency-type: direct:production
  dependency-group: pre-commit
- dependency-name: https://github.com/pycqa/isort
  dependency-version: 9.0.0
  dependency-type: direct:production
  dependency-group: pre-commit
- dependency-name: https://github.com/ambv/black
  dependency-version: 26.5.1
  dependency-type: direct:production
  dependency-group: pre-commit
- dependency-name: https://github.com/asottile/blacken-docs
  dependency-version: 1.20.0
  dependency-type: direct:production
  dependency-group: pre-commit
- dependency-name: black
  dependency-version: 26.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pre-commit
- dependency-name: https://github.com/pycqa/flake8
  dependency-version: 7.3.0
  dependency-type: direct:production
  dependency-group: pre-commit
- dependency-name: flake8-noqa
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pre-commit
- dependency-name: flake8-pyi
  dependency-version: 26.5.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pre-commit
- dependency-name: https://github.com/Mateusz-Grzelinski/actionlint-py
  dependency-version: 1.7.12.24
  dependency-type: direct:production
  dependency-group: pre-commit
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file pre_commit Pull requests that update pre_commit code labels Jun 10, 2026
@dependabot dependabot Bot requested review from behnazh and jenstroeger as code owners June 10, 2026 08:55
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file pre_commit Pull requests that update pre_commit code labels Jun 10, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file pre_commit Pull requests that update pre_commit code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants