-
-
Notifications
You must be signed in to change notification settings - Fork 344
Comparing changes
Open a pull request
base repository: commitizen-tools/commitizen
base: v4.16.2
head repository: commitizen-tools/commitizen
compare: v4.16.3
- 20 commits
- 18 files changed
- 10 contributors
Commits on May 15, 2026
-
Configuration menu - View commit details
-
Copy full SHA for d82e029 - Browse repository at this point
Copy the full SHA d82e029View commit details
Commits on May 18, 2026
-
ci(pythonpublish): add workflow_dispatch trigger for republishing tags (
#1981) Co-authored-by: Copilot <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0bb0656 - Browse repository at this point
Copy the full SHA 0bb0656View commit details -
Configuration menu - View commit details
-
Copy full SHA for d22ea2b - Browse repository at this point
Copy the full SHA d22ea2bView commit details -
docs(skill): point install guidance at docs README (#1953)
Co-authored-by: Copilot <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for db6c8b0 - Browse repository at this point
Copy the full SHA db6c8b0View commit details -
Configuration menu - View commit details
-
Copy full SHA for cc710a9 - Browse repository at this point
Copy the full SHA cc710a9View commit details
Commits on May 19, 2026
-
docs(skill): remove broken doc references and unused compatibility fi…
…eld (#1956) The `Suggested references` section listed paths relative to the repo root (e.g. `docs/commands/commit.md`), but per the Agent Skills specification, file references should be relative to the skill root. When the skill folder is installed standalone, those paths do not resolve, so the section was effectively dead pointers. Drop the section and rely on agent inference / the documented `metadata.docs` URL for the canonical docs. Also drop the `compatibility` frontmatter field. The spec notes most skills do not need it, and the previous value did not describe a constraint that would prevent the skill from running. Refs #1936 Co-authored-by: Copilot <[email protected]> Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: bearomorphism <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 40aa19d - Browse repository at this point
Copy the full SHA 40aa19dView commit details -
ci: add PR bump preview workflow (#1957)
* ci: add PR bump preview workflow Adds a workflow that runs cz bump --dry-run on incoming pull requests and posts (or updates) a sticky comment summarising the would-be version bump and changelog entries. This makes unexpected version bumps visible to reviewers before merging, addressing #1510. The pattern is documented in docs/tutorials/github_actions.md so other projects can copy/paste the same workflow. Closes #1510 Co-authored-by: Copilot <[email protected]> * fix(ci): gate PR bump preview to same-repo PRs only Address Copilot review feedback on #1957: * `cz bump` renders Jinja templates from the working directory whenever `update_changelog_on_bump` is set in config, using a non-sandboxed `FileSystemLoader('.')`. Under `pull_request_target` with a write token, executing those templates against fork-controlled files would risk RCE / token exfiltration. Gate the job to same-repo PRs by comparing `head.repo.full_name` to `base.repo.full_name`. * Set `persist-credentials: false` on `actions/checkout` as defense in depth, so the workflow token is not written to `.git/config`. * Adjust docs to drop the misleading `and changelog entries` claim (the dry-run only shows changelog entries when `update_changelog_on_bump` is enabled), and rewrite the safety explanation to reflect the real threat model. Co-authored-by: Copilot <[email protected]> --------- Co-authored-by: Copilot <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for fc263cd - Browse repository at this point
Copy the full SHA fc263cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for c7d3f78 - Browse repository at this point
Copy the full SHA c7d3f78View commit details
Commits on May 20, 2026
-
ci(deps): bump idna from 3.11 to 3.15 (#1996)
Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 345bbd6 - Browse repository at this point
Copy the full SHA 345bbd6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ad34c1 - Browse repository at this point
Copy the full SHA 5ad34c1View commit details -
ci(deps): bump peter-evans/create-or-update-comment from 4 to 5 (#1998)
Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c3f6797 - Browse repository at this point
Copy the full SHA c3f6797View commit details -
Configuration menu - View commit details
-
Copy full SHA for 98f1777 - Browse repository at this point
Copy the full SHA 98f1777View commit details -
ci(deps): bump pymdown-extensions from 10.21.2 to 10.21.3 (#1995)
Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 93b74c9 - Browse repository at this point
Copy the full SHA 93b74c9View commit details -
Configuration menu - View commit details
-
Copy full SHA for a523e55 - Browse repository at this point
Copy the full SHA a523e55View commit details
Commits on May 30, 2026
-
ci(deps): bump uv from 0.11.6 to 0.11.15 (#2004)
Bumps [uv](https://github.com/astral-sh/uv) from 0.11.6 to 0.11.15. - [Release notes](https://github.com/astral-sh/uv/releases) - [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md) - [Commits](astral-sh/uv@0.11.6...0.11.15) --- updated-dependencies: - dependency-name: uv dependency-version: 0.11.15 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for effd5dd - Browse repository at this point
Copy the full SHA effd5ddView commit details -
Configuration menu - View commit details
-
Copy full SHA for c806e26 - Browse repository at this point
Copy the full SHA c806e26View commit details -
test: normalize argparse choice snapshots (#2000)
* test: normalize argparse choice snapshots * test: normalize invalid command snapshots --------- Co-authored-by: Puneet Dixit <[email protected]> Co-authored-by: Deepak kudi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2b4707c - Browse repository at this point
Copy the full SHA 2b4707cView commit details -
Configuration menu - View commit details
-
Copy full SHA for df8f6a0 - Browse repository at this point
Copy the full SHA df8f6a0View commit details -
fix(check): expand env vars in --rev-range (#2005)
The packaged commitizen-branch pre-push hook in .pre-commit-hooks.yaml passes the literal string \..\ as an argv element and relied on shell expansion. After #1941 switched git execution to shell=False (CWE-78 hardening), git received the literal string and aborted with atal: ambiguous argument, breaking every commitizen release after v4.15.0 for users of that hook. Expand env vars explicitly on the --rev-range argument via os.path.expandvars so the hook keeps working without reintroducing shell execution. Unset variables are left literal so git surfaces a clear error instead of being silently rewritten to an empty range. Closes #2003 Co-authored-by: Tim Hsiung <[email protected]> Co-authored-by: Copilot <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8f5b496 - Browse repository at this point
Copy the full SHA 8f5b496View commit details -
Configuration menu - View commit details
-
Copy full SHA for 286da54 - Browse repository at this point
Copy the full SHA 286da54View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v4.16.2...v4.16.3