From 85de4bf67884c20efaaee5570a57383d8538d1d8 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sat, 14 Feb 2026 09:25:55 +0000 Subject: [PATCH] build(git-cliff): do not capitalize the first letter of commit message Some commit messages start with the function names for additional context and these should not be capitalized. --- CHANGELOG.md | 2 +- cliff.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1340aacea..229392d91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -403,7 +403,7 @@ that failed to be published for 2.31.0 due to not configured "trusted publishers ### Features / Changes -- Lookup_or_create_adhoc_group(): Add context to SQL errors ([#7554](https://github.com/chatmail/core/pull/7554)). +- `lookup_or_create_adhoc_group()`: Add context to SQL errors ([#7554](https://github.com/chatmail/core/pull/7554)). ## [2.31.0] - 2025-12-04 diff --git a/cliff.toml b/cliff.toml index b264f420e..6d3431b4c 100644 --- a/cliff.toml +++ b/cliff.toml @@ -66,7 +66,7 @@ body = """ {% for commit in commits %} - {% if commit.breaking %}[**breaking**] {% endif %}\ {% if commit.scope %}{{ commit.scope }}: {% endif %}\ - {{ commit.message | upper_first }}.\ + {{ commit.message }}.\ {% if commit.footers is defined %}\ {% for footer in commit.footers %}{% if 'BREAKING CHANGE' in footer.token %} {% raw %} {% endraw %}- {{ footer.value }}\