1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687
|
from __future__ import annotations
import argparse
import logging
import sys
from copy import deepcopy
from functools import partial
from pathlib import Path
from types import TracebackType
from typing import TYPE_CHECKING, cast
import argcomplete
from decli import cli
from commitizen import commands, config, out, version_schemes
from commitizen.exceptions import (
CommitizenException,
ExitCode,
ExpectedExit,
InvalidCommandArgumentError,
NoCommandFoundError,
)
logger = logging.getLogger(__name__)
class ParseKwargs(argparse.Action):
"""
Parse arguments in the for `key=value`.
Quoted strings are automatically unquoted.
Can be submitted multiple times:
ex:
-k key=value -k double-quotes="value" -k single-quotes='value'
will result in
namespace["opt"] == {
"key": "value",
"double-quotes": "value",
"single-quotes": "value",
}
"""
def __call__(
self,
parser: argparse.ArgumentParser,
namespace: argparse.Namespace,
values: object,
option_string: str | None = None,
) -> None:
if not isinstance(values, str):
return
key, sep, value = values.partition("=")
if not key or not sep:
raise InvalidCommandArgumentError(
f"Option {option_string} expect a key=value format"
)
kwargs = getattr(namespace, self.dest, None) or {}
kwargs[key] = value.strip("'\"")
setattr(namespace, self.dest, kwargs)
tpl_arguments = (
{
"name": ["--template", "-t"],
"help": (
"changelog template file name (relative to the current working directory)"
),
},
{
"name": ["--extra", "-e"],
"action": ParseKwargs,
"dest": "extras",
"metavar": "EXTRA",
"help": "a changelog extra variable (in the form 'key=value')",
},
)
data = {
"prog": "cz",
"description": (
"Commitizen is a powerful release management tool that helps teams maintain consistent and meaningful commit messages while automating version management.\n"
"For more information, please visit https://commitizen-tools.github.io/commitizen"
),
"formatter_class": argparse.RawDescriptionHelpFormatter,
"arguments": [
{
"name": "--config",
"help": "the path of configuration file",
},
{"name": "--debug", "action": "store_true", "help": "use debug mode"},
{
"name": ["-n", "--name"],
"help": "use the given commitizen (default: cz_conventional_commits)",
},
{
"name": ["-nr", "--no-raise"],
"type": str,
"required": False,
"help": "comma separated error codes that won't raise error, e.g: cz -nr 1,2,3 bump. See codes at https://commitizen-tools.github.io/commitizen/exit_codes/",
},
],
"subcommands": {
"title": "commands",
"required": True,
"commands": [
{
"name": ["init"],
"description": "init commitizen configuration",
"help": "init commitizen configuration",
"func": commands.Init,
},
{
"name": ["commit", "c"],
"description": "create new commit",
"help": "create new commit",
"func": commands.Commit,
"arguments": [
{
"name": ["--retry"],
"action": "store_true",
"help": "retry last commit",
},
{
"name": ["--no-retry"],
"action": "store_true",
"default": False,
"help": "skip retry if retry_after_failure is set to true",
},
{
"name": "--dry-run",
"action": "store_true",
"help": "show output to stdout, no commit, no modified files",
},
{
"name": "--write-message-to-file",
"type": Path,
"metavar": "FILE_PATH",
"help": "write message to file before committing (can be combined with --dry-run)",
},
{
"name": ["-s", "--signoff"],
"action": "store_true",
"help": "Deprecated, use 'cz commit -- -s' instead",
},
{
"name": ["-a", "--all"],
"action": "store_true",
"help": "Tell the command to automatically stage files that have been modified and deleted, but new files you have not told Git about are not affected.",
},
{
"name": ["-e", "--edit"],
"action": "store_true",
"default": False,
"help": "edit the commit message before committing",
},
{
"name": ["-l", "--message-length-limit"],
"type": int,
"help": "length limit of the commit message; 0 for no limit",
},
{
"name": ["--"],
"action": "store_true",
"dest": "double_dash",
"help": "Positional arguments separator (recommended)",
},
],
},
{
"name": "ls",
"description": "show available commitizens",
"help": "show available commitizens",
"func": commands.ListCz,
},
{
"name": "example",
"description": "show commit example",
"help": "show commit example",
"func": commands.Example,
},
{
"name": "info",
"description": "show information about the cz",
"help": "show information about the cz",
"func": commands.Info,
},
{
"name": "schema",
"description": "show commit schema",
"help": "show commit schema",
"func": commands.Schema,
},
{
"name": "bump",
"description": "bump semantic version based on the git log",
"help": "bump semantic version based on the git log",
"func": commands.Bump,
"arguments": [
{
"name": "--dry-run",
"action": "store_true",
"help": "show output to stdout, no commit, no modified files",
},
{
"name": "--files-only",
"action": "store_true",
"help": "bump version in the files from the config",
},
{
"name": "--local-version",
"action": "store_true",
"help": "bump only the local version portion",
},
{
"name": ["--changelog", "-ch"],
"action": "store_true",
"default": False,
"help": "generate the changelog for the newest version",
},
{
"name": ["--no-verify"],
"action": "store_true",
"default": False,
"help": "this option bypasses the pre-commit and commit-msg hooks",
},
{
"name": "--yes",
"action": "store_true",
"help": "accept automatically questions done",
},
{
"name": "--tag-format",
"help": (
"the format used to tag the commit and read it, "
"use it in existing projects, "
"wrap around simple quotes"
),
},
{
"name": "--bump-message",
"help": (
"template used to create the release commit, "
"useful when working with CI"
),
},
{
"name": ["--prerelease", "-pr"],
"help": "choose type of prerelease",
"choices": ["alpha", "beta", "rc"],
},
{
"name": ["--devrelease", "-d"],
"help": "specify non-negative integer for dev. release",
"type": int,
},
{
"name": ["--increment"],
"help": "manually specify the desired increment",
"choices": ["MAJOR", "MINOR", "PATCH"],
"type": str.upper,
},
{
"name": ["--increment-mode"],
"choices": ["linear", "exact"],
"default": "linear",
"help": (
"set the method by which the new version is chosen. "
"'linear' (default) guesses the next version based on typical linear version progression, "
"such that bumping of a pre-release with lower precedence than the current pre-release "
"phase maintains the current phase of higher precedence. "
"'exact' applies the changes that have been specified (or determined from the commit log) "
"without interpretation, such that the increment and pre-release are always honored"
),
},
{
"name": ["--check-consistency", "-cc"],
"help": (
"check consistency among versions defined in "
"commitizen configuration and version_files"
),
"action": "store_true",
},
{
"name": ["--annotated-tag", "-at"],
"help": "create annotated tag instead of lightweight one",
"action": "store_true",
},
{
"name": ["--annotated-tag-message", "-atm"],
"help": "create annotated tag message",
"type": str,
},
{
"name": ["--gpg-sign", "-s"],
"help": "sign tag instead of lightweight one",
"default": False,
"action": "store_true",
},
{
"name": ["--changelog-to-stdout"],
"action": "store_true",
"default": False,
"help": "Output changelog to the stdout",
},
{
"name": ["--git-output-to-stderr"],
"action": "store_true",
"default": False,
"help": "Redirect git output to stderr",
},
{
"name": ["--retry"],
"action": "store_true",
"default": False,
"help": "retry commit if it fails the 1st time",
},
{
"name": ["--major-version-zero"],
"action": "store_true",
"default": None,
"help": "keep major version at zero, even for breaking changes",
},
*deepcopy(tpl_arguments),
{
"name": "--file-name",
"help": "file name of changelog (default: 'CHANGELOG.md')",
},
{
"name": ["--prerelease-offset"],
"type": int,
"default": None,
"help": "start pre-releases with this offset",
},
{
"name": ["--version-scheme"],
"help": "choose version scheme",
"default": None,
"choices": version_schemes.KNOWN_SCHEMES,
},
{
"name": ["--version-type"],
"help": "Deprecated, use --version-scheme instead",
"default": None,
"choices": version_schemes.KNOWN_SCHEMES,
},
{
"name": "manual_version",
"type": str,
"nargs": "?",
"help": "bump to the given version (e.g: 1.5.3)",
"metavar": "MANUAL_VERSION",
},
{
"name": ["--build-metadata"],
"help": "Add additional build-metadata to the version-number",
"default": None,
},
{
"name": ["--get-next"],
"action": "store_true",
"help": "Determine the next version and write to stdout",
"default": False,
},
{
"name": ["--allow-no-commit"],
"default": False,
"help": "bump version without eligible commits",
"action": "store_true",
},
],
},
{
"name": ["changelog", "ch"],
"description": (
"generate changelog (note that it will overwrite existing file)"
),
"help": (
"generate changelog (note that it will overwrite existing file)"
),
"func": commands.Changelog,
"arguments": [
{
"name": "--dry-run",
"action": "store_true",
"default": False,
"help": "show changelog to stdout",
},
{
"name": "--file-name",
"help": "file name of changelog (default: 'CHANGELOG.md')",
},
{
"name": "--unreleased-version",
"help": (
"set the value for the new version (use the tag value), "
"instead of using unreleased"
),
},
{
"name": "--incremental",
"action": "store_true",
"default": False,
"help": (
"generates changelog from last created version, "
"useful if the changelog has been manually modified"
),
},
{
"name": "rev_range",
"type": str,
"nargs": "?",
"help": "generates changelog for the given version (e.g: 1.5.3) or version range (e.g: 1.5.3..1.7.9)",
},
{
"name": "--start-rev",
"default": None,
"help": (
"start rev of the changelog. "
"If not set, it will generate changelog from the start"
),
},
{
"name": "--merge-prerelease",
"action": "store_true",
"default": False,
"help": (
"collect all changes from prereleases into next non-prerelease. "
"If not set, it will include prereleases in the changelog"
),
},
{
"name": ["--version-scheme"],
"help": "choose version scheme",
"default": None,
"choices": version_schemes.KNOWN_SCHEMES,
},
{
"name": "--export-template",
"default": None,
"help": "Export the changelog template into this file instead of rendering it",
},
*deepcopy(tpl_arguments),
{
"name": "--tag-format",
"help": "The format of the tag, wrap around simple quotes",
},
],
},
{
"name": ["check"],
"description": "validates that a commit message matches the commitizen schema",
"help": "validates that a commit message matches the commitizen schema",
"func": commands.Check,
"arguments": [
{
"name": "--commit-msg-file",
"help": (
"ask for the name of the temporal file that contains "
"the commit message. "
"Using it in a git hook script: MSG_FILE=$1"
),
"exclusive_group": "group1",
},
{
"name": "--rev-range",
"help": "a range of git rev to check. e.g, master..HEAD",
"exclusive_group": "group1",
},
{
"name": ["-d", "--use-default-range"],
"action": "store_true",
"default": False,
"help": "check from the default branch to HEAD. e.g, refs/remotes/origin/master..HEAD",
"exclusive_group": "group1",
},
{
"name": ["-m", "--message"],
"help": "commit message that needs to be checked",
"exclusive_group": "group1",
},
{
"name": ["--allow-abort"],
"action": "store_true",
"default": False,
"help": "allow empty commit messages, which typically abort a commit",
},
{
"name": ["--allowed-prefixes"],
"nargs": "*",
"help": "allowed commit message prefixes. "
"If the message starts by one of these prefixes, "
"the message won't be checked against the regex",
},
{
"name": ["-l", "--message-length-limit"],
"type": int,
"help": "length limit of the commit message; 0 for no limit",
},
],
},
{
"name": ["version"],
"description": (
"get the version of the installed commitizen or the current project"
" (default: installed commitizen)"
),
"help": (
"get the version of the installed commitizen or the current project"
" (default: installed commitizen)"
),
"func": commands.Version,
"arguments": [
{
"name": ["-r", "--report"],
"help": "get system information for reporting bugs",
"action": "store_true",
"exclusive_group": "group1",
},
{
"name": ["-p", "--project"],
"help": "get the version of the current project",
"action": "store_true",
"exclusive_group": "group1",
},
{
"name": ["-c", "--commitizen"],
"help": "get the version of the installed commitizen",
"action": "store_true",
"exclusive_group": "group1",
},
{
"name": ["-v", "--verbose"],
"help": (
"get the version of both the installed commitizen "
"and the current project"
),
"action": "store_true",
"exclusive_group": "group1",
},
{
"name": ["--major"],
"help": "get just the major version. Need to be used with --project or --verbose.",
"action": "store_true",
"exclusive_group": "group2",
},
{
"name": ["--minor"],
"help": "get just the minor version. Need to be used with --project or --verbose.",
"action": "store_true",
"exclusive_group": "group2",
},
],
},
],
},
}
def commitizen_excepthook(
type: type[BaseException],
value: BaseException,
traceback: TracebackType | None,
debug: bool = False,
no_raise: list[int] | None = None,
) -> None:
traceback = traceback if isinstance(traceback, TracebackType) else None
if not isinstance(value, CommitizenException):
sys.__excepthook__(type, value, traceback)
return
if value.message:
value.output_method(value.message)
if debug:
sys.__excepthook__(type, value, traceback)
exit_code = value.exit_code
if no_raise is not None and exit_code in no_raise:
sys.exit(ExitCode.EXPECTED_EXIT)
sys.exit(exit_code)
def parse_no_raise(comma_separated_no_raise: str) -> list[int]:
"""Convert the given string to exit codes.
Receives digits and strings and outputs the parsed integer which
represents the exit code found in exceptions.
"""
def exit_code_from_str_or_skip(s: str) -> ExitCode | None:
try:
return ExitCode.from_str(s)
except (KeyError, ValueError):
out.warn(f"WARN: no_raise value `{s}` is not a valid exit code. Skipping.")
return None
return [
code.value
for s in comma_separated_no_raise.split(",")
if (code := exit_code_from_str_or_skip(s)) is not None
]
if TYPE_CHECKING:
class Args(argparse.Namespace):
config: str | None = None
debug: bool = False
name: str | None = None
no_raise: str | None = None # comma-separated string, later parsed as list[int]
report: bool = False
project: bool = False
commitizen: bool = False
verbose: bool = False
func: type[
commands.Init # init
| commands.Commit # commit (c)
| commands.ListCz # ls
| commands.Example # example
| commands.Info # info
| commands.Schema # schema
| commands.Bump # bump
| commands.Changelog # changelog (ch)
| commands.Check # check
| commands.Version # version
]
def main() -> None:
parser: argparse.ArgumentParser = cli(data)
argcomplete.autocomplete(parser)
# Show help if no arg provided
if len(sys.argv) == 1:
parser.print_help(sys.stderr)
raise ExpectedExit()
# This is for the command required constraint in 2.0
try:
args, unknown_args = parser.parse_known_args()
except SystemExit as e:
if e.code == 2:
raise NoCommandFoundError()
raise e
arguments = vars(args)
if unknown_args:
# Raise error for extra-args without -- separation
if "--" not in unknown_args:
raise InvalidCommandArgumentError(
f"Invalid commitizen arguments were found: `{' '.join(unknown_args)}`. "
"Please use -- separator for extra git args"
)
# Raise error for extra-args before --
elif unknown_args[0] != "--":
pos = unknown_args.index("--")
raise InvalidCommandArgumentError(
f"Invalid commitizen arguments were found before -- separator: `{' '.join(unknown_args[:pos])}`. "
)
# Log warning for -- without any extra args
elif len(unknown_args) == 1:
logger.warning(
"\nWARN: Incomplete commit command: received -- separator without any following git arguments\n"
)
extra_args = " ".join(unknown_args[1:])
arguments["extra_cli_args"] = extra_args
conf = config.read_cfg(args.config)
args = cast("Args", args)
if args.name:
conf.update({"name": args.name})
elif not conf.path:
conf.update({"name": "cz_conventional_commits"})
sys.excepthook = commitizen_excepthook
if args.debug:
logging.getLogger("commitizen").setLevel(logging.DEBUG)
sys.excepthook = partial(sys.excepthook, debug=True)
if args.no_raise:
sys.excepthook = partial(sys.excepthook, no_raise=parse_no_raise(args.no_raise))
args.func(conf, arguments)() # type: ignore[arg-type]
if __name__ == "__main__":
main()
|