Fix changelog

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev 2025-04-11 21:14:59 +07:00
parent a807f99f16
commit 4ec4609364
No known key found for this signature in database
GPG Key ID: BD80F68D68D8F7F2
2 changed files with 20942 additions and 1362 deletions

22187
changelog.md

File diff suppressed because it is too large Load Diff

View File

@ -1,86 +1,91 @@
# git-cliff ~ default configuration file
# git-cliff configuration file
# https://git-cliff.org/docs/configuration
#
# Lines starting with "#" are comments.
# Configuration options are organized into tables and keys.
# See documentation for more information on available options.
#---------------------------------#
# Changelog Configuration #
#---------------------------------#
[changelog]
# template for the changelog footer
# Header template
header = """
# Changelog\n
Changelog.\n
# Changelog
All notable changes to this project will be documented in this file.
"""
# template for the changelog body
# https://keats.github.io/tera/docs/#introduction
# Body template - updated with GitHub profile links
body = """
{% if version %}\
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}\n
{% else %}\
## [unreleased]\n
{% endif %}\
{% for group, commits in commits | group_by(attribute="group") %}\
* {{ group | striptags | trim | upper }}: \
{% for commit in commits %}\
· {% if commit.scope %}*({{ commit.scope }})* {% endif %}\
{% if commit.breaking %}[**breaking**] {% endif %}\
{{ commit.message | trim | upper_first }} \
{% endfor %}
{% endfor %}\n
{% if version %}
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
{% else %}
## [unreleased]
{% endif %}
{% for author, commits in commits | group_by(attribute="author.name") %}
### {{ author }}
{% for commit in commits %}
- {% if commit.scope %}**{{ commit.scope }}:** {% endif %}{% if commit.breaking %}[**BREAKING**] {% endif %}{{ commit.message | trim | upper_first }}{% if commit.group %} ({{ commit.group | striptags | trim }}){% endif %}
{% endfor %}
{% endfor %}
"""
# template for the changelog footer
# Footer template
footer = """
<!-- generated by git-cliff -->
"""
# remove the leading and trailing s
trim = true
# postprocessors
postprocessors = [
# { pattern = '<REPO>', replace = "https://github.com/orhun/git-cliff" }, # replace repository URL
# { pattern = '<PATTERN>', replace = "replacement" },
]
#---------------------------------#
# Git Configuration #
#---------------------------------#
[git]
# parse the commits based on https://www.conventionalcommits.org
# Parse commits based on Conventional Commits spec
conventional_commits = true
# filter out the commits that are not conventional
filter_unconventional = true
# process each line of a commit as an individual commit
filter_unconventional = false
split_commits = false
# regex for preprocessing the commit messages
# Commit message preprocessing
commit_preprocessors = [
{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/hcengineering/platform/issues/${2}))"},
{ pattern = "Merge pull request #([0-9]+) from [^ ]+", replace = "PR [#${1}](https://github.com/hcengineering/platform/pull/${1}):"},
{ pattern = "Merge pull request #([0-9]+) from [^ ]+", replace = "PR [#${1}](https://github.com/hcengineering/platform/pull/${1}):"},
{ pattern = "Signed-off-by:.*", replace = "" },
]
# regex for parsing and grouping commits
# Commit parsing and grouping
commit_parsers = [
{ message = "^feat", group = "<!-- 0 -->🚀 Features" },
{ message = "^fix", group = "<!-- 1 -->🐛 Bug Fixes" },
{ message = "^doc", group = "<!-- 3 -->📚 Documentation" },
{ message = "^perf", group = "<!-- 4 -->⚡ Performance" },
{ message = "^refactor", group = "<!-- 2 -->🚜 Refactor" },
{ message = "^style", group = "<!-- 5 -->🎨 Styling" },
{ message = "^test", group = "<!-- 6 -->🧪 Testing" },
# Features and Improvements
{ message = "^feat", group = "🚀 Features" },
{ message = "^Merge pull request.*", group = "🔀 Merged Changes" },
# Fixes
{ message = "^fix", group = "🐛 Bug Fixes" },
# Code Changes
{ message = "^refactor", group = "🚜 Refactor" },
{ message = "^perf", group = "⚡ Performance" },
{ message = "^style", group = "🎨 Styling" },
# Documentation and Testing
{ message = "^doc", group = "📚 Documentation" },
{ message = "^test", group = "🧪 Testing" },
# Maintenance
{ message = "^chore\\(release\\): prepare for", skip = true },
{ message = "^chore\\(deps.*\\)", skip = true },
{ message = "^chore\\(pr\\)", skip = true },
{ message = "^chore\\(pull\\)", skip = true },
{ message = "^chore|^ci", group = "<!-- 7 -->⚙️ Miscellaneous Tasks" },
{ body = ".*security", group = "<!-- 8 -->🛡️ Security" },
{ message = "^revert", group = "<!-- 9 -->◀️ Revert" },
{ message = "^chore|^ci", group = "⚙️ Miscellaneous Tasks" },
# Special Categories
{ body = ".*security", group = "🛡️ Security" },
{ message = "^revert", group = "◀️ Revert" },
]
# 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_commits = false
# regex for matching git tags
# tag_pattern = "v[0-9].*"
# regex for skipping tags
# skip_tags = ""
# regex for ignoring tags
# ignore_tags = ""
# sort the tags topologically
topo_order = false
# sort the commits inside sections by oldest/newest order
sort_commits = "oldest"
# limit the number of commits included in the changelog.
# limit_commits = 42