2021-08-03 00:21:05 +03:00
|
|
|
# configuration file for git-cliff (0.1.0)
|
|
|
|
|
|
|
|
[changelog]
|
|
|
|
# changelog header
|
|
|
|
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
|
|
|
|
# https://tera.netlify.app/docs/#introduction
|
|
|
|
body = """
|
|
|
|
{% if version %}\
|
2021-09-28 01:10:05 +03:00
|
|
|
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
|
2021-08-03 00:21:05 +03:00
|
|
|
{% else %}\
|
|
|
|
## [unreleased]
|
|
|
|
{% 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
|
|
|
|
"""
|
2022-02-08 18:11:11 +03:00
|
|
|
# remove the leading and trailing whitespace from the template
|
2021-08-03 00:21:05 +03:00
|
|
|
trim = true
|
|
|
|
# changelog footer
|
|
|
|
footer = """
|
|
|
|
<!-- generated by git-cliff -->
|
|
|
|
"""
|
|
|
|
|
|
|
|
[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 = [
|
2021-09-08 21:40:29 +03:00
|
|
|
{ message = "^feat", group = "Features"},
|
|
|
|
{ message = "^fix", group = "Bug Fixes"},
|
2021-09-08 21:58:29 +03:00
|
|
|
{ message = "^doc", group = "Documentation", default_scope = "unscoped"},
|
2021-09-08 21:40:29 +03:00
|
|
|
{ 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"},
|
2021-08-03 00:21:05 +03:00
|
|
|
{ body = ".*security", group = "Security"},
|
|
|
|
]
|
2022-10-04 23:21:49 +03:00
|
|
|
# protect breaking changes from being skipped due to matching a skipping commit_parser
|
|
|
|
protect_breaking_commits = false
|
2021-08-03 00:21:05 +03:00
|
|
|
# filter out the commits that are not matched by commit parsers
|
|
|
|
filter_commits = false
|
|
|
|
# glob pattern for matching git tags
|
|
|
|
tag_pattern = "v[0-9]*"
|
|
|
|
# regex for skipping tags
|
|
|
|
skip_tags = "v0.1.0-beta.1"
|
2021-12-07 21:49:37 +03:00
|
|
|
# regex for ignoring tags
|
|
|
|
ignore_tags = ""
|
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"
|