2023-08-19 13:38:07 +03:00
|
|
|
# git-cliff ~ configuration file
|
|
|
|
# https://git-cliff.org/docs/configuration
|
2021-08-03 00:21:05 +03:00
|
|
|
|
|
|
|
[changelog]
|
2024-08-01 19:58:54 +03:00
|
|
|
# template for the changelog header
|
2021-08-03 00:21:05 +03:00
|
|
|
header = """
|
2022-02-08 18:11:11 +03:00
|
|
|
# Changelog\n
|
2021-08-03 00:21:05 +03:00
|
|
|
All notable changes to this project will be documented in this file.\n
|
|
|
|
"""
|
|
|
|
# template for the changelog body
|
2023-09-08 16:22:14 +03:00
|
|
|
# https://keats.github.io/tera/docs/#introduction
|
2021-08-03 00:21:05 +03:00
|
|
|
body = """
|
|
|
|
{% if version %}\
|
2024-09-01 11:18:35 +03:00
|
|
|
## {{ version | trim_start_matches(pat="v") }} - {{ timestamp | date(format="%Y-%m-%d") }}
|
2021-08-03 00:21:05 +03:00
|
|
|
{% else %}\
|
2024-09-01 11:18:35 +03:00
|
|
|
## Unreleased
|
2021-08-03 00:21:05 +03:00
|
|
|
{% endif %}\
|
|
|
|
{% for group, commits in commits | group_by(attribute="group") %}
|
|
|
|
### {{ group | upper_first }}
|
|
|
|
{% for group, commits in commits | group_by(attribute="scope") %}
|
|
|
|
#### {{ group | upper_first }}
|
|
|
|
{% for commit in commits %}
|
|
|
|
- {{ commit.message | upper_first }}\
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}\
|
|
|
|
{% endfor %}\n
|
|
|
|
"""
|
2023-12-06 00:23:09 +03:00
|
|
|
# template for the changelog footer
|
2021-08-03 00:21:05 +03:00
|
|
|
footer = """
|
|
|
|
<!-- generated by git-cliff -->
|
|
|
|
"""
|
2023-12-06 00:23:09 +03:00
|
|
|
# remove the leading and trailing whitespace from the templates
|
|
|
|
trim = true
|
2021-08-03 00:21:05 +03:00
|
|
|
|
|
|
|
[git]
|
2021-12-11 15:07:10 +03:00
|
|
|
# parse the commits based on https://www.conventionalcommits.org
|
2021-08-03 00:21:05 +03:00
|
|
|
conventional_commits = true
|
2021-12-11 15:07:10 +03:00
|
|
|
# filter out the commits that are not conventional
|
|
|
|
filter_unconventional = true
|
2022-08-12 04:59:06 +03:00
|
|
|
# process each line of a commit as an individual commit
|
|
|
|
split_commits = false
|
2021-08-03 00:21:05 +03:00
|
|
|
# regex for parsing and grouping commits
|
|
|
|
commit_parsers = [
|
2023-08-14 00:43:41 +03:00
|
|
|
{ message = "^feat", group = "Features" },
|
|
|
|
{ message = "^fix", group = "Bug Fixes" },
|
|
|
|
{ message = "^doc", group = "Documentation", default_scope = "unscoped" },
|
|
|
|
{ message = "^perf", group = "Performance" },
|
|
|
|
{ message = "^refactor", group = "Refactor" },
|
|
|
|
{ message = "^style", group = "Styling" },
|
|
|
|
{ message = "^test", group = "Testing" },
|
|
|
|
{ message = "^chore\\(release\\): prepare for", skip = true },
|
|
|
|
{ message = "^chore", group = "Miscellaneous Tasks" },
|
|
|
|
{ body = ".*security", group = "Security" },
|
2021-08-03 00:21:05 +03:00
|
|
|
]
|
|
|
|
# filter out the commits that are not matched by commit parsers
|
|
|
|
filter_commits = false
|
2022-12-16 20:43:13 +03:00
|
|
|
# sort the tags topologically
|
|
|
|
topo_order = false
|
2021-11-25 22:45:44 +03:00
|
|
|
# sort the commits inside sections by oldest/newest order
|
|
|
|
sort_commits = "oldest"
|