# What Updates the install command in the changelog template (`cliff.toml`) from ``` npm install -g codex@version ``` to ``` npm install -g @openai/codex@<version> ``` # Why The current command is incorrect, it tries installs the old “codex” static site generator rather than the OpenAI Codex CLI. # How Edited only the header string in `cliff.toml` to point to @openai/codex@<version>. No changelog regeneration or other files touched. Fixes #2059 Co-authored-by: Thibault Sottiaux <tibo@openai.com>
46 lines
1.1 KiB
TOML
46 lines
1.1 KiB
TOML
# https://git-cliff.org/docs/configuration
|
||
|
||
[changelog]
|
||
header = """
|
||
# Changelog
|
||
|
||
You can install any of these versions: `npm install -g @openai/codex@<version>`
|
||
"""
|
||
|
||
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" },
|
||
{ message = "^fix", group = "<!-- 1 -->🪲 Bug Fixes" },
|
||
{ message = "^bump", group = "<!-- 6 -->🛳️ Release" },
|
||
# Fallback – skip anything that didn't match the above rules.
|
||
{ message = ".*", group = "<!-- 10 -->💼 Other" },
|
||
]
|
||
|
||
filter_unconventional = false
|
||
sort_commits = "oldest"
|
||
topo_order = false |