santa-data 0.3.3

Data models and CCL parser for Santa package manager
Documentation
# git-cliff config for santa-data
# Auto-generated - edit generate-cliff-configs.py and commit-types.json instead

[changelog]
header = """# Changelog

All notable changes to this project will be documented in this file.
"""
body = """
{% set visible_commits = commits | filter(attribute="group", value="_ignored") | length %}\
{% set total_commits = commits | length %}\
{% set has_visible_commits = visible_commits != total_commits %}\
{% if version or has_visible_commits %}\
## {% if version %}[{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}{% else %}[unreleased]{% endif %}
{% if has_visible_commits %}\
{% for group, group_commits in commits | group_by(attribute="group") %}\
{% if group != "_ignored" %}
### {{ group | upper_first }}
{% for commit in group_commits %}
- {{ commit.message | upper_first }}
{% endfor %}
{% endif %}\
{% endfor %}\
{% else %}
No notable changes in this release.
{% endif %}\
{% endif %}\
"""
trim = false

[git]
conventional_commits = true
filter_unconventional = true
tag_pattern = "santa-data-v.*"
commit_parsers = [
    { message = "^feat\\(santa-data\\)", group = "Features" },
    { message = "^fix\\(santa-data\\)", group = "Bug Fixes" },
    { message = "^improvement\\(santa-data\\)", group = "Improvements" },
    { message = "^data\\(santa-data\\)", group = "Data" },
    { message = "^docs\\(santa-data\\)", group = "Documentation" },
    { message = "^perf\\(santa-data\\)", group = "Performance" },
    { message = ".*", group = "_ignored" },
]