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
{% endif %}\
{% for group, commits in commits | group_by(attribute="group") %}\
{% for commit in commits %}\
* {{ group | striptags | trim | upper }}: {% if commit.scope %}*({{ commit.scope }})* {% endif %}\
* {{ group | striptags | trim | upper }}: \
{% for commit in commits %}\
· {% if commit.scope %}*({{ commit.scope }})* {% endif %}\
{% if commit.breaking %}[**breaking**] {% endif %}\
{{ commit.message | trim | upper_first }}\
{{ commit.message | trim | upper_first }} \
{% endfor %}
{% endfor %}\n
"""
@ -47,11 +48,8 @@ filter_unconventional = true
split_commits = false
# regex for preprocessing the commit messages
commit_preprocessors = [
# Replace issue numbers
#{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](<REPO>/issues/${2}))"},
# 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 -' },
{ 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}):"},
]
# regex for parsing and grouping commits
commit_parsers = [