8000 Comparing v2.27.0...v2.27.1 · commitizen-tools/commitizen · GitHub
[go: up one dir, main page]

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: commitizen-tools/commitizen
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.27.0
Choose a base ref
...
head repository: commitizen-tools/commitizen
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.27.1
Choose a head ref
  • 5 commits
  • 9 files changed
  • 3 contributors

Commits on May 22, 2022

  1. fix(pre-commit): Don't require serial execution

    require_serial is not pertinent to commit-msg hooks or hooks that
    themselves execute serially. The option is intended to prevent
    fork-bombing that can occur when pre-commit runs a hook that itself
    spawns many processes many times in parallel.
    Kurt-von-Laven authored and Lee-W committed May 22, 2022
    Configuration menu
    Copy the full SHA
    2a9d17f View commit details
    Browse the repository at this point in the history
  2. fix(pre-commit): Set min pre-commit to v1.4.3

    pre-commit 1.4.3, released 2018-01-02, is the minimum pre-commit version
    at which language_version: python3 is translated to the correct py
    launcher call on Windows.
    Kurt-von-Laven authored and Lee-W committed May 22, 2022
    Configuration menu
    Copy the full SHA
    b787e64 View commit details
    Browse the repository at this point in the history
  3. fix(pre-commit): Confine hook to commit-msg stage

    The Commitizen pre-commit hook runs cz check, which only makes sense to
    do on a commit message, not at other Git hook stages. By default the
    hook is currently run on staged files pre-commit, which is nonsensical
    unless the files in the repository themselves contain Git commit
    messages. The hook is an implausible candidate even for the
    prepare-commit-msg stage since this stage is intended for hooks that
    modify the commit message rather than check it. Specifying the hook
    stage centrally makes it less error-prone to use and saves one line of
    configuration for users of the pre-commit hook.
    Kurt-von-Laven authored and Lee-W committed May 22, 2022
    Configuration menu
    Copy the full SHA
    ab3f43d View commit details
    Browse the repository at this point in the history
  4. fix(pre-commit): Use new --allow-abort option

    Prevent pre-commit hook from complaining when a commit is aborted by
    default, but allow users to override this option in their pre-commit
    config by specifying it in args, not entry. Move --commit-msg-file
    option from entry to args since it has to be the last option.
    Kurt-von-Laven authored and Lee-W committed May 22, 2022
    Configuration menu
    Copy the full SHA
    d55acad View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    afa0d93 View commit details
    Browse the repository at this point in the history
Loading
0