Update changelog with proper refs

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev 2024-08-20 23:44:07 +07:00
parent b9a49ab58a
commit 84803fa372
No known key found for this signature in database
GPG Key ID: BD80F68D68D8F7F2
2 changed files with 1102 additions and 1104 deletions

File diff suppressed because it is too large Load Diff

View File

@ -20,10 +20,11 @@ body = """
## [unreleased]\n ## [unreleased]\n
{% endif %}\ {% endif %}\
{% for group, commits in commits | group_by(attribute="group") %}\ {% for group, commits in commits | group_by(attribute="group") %}\
{% for commit in commits %}\ * {{ group | striptags | trim | upper }}: \
* {{ group | striptags | trim | upper }}: {% if commit.scope %}*({{ commit.scope }})* {% endif %}\ {% for commit in commits %}\
· {% if commit.scope %}*({{ commit.scope }})* {% endif %}\
{% if commit.breaking %}[**breaking**] {% endif %}\ {% if commit.breaking %}[**breaking**] {% endif %}\
{{ commit.message | trim | upper_first }}\ {{ commit.message | trim | upper_first }} \
{% endfor %} {% endfor %}
{% endfor %}\n {% endfor %}\n
""" """
@ -47,11 +48,8 @@ filter_unconventional = true
split_commits = false split_commits = false
# regex for preprocessing the commit messages # regex for preprocessing the commit messages
commit_preprocessors = [ commit_preprocessors = [
# Replace issue numbers { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/hcengineering/platform/issues/${2}))"},
#{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](<REPO>/issues/${2}))"}, { pattern = "Merge pull request #([0-9]+) from [^ ]+", replace = "PR [#${1}](https://github.com/hcengineering/platform/pull/${1}):"},
# Check spelling of the commit with https://github.com/crate-ci/typos
# If the spelling is incorrect, it will be automatically fixed.
#{ pattern = '.*', replace_command = 'typos --write-changes -' },
] ]
# regex for parsing and grouping commits # regex for parsing and grouping commits
commit_parsers = [ commit_parsers = [