2025-04-17 23:34:05 -07:00
|
|
|
|
# https://git-cliff.org/docs/configuration
|
|
|
|
|
|
|
|
|
|
|
|
[changelog]
|
|
|
|
|
|
header = """
|
|
|
|
|
|
# Changelog
|
|
|
|
|
|
|
2025-10-18 20:02:22 +02:00
|
|
|
|
You can install any of these versions: `npm install -g @openai/codex@<version>`
|
2025-04-17 23:34:05 -07:00
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
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 }}
|
|
|
|
|
|
|
|
|
|
|
|
{% for commit in commits %}- {% if commit.scope %}*({{ commit.scope }})* {% endif %}{% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message | upper_first }}
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
|
|
{%- endfor -%}
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
footer = """
|
|
|
|
|
|
<!-- generated - do not edit -->
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
trim = true
|
|
|
|
|
|
postprocessors = []
|
|
|
|
|
|
|
|
|
|
|
|
[git]
|
|
|
|
|
|
conventional_commits = true
|
|
|
|
|
|
|
|
|
|
|
|
commit_parsers = [
|
|
|
|
|
|
{ message = "^feat", group = "<!-- 0 -->🚀 Features" },
|
2025-04-25 17:15:40 -07:00
|
|
|
|
{ message = "^fix", group = "<!-- 1 -->🪲 Bug Fixes" },
|
2025-04-17 23:34:05 -07:00
|
|
|
|
{ message = "^bump", group = "<!-- 6 -->🛳️ Release" },
|
|
|
|
|
|
# Fallback – skip anything that didn't match the above rules.
|
2025-04-22 01:45:30 -07:00
|
|
|
|
{ message = ".*", group = "<!-- 10 -->💼 Other" },
|
2025-04-17 23:34:05 -07:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
filter_unconventional = false
|
|
|
|
|
|
sort_commits = "oldest"
|
|
|
|
|
|
topo_order = false
|