[changelog]
header = """
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
"""
body = """
{% if version %}\
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
{% else %}\
## [Unreleased]
{% endif %}\
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | striptags | trim | upper_first }}
{% for commit in commits %}
- {% if commit.scope %}**{{ commit.scope }}**: {% endif %}\
{{ commit.message | upper_first }}\
{% if commit.breaking %} [**BREAKING**]{% endif %}\
{% endfor %}
{% endfor %}\n
"""
footer = """
<!-- generated by git-cliff -->
"""
trim = true
postprocessors = [
]
[git]
conventional_commits = true
filter_unconventional = true
split_commits = false
commit_preprocessors = [
]
commit_parsers = [
{ scope = "augment", skip = true },
{ message = "^chore", skip = true },
{ message = "^ci", skip = true },
{ message = "^style", skip = true },
{ message = "^test", skip = true },
{ message = "^refactor", skip = true },
{ message = "^docs?\\(contrib", skip = true },
{ message = "^docs?\\(internal", skip = true },
{ message = "^feat", group = "<!-- 0 -->Added" },
{ message = "^fix", group = "<!-- 1 -->Fixed" },
{ message = "^docs?", group = "<!-- 2 -->Documentation" },
{ message = "^perf", group = "<!-- 3 -->Performance" },
{ body = ".*security", group = "<!-- 4 -->Security" },
{ message = "^revert", group = "<!-- 5 -->Reverted" },
{ breaking = true, group = "<!-- 0 -->⚠️ Breaking Changes" },
]
protect_breaking_commits = false
filter_commits = false
topo_order = false
sort_commits = "oldest"