Comparing commitizen-tools:master...afresh-technologies:main · commitizen-tools/commitizen
Commits on May 2, 2023
-
config_path and changelog_path rely on the modified CWD provided by tmp_commitizen_project, so they should use this fixture.
Commits on Sep 27, 2023
-
fix: no change_type fails when change_type_map provided
Under the following conditions: - commit_parser either does not have a capture group for change_type or change_type is None for other reasons - change_type_map is provided We get the following error: ``` TypeError: argument of type 'NoneType' is not iterable ``` This provides a default change_type which can also be mapped using the change_type_map.
-
feat: add changelog_ignore_body customization
Setting changelog_ignore_body to true will ignore the body of the commit message when processing commits for the changelog. This mostly poses an issue for breaking changes, which may provide additional details in the body. With this flag set to true, only the subject of the commit message is processed.