Skip to content

chore(deps): update dependency commitizen to v4.18.0 - #35

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

chore(deps): update dependency commitizen to v4.18.0#35
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/commitizen-4.x-lockfile

Conversation

@renovate

@renovate renovate Bot commented Sep 5, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
commitizen (changelog) 4.8.34.18.0 age confidence

Release Notes

commitizen-tools/commitizen (commitizen)

v4.18.0

Compare Source

Feat
  • commit: add a tag(--body-length-limit) and a function for command commit (#​1849)

v4.17.1

Compare Source

Fix
  • init: skip hook question when no installer is present
  • init: use prek when installing hooks if pre-commit is missing

v4.17.0

Compare Source

v4.17.0 (2026-07-29)

Feat
  • cmd/version: add support for --next USE_GIT_COMMITS
Fix
  • robuster agents
  • version: remove next from exclusive group
  • bump: use correct type for calling changelog

v4.16.5

Compare Source

v4.16.5 (2026-07-16)

Fix
  • exclude star-history API from lychee link checker (#​2029)

v4.16.4

Compare Source

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

v4.16.3

Compare Source

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

v4.16.2

Compare Source

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

v4.16.1

Compare Source

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

v4.16.0

Compare Source

Feat
  • hooks: support interactive hooks scripts

v4.15.1

Compare Source

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

v4.15.0

Compare Source

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

v4.14.0

Compare Source

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

v4.13.10

Compare Source

Fix
  • ci: use commitizen bot to push tags and commits
  • init: set semver2 as default if not python
  • change deprecated value and bump versions

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

v4.9.1

Compare Source

Fix
  • dependency: move deprecated to project.dependencies

v4.9.0

Compare Source

Feat
  • check: add check against default branch
Fix
  • changelog: mark get_smart_tag_range as deprecated
  • init: use pre-push as pre-commit stage
  • init: use pre-push as pre-commit stage
  • init: make welcome message easier to read
  • Init: fix a typo in _ask_version_provider options and remove unnecessary filter, use named tuple for options
  • ExitCode: add from_str in ExitCode and replace parse_no_raise with it
  • raise NoVersionSpecifiedError if version is None, and adjust call sites of get_version
  • Changelog: fix _export_template variable type
  • Bump: rewrite --get-next NotAllowed error message for consistency
Refactor
  • changelog: add get_next_tag_name_after_version and test, mark unused for get_smart_tag_range
  • changelog: simplify logic for get_oldest_and_newest_rev
  • changelog: shorten generate_tree_from_commits
  • Init: remove the variable values_to_add and the update_config function for readability
  • Init: remove unnecessary methods from ProjectInfo and refactor _ask_tag
  • Init: fix unbounded variable in _ask_tag_format
  • init: remote extra words
  • process_commit_message: better type and early return
  • Init: extract _get_config_data for readability
  • changelog: shorten condition expression and early return
  • Changelog: remove unnecessary intermediate variables for better readability
  • bump: use a loop to shorten a series of similar NotAllowed exceptions
  • Init: use ternary operator
  • TagRules: extract tag_formats property and simplify list comprehension
  • git: remove redundant if branch
  • ScmProvider: replace sorted with max
  • ExpectedExit: make the constructor more compact
  • ParseArgs: simplify call function body

v4.8.4

Compare Source

Fix
  • members in workspace, use exclude
  • cargo workspaces
Refactor
  • reduce code indentation

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

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

@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.8.4 chore(deps): update dependency commitizen to v4.9.1 Sep 10, 2025
@renovate
renovate Bot force-pushed the renovate/commitizen-4.x-lockfile branch from 29c470b to 7a35891 Compare September 10, 2025 14:55
@renovate
renovate Bot force-pushed the renovate/commitizen-4.x-lockfile branch from 7a35891 to 78f5307 Compare November 10, 2025 18:08
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.9.1 chore(deps): update dependency commitizen to v4.10.0 Nov 10, 2025
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.10.0 chore(deps): update dependency commitizen to v4.10.1 Dec 11, 2025
@renovate
renovate Bot force-pushed the renovate/commitizen-4.x-lockfile branch from 78f5307 to 79e1922 Compare December 11, 2025 16:34
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.10.1 chore(deps): update dependency commitizen to v4.11.0 Dec 29, 2025
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.11.0 chore(deps): update dependency commitizen to v4.11.2 Jan 12, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.11.2 chore(deps): update dependency commitizen to v4.11.3 Jan 13, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.11.3 chore(deps): update dependency commitizen to v4.11.5 Jan 15, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.11.5 chore(deps): update dependency commitizen to v4.11.6 Jan 15, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.11.6 chore(deps): update dependency commitizen to v4.12.0 Jan 19, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.12.0 chore(deps): update dependency commitizen to v4.12.1 Jan 22, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.12.1 chore(deps): update dependency commitizen to v4.13.0 Feb 1, 2026
@renovate
renovate Bot force-pushed the renovate/commitizen-4.x-lockfile branch from 79e1922 to 634c343 Compare February 1, 2026 15:31
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.13.0 chore(deps): update dependency commitizen to v4.13.2 Feb 3, 2026
@renovate
renovate Bot force-pushed the renovate/commitizen-4.x-lockfile branch from 634c343 to 4fee6f4 Compare February 3, 2026 17:07
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.13.2 chore(deps): update dependency commitizen to v4.13.3 Feb 4, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.13.3 chore(deps): update dependency commitizen to v4.13.4 Feb 4, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.13.4 chore(deps): update dependency commitizen to v4.13.5 Feb 5, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.13.5 chore(deps): update dependency commitizen to v4.13.6 Feb 7, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.13.6 chore(deps): update dependency commitizen to v4.13.7 Feb 9, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.13.7 chore(deps): update dependency commitizen to v4.13.8 Feb 18, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.13.8 chore(deps): update dependency commitizen to v4.13.9 Feb 25, 2026
@renovate
renovate Bot force-pushed the renovate/commitizen-4.x-lockfile branch from 4fee6f4 to 7454ba6 Compare March 13, 2026 17:55
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.13.9 chore(deps): update dependency commitizen to v4.13.10 Apr 11, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.13.10 chore(deps): update dependency commitizen to v4.14.0 May 3, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.14.0 chore(deps): update dependency commitizen to v4.15.0 May 3, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.15.0 chore(deps): update dependency commitizen to v4.15.1 May 6, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.15.1 chore(deps): update dependency commitizen to v4.16.0 May 12, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.16.0 chore(deps): update dependency commitizen to v4.16.2 May 15, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.16.2 chore(deps): update dependency commitizen to v4.16.3 May 30, 2026
@renovate
renovate Bot force-pushed the renovate/commitizen-4.x-lockfile branch from 7454ba6 to 2a0f286 Compare May 30, 2026 09:49
@renovate
renovate Bot force-pushed the renovate/commitizen-4.x-lockfile branch from 2a0f286 to 4c176e6 Compare June 22, 2026 10:46
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.16.3 chore(deps): update dependency commitizen to v4.16.4 Jun 22, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.16.4 chore(deps): update dependency commitizen to v4.16.5 Jul 16, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.16.5 chore(deps): update dependency commitizen to v4.17.0 Jul 29, 2026
@renovate
renovate Bot force-pushed the renovate/commitizen-4.x-lockfile branch from 4c176e6 to 795a68d Compare July 29, 2026 09:55
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.17.0 chore(deps): update dependency commitizen to v4.17.1 Aug 17, 2026
@renovate renovate Bot changed the title chore(deps): update dependency commitizen to v4.17.1 chore(deps): update dependency commitizen to v4.18.0 Aug 19, 2026
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