Skip to content

chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.16.4#318

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/commitizen-tools-commitizen-4.x
Open

chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.16.4#318
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/commitizen-tools-commitizen-4.x

Conversation

@renovate

@renovate renovate Bot commented Nov 11, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
commitizen-tools/commitizen repository minor v4.9.1v4.16.4

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

commitizen-tools/commitizen (commitizen-tools/commitizen)

v4.16.4

Compare Source

v4.16.4 (2026-06-22)

Fix
  • providers/cargo: don't crash on workspace member with fixed version

v4.16.3

Compare Source

v4.16.3 (2026-05-30)

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

v4.16.2

Compare Source

v4.16.2 (2026-05-15)

Fix
  • tags: widen prerelease and devrelease tag regexes for SemVer2 (#​1972)

v4.16.1

Compare Source

v4.16.1 (2026-05-15)

Fix
  • cz_customize: derive bump_map_major_version_zero from bump_map (#​1977)

v4.16.0

Compare Source

v4.16.0 (2026-05-12)

Feat
  • hooks: support interactive hooks scripts

v4.15.1

Compare Source

v4.15.1 (2026-05-06)

Fix
  • security: prevent command injection via shell=True (CWE-78) (#​1941)

v4.15.0

Compare Source

v4.15.0 (2026-05-03)

Feat
  • version: add MANUAL_VERSION, --next and --patch to version command (#​1724)

v4.14.0

Compare Source

v4.14.0 (2026-05-03)

Feat
  • add --allow-no-commit to changelog command (#​1868)

v4.13.10

Compare Source

v4.13.9

Compare Source

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

v4.13.8

Compare Source

Fix
  • config: fix contains_commitizen_section failing for completely empty files

v4.13.7

Compare Source

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

v4.13.6

Compare Source

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

v4.13.5

Compare Source

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

v4.13.4

Compare Source

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

v4.13.3

Compare Source

Refactor
  • version_schemes: shorten generate_prerelease (#​1838)

v4.13.2

Compare Source

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

v4.13.1

Compare Source

Refactor
  • config: replace is_empty_config with contains_commitizen_section, improve multi config resolution algorithm (#​1842)

v4.13.0

Compare Source

Feat
  • bump: add --version-files-only and deprecate --files-only (#​1802)
  • version: add --tag tag to version command (#​1819)
  • cli: add description when choosing a commit rule (#​1825)
  • tags: enable version schemes with less than 3 components (#​1705)
Fix
  • config: include pyproject.toml in multi config file warning (#​1803)
  • add pytest ruff rule PT and fix missing deprecation warning (#​1826)
  • message_length_limit: align the behavior of message_length_limit (#​1813)
  • cli: capitalize the first characters of help texts and fix minor grammar errors
Refactor
  • replace hard-coded string "cz_conventional_commits" with DEFAULT_SETTINGS (#​1830)
  • bump: fix unbounded variable type issue

v4.12.1

Compare Source

Fix
  • pre-commit-hooks: remove magic constants on pre-push hook (#​1815)

v4.12.0

Compare Source

Feat
  • prek: supporting prek as an alternative to pre-commit and switching to prek (#​1799)

v4.11.6

Compare Source

Fix
  • git: commit bodies with carriage returns are correctly split by … (#​1780)

v4.11.5

Compare Source

Fix
  • config: ensure the actually used config file is correct, better test coverage (#​1784)

v4.11.4

Compare Source

Fix
  • cli: move sys.excepthook override to correct line, rename 'type' parameter, fix no argv test (#​1791)

v4.11.3

Compare Source

Fix
  • bump: fix the issue that changelog_merge_prerelease not working on cz bump

v4.11.2

Compare Source

Fix
  • config: add warning for multiple configuration files and update documentation (#​1773)

v4.11.1

Compare Source

Fix
  • providers: normalize package names in uv provider for uv.lock matching

v4.11.0

Compare Source

Feat
  • Drop support for Python 3.9 as EOL reached and add Python 3.14 support
  • add custom validation

v4.10.1

Compare Source

Fix
  • version: fix the behavior of cz version --major
  • cli: debug and no_raise can be used together in sys.excepthook
  • git: replace lstrip with strip for compatibility issue
  • bump: remove NotAllowed related to --get-next option, other related refactoring
Refactor
  • version: rename class member to align with other classes
  • cargo_provider: cleanup and get rid of potential type errors
  • bump: extract option validation and new version resolution to new functions
  • changelog: raise NotAllow when file_name not passed instead of using assert
  • bump: rename parameter and variables
Perf
  • ruff: enable ruff rules TC001~TC006
  • add TYPE_CHECKING to CzQuestion imports

v4.10.0

Compare Source

Feat
  • add config option for line length warning
  • conventional_commits: allow exclamation in title on BC
  • version: add the ability to just print major or minor version
  • allow amend! prefix as created by git --fixup=reword:<commit>
Fix
  • commands/version: add missing return
  • test: set terminal width for cli tests
  • Init: raise InitFailedError on keyboard interrupt on pre-commit hook question, simplify logic, remove unreachable code path
Refactor
  • bump: cleanup related to update_version_file
  • RestructuredTest: rename variable, fix typo and remove unnecessary string copy
  • TomlConfig: minor cleanups for DX
  • Commit: refactor _prompt_commit_questions and fix some type hint
  • hooks: refactor to improve readability
  • Init: make project_info a module and remove self.project_info
  • BaseConfig: update docstring, extract factory method and remove unnecessary variable assignment
  • remove self.encoding for better maintainability
  • utils: make get_backup_file_path to return a path for semantic correctness
  • remove unnecessary class member tag_format
  • Bump: remove use of getattr
  • ConventionalCommitsCz: rewrite message method to make the pattern more clear
  • cmd: unnest try except
  • BaseCommitizen: remove NotImplementedError and make them abstract method
  • BaseCommitizen: construct Style object directly to get rid of potential type error

Configuration

📅 Schedule: (UTC)

  • 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 is behind base branch, 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

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

@github-actions github-actions Bot added the yaml label Nov 11, 2025
@codecov

codecov Bot commented Nov 11, 2025

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 96.76%. Comparing base (cf18f4d) to head (1cbaeec).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #318   +/-   ##
=======================================
  Coverage   96.76%   96.76%           
=======================================
  Files         263      263           
  Lines       21392    21392           
=======================================
  Hits        20699    20699           
  Misses        693      693           

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.10.0 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.10.1 Dec 11, 2025
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from 1f73a07 to e3dc1c9 Compare December 11, 2025 19:54
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.10.1 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.11.0 Dec 29, 2025
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from e3dc1c9 to 20a2474 Compare December 29, 2025 14:03
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.11.0 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.11.1 Jan 3, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from 20a2474 to 4d251b5 Compare January 3, 2026 17:43
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.11.1 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.11.2 Jan 12, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from 4d251b5 to 82a4031 Compare January 12, 2026 13:44
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.11.2 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.11.3 Jan 13, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from 82a4031 to bf90a1e Compare January 13, 2026 11:09
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.11.3 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.11.5 Jan 15, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from bf90a1e to ff292fc Compare January 15, 2026 14:00
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.11.5 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.11.6 Jan 15, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from ff292fc to f0b60c9 Compare January 15, 2026 18:44
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.11.6 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.12.0 Jan 19, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from f0b60c9 to 1b25b28 Compare January 19, 2026 10:48
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.12.0 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.12.1 Jan 22, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from 1b25b28 to aa12f2c Compare January 22, 2026 13:55
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.12.1 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.0 Feb 1, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from aa12f2c to 2dc6cb1 Compare February 1, 2026 15:22
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.0 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.2 Feb 3, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from 2dc6cb1 to 6154137 Compare February 3, 2026 17:26
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.2 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.3 Feb 4, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from 6154137 to fef7441 Compare February 4, 2026 05:15
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.3 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.4 Feb 4, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch 2 times, most recently from fbdafc2 to e4b713c Compare February 5, 2026 17:15
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.4 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.5 Feb 5, 2026
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.5 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.6 Feb 7, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch 2 times, most recently from c296cf6 to 4f95f23 Compare February 9, 2026 13:54
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.6 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.7 Feb 9, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from 4f95f23 to 56eb7e0 Compare February 18, 2026 10:40
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.7 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.8 Feb 18, 2026
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.8 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.9 Feb 25, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from 56eb7e0 to 4967f79 Compare February 25, 2026 03:06
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.9 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.10 Apr 11, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from 4967f79 to 10c08f8 Compare April 11, 2026 08:26
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.13.10 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.15.0 May 3, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from 10c08f8 to 31d9c9b Compare May 3, 2026 09:26
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.15.0 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.15.1 May 6, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from 31d9c9b to 90172e8 Compare May 6, 2026 09:10
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.15.1 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.16.0 May 12, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch 2 times, most recently from bb88669 to 3eaae21 Compare May 15, 2026 04:53
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.16.0 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.16.2 May 15, 2026
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.16.2 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.16.3 May 30, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from 3eaae21 to eb94a5f Compare May 30, 2026 08:48
@renovate renovate Bot changed the title chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.16.3 chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.16.4 Jun 22, 2026
@renovate renovate Bot force-pushed the renovate/commitizen-tools-commitizen-4.x branch from eb94a5f to 1cbaeec Compare June 22, 2026 09:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants