website/docs/tips-and-tricks.md
Since the groups come out in alphabetical order, use HTML comments to force them into their desired positions:
[git]
commit_parsers = [
{ message = "^feat*", group = "<!-- 0 -->:rocket: New features" },
{ message = "^fix*", group = "<!-- 1 -->:bug: Bug fixes" },
{ message = "^perf*", group = "<!-- 2 -->:zap: Performance" },
{ message = "^chore*", group = "<!-- 3 -->:gear: Miscellaneous" },
]
This produces the following order:
Then strip the tags in the template with the series of filters:
### {{ group | striptags | trim | upper_first }}
{% for commit in commits | unique(attribute="message") %}
{% for group, commits in commits | filter(attribute="merge_commit", value=false) | group_by(attribute="group") %}
[git]
commit_preprocessors = [
# Remove gitmoji, both actual UTF emoji and :emoji:
{ pattern = ' *(:\w+:|[\p{Emoji_Presentation}\p{Extended_Pictographic}](?:\u{FE0F})?\u{200D}?) *', replace = "" },
]
[git]
commit_parsers = [
{ body = "$^", skip = true },
]
{% if commit.remote.pr_labels is containing("skip-release-notes") %}
{% continue %}
{% endif %}
[git]
commit_parsers = [
{ field = "github.pr_labels", pattern = "breaking-change", group = "<!-- 0 --> ๐๏ธ Breaking changes" },
{ field = "github.pr_labels", pattern = "type/enhancement", group = "<!-- 1 --> ๐ Features" },
{ field = "github.pr_labels", pattern = "type/bug", group = "<!-- 2 --> ๐ Fixes" },
{ field = "github.pr_labels", pattern = "type/update", group = "<!-- 3 --> ๐งช Dependencies" },
{ field = "github.pr_labels", pattern = "type/refactor", group = "<!-- 4 --> ๐ญ Refactor" },
{ field = "github.pr_labels", pattern = "area/documentation", group = "<!-- 5 --> ๐ Documentation" },
{ field = "github.pr_labels", pattern = ".*", group = "<!-- 6 --> ๐ Miscellaneous" },
]
{{ get_env(name="CI_PROJECT_URL") }}/-/tags/{{ version }}
pandoc --from=gfm --to=pdf -o CHANGELOG.pdf CHANGELOG.md
To support unicode characters, use xelatex as PDF engine and a font family which includes the needed unicode characters:
pandoc --from=gfm --to=pdf --pdf-engine=xelatex -o CHANGELOG.pdf CHANGELOG.md --variable mainfont="Segoe UI Emoji"
When retrieving information from a remote Git repository, you may encounter HTTP 403 errors due to rate limiting.
As a simple workaround, you can run git-cliff in offline mode to skip remote API calls:
git-cliff --offline
# or via environment variable
GIT_CLIFF_OFFLINE=true git-cliff
:::note
This will generate the changelog using only local Git commit information. Note that PR titles, labels, and other remote metadata will not be included in offline mode.
:::