Skip to content

Commit fc287fb

Browse files
committed
feat(changelog): expose commit parents' digests when processing commits
COMMIT_DATA in test_changelog.py had to be type annotated to avoid an issue with mypy linting when creating a GitCommit where the tool would expect the wrong type for the arguments.
1 parent e29fd6d commit fc287fb

File tree

2 files changed

+74
-2
lines changed

2 files changed

+74
-2
lines changed

commitizen/changelog.py

+1
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ def process_commit_message(
172172
):
173173
message: dict = {
174174
"sha1": commit.rev,
175+
"parents": commit.parents,
175176
"author": commit.author,
176177
"author_email": commit.author_email,
177178
**parsed.groupdict(),

0 commit comments

Comments
 (0)