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: v4.13.10
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: v4.15.0
Choose a head ref
  • 20 commits
  • 45 files changed
  • 7 contributors

Commits on Apr 8, 2026

  1. Configuration menu
    Copy the full SHA
    ba8c194 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2026

  1. build(deps): bump uv from 0.11.3 to 0.11.6 (#1931)

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 11, 2026
    Configuration menu
    Copy the full SHA
    69884e0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    36e5af3 View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2026

  1. build(deps-dev): bump pytest from 9.0.2 to 9.0.3 (#1933)

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 15, 2026
    Configuration menu
    Copy the full SHA
    a818e5d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3c9018d View commit details
    Browse the repository at this point in the history
  3. docs(images): remove unused files

    ttw225 authored and bearomorphism committed Apr 15, 2026
    Configuration menu
    Copy the full SHA
    c89cedc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    198cb10 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    abff812 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5b121db View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2026

  1. build(deps): bump gitpython from 3.1.46 to 3.1.47 (#1938)

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 29, 2026
    Configuration menu
    Copy the full SHA
    e1edee7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b8bd488 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2026

  1. ci(deps): bump actions/github-script from 8 to 9 (#1930)

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored May 3, 2026
    Configuration menu
    Copy the full SHA
    e2ebe77 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bcfb089 View commit details
    Browse the repository at this point in the history
  3. feat: add --allow-no-commit to changelog command (#1868)

    * fix: bump command called changelog command with allow_no_commit=True, but changelog command raised NoCommitsFoundError
    
    * fix: clarify allow-no-commit changelog behavior and docs
    
    Align internal typing/forwarding for allow_no_commit, simplify the regression test setup, and document how changelog entries are generated during no-commit bumps.
    
    Made-with: Cursor
    
    * chore: clarify internal changelog allow_no_commit argument
    
    Document that allow_no_commit in ChangelogArgs is internal-only for bump-triggered changelog generation.
    
    Made-with: Cursor
    
    * chore: Apply suggestion from @Copilot
    
    Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
    
    ---------
    
    Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
    bearomorphism and Copilot authored May 3, 2026
    Configuration menu
    Copy the full SHA
    72a2638 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    94d76a4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    35ffe03 View commit details
    Browse the repository at this point in the history
  6. docs: update AGENTS.md with CI/linting guidance and known pitfalls (#…

    …1940)
    
    Add practical CI validation commands, pipeline structure, common failure
    patterns, and known type system limitations learned from real PR workflows.
    
    Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
    bearomorphism and Copilot authored May 3, 2026
    Configuration menu
    Copy the full SHA
    06850b2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d157e09 View commit details
    Browse the repository at this point in the history
  8. feat(version): add MANUAL_VERSION, --next and --patch to version comm…

    …and (#1724)
    
    * feat(version): add MANUAL_VERSION, --next, and --patch to version command
    
    Rebased onto master: keep --tag with TagRules alongside the new flags.
    
    - Merge version command logic for manual/next/patch with tag normalization
    - Refresh help regression fixtures and cz version --help SVG
    - Fix TagRules.find_tag_for annotation (VersionProtocol)
    
    Closes #1679
    
    Made-with: Cursor
    
    * fix(test): align cz version --help fixtures per Python minor version
    
    Argparse wraps the usage line differently before vs after Python 3.13, so
    separate regression baselines are required for CI matrix jobs.
    
    Made-with: Cursor
    
    * fix(version): improve coverage, UX, and docs for cz version
    
    - Rename VersionIncrement.safe_cast to from_value; add tests
    - Map NONE to no bump; user-facing error for USE_GIT_COMMITS
    - Add tests for patch component, unknown scheme, and default output
    - Clarify get_version_scheme Protocol check; fix TagRules docstring example
    - Document MANUAL_VERSION, --next, and --patch; refresh help fixtures/SVG
    
    Made-with: Cursor
    
    * refactor(version_schemes): restore Version and VersionScheme type aliases
    
    Re-export VersionScheme = type[VersionProtocol] and Version = VersionProtocol
    for downstream custom schemes and parity with the public API on master.
    Import TypeAlias at runtime alongside Increment/Prerelease.
    
    Made-with: Cursor
    
    * fix: address review comments on version command PR
    
    - Parametrize invalid combination tests (major/minor/patch/tag without project)
    - Fix version scheme validation to use hasattr check instead of broken
      isinstance/issubclass on Protocol with non-method members
    - Format test file with ruff
    
    Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
    
    * docs: add TODO comment for USE_GIT_COMMITS future work (#1678)
    
    Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
    
    ---------
    
    Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
    bearomorphism and Copilot authored May 3, 2026
    Configuration menu
    Copy the full SHA
    b5e0840 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    b4f4209 View commit details
    Browse the repository at this point in the history
Loading