{{! prettier-ignore }}
{{#each releases}}
    {{#if tag}}
        ## [{{#replaceTitle}}{{title}}{{/replaceTitle}}]({{href}}) ({{isoDate}})
    {{/if}}

    {{#commit-parser merges commits}}

        {{#if-public-changes this}}

            {{#commit-list this heading='### 🚀 Features' message='^feat(?:\([^)]*\))?!?:' exclude='^(feat|fix)(\([^)]*\))!:'}}
                - {{changelogEntry}}
            {{/commit-list}}

            {{#commit-list this heading='### 🐞 Bug Fixes' message='^fix(?:\([^)]*\))?!?:' exclude='^(feat|fix)(\([^)]*\))!:'}}
                - {{changelogEntry}}
            {{/commit-list}}

            {{#commit-list this heading='### ⚠️ BREAKING CHANGES' message='^(feat|fix)(\([^)]*\))!:'}}
                - {{changelogEntry}}
            {{/commit-list}}

        {{else}}

            This release contains internal technical improvements only. No changes to functionality, UI, or APIs.

        {{/if-public-changes}}

    {{/commit-parser}}

{{/each}}