Updating git cliff. (#2719)

This commit is contained in:
Dessalines 2024-09-27 16:23:55 -04:00 committed by GitHub
parent 626b18d478
commit 017df0f2d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3355 additions and 14 deletions

3342
CHANGELOG.md Normal file

File diff suppressed because it is too large Load diff

View file

@ -14,15 +14,15 @@ body = """
{%- if version %} in {{ version }}{%- endif -%} {%- if version %} in {{ version }}{%- endif -%}
{% for commit in commits %} {% for commit in commits %}
{% if commit.github.pr_title -%} {% if commit.remote.pr_title -%}
{%- set commit_message = commit.github.pr_title -%} {%- set commit_message = commit.remote.pr_title -%}
{%- else -%} {%- else -%}
{%- set commit_message = commit.message -%} {%- set commit_message = commit.message -%}
{%- endif -%} {%- endif -%}
* {{ commit_message | split(pat="\n") | first | trim }}\ * {{ commit_message | split(pat="\n") | first | trim }}\
{% if commit.github.username %} by @{{ commit.github.username }}{%- endif -%} {% if commit.remote.username %} by @{{ commit.remote.username }}{%- endif -%}
{% if commit.github.pr_number %} in \ {% if commit.remote.pr_number %} in \
[#{{ commit.github.pr_number }}]({{ self::remote_url() }}/pull/{{ commit.github.pr_number }}) \ [#{{ commit.remote.pr_number }}]({{ self::remote_url() }}/pull/{{ commit.remote.pr_number }}) \
{%- endif %} {%- endif %}
{%- endfor -%} {%- endfor -%}
@ -53,7 +53,7 @@ body = """
""" """
# remove the leading and trailing whitespace from the template # remove the leading and trailing whitespace from the template
trim = true trim = true
# changelog footer # template for the changelog footer
footer = """ footer = """
<!-- generated by git-cliff --> <!-- generated by git-cliff -->
""" """
@ -74,17 +74,10 @@ commit_preprocessors = [
] ]
commit_parsers = [ commit_parsers = [
{ field = "author.name", pattern = "renovate", skip = true }, { field = "author.name", pattern = "renovate", skip = true },
{ field = "message", pattern = "Upping version", skip = true },
] ]
# protect breaking changes from being skipped due to matching a skipping commit_parser
protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers # filter out the commits that are not matched by commit parsers
filter_commits = false filter_commits = false
# regex for matching git tags
tag_pattern = "v[0-9].*"
# regex for skipping tags
skip_tags = "beta|alpha"
# regex for ignoring tags
ignore_tags = "rc"
# sort the tags topologically # sort the tags topologically
topo_order = false topo_order = false
# sort the commits inside sections by oldest/newest order # sort the commits inside sections by oldest/newest order

6
generate_changelog.sh Executable file
View file

@ -0,0 +1,6 @@
#!/bin/sh
set -e
# Adding to CHANGELOG.md
git cliff --output CHANGELOG.md
prettier -w CHANGELOG.md