Skip to content

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

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

chore(deps): bump the pre-commit group across 1 directory with 7 updates#30
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pre_commit/main/pre-commit-619b9d8eec

Conversation

@dependabot

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

Copy link
Copy Markdown

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

Package From To
https://github.com/commitizen-tools/commitizen v4.13.9 4.16.3
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

Updates https://github.com/commitizen-tools/commitizen from v4.13.9 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/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

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 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [https://github.com/commitizen-tools/commitizen](https://github.com/commitizen-tools/commitizen) | `v4.13.9` | `4.16.3` |
| [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` |



Updates `https://github.com/commitizen-tools/commitizen` from v4.13.9 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@4fbeae7...286da54)

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

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

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 8, 2026
@dependabot dependabot Bot requested a review from jenstroeger as a code owner June 8, 2026 22:16
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file pre_commit Pull requests that update pre_commit code labels Jun 8, 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