File tree Expand file tree Collapse file tree 2 files changed +24
-10
lines changed Expand file tree Collapse file tree 2 files changed +24
-10
lines changed Original file line number Diff line number Diff line change @@ -10,19 +10,25 @@ All notable changes to this project will be documented in this file.
1010
1111- Support Containerfiles per version ([ #1302 ] ( https://github.com/stackabletech/docker-images/pull/1302 ) ).
1212
13- ## [[ 0.1.4] ( https://github.com/stackabletech/docker-images/compare/boil-0.1.3..boil-0.1.4 )] - 2025-09-30
13+ ## [ 0.1.4] - 2025-09-30
14+
15+ [ See complete diff] ( https://github.com/stackabletech/docker-images/compare/boil-0.1.3..boil-0.1.4 )
1416
1517### Bug Fixes
1618
1719- Revert accidental default registry change from #1281 ([ #1288 ] ( https://github.com/stackabletech/docker-images/pull/1288 ) ).
1820
19- ## [[ 0.1.3] ( https://github.com/stackabletech/docker-images/compare/boil-0.1.2..boil-0.1.3 )] - 2025-09-29
21+ ## [ 0.1.3] - 2025-09-29
22+
23+ [ See complete diff] ( https://github.com/stackabletech/docker-images/compare/boil-0.1.2..boil-0.1.3 )
2024
2125### Features
2226
2327- Add support for port in registry host ([ #1281 ] ( https://github.com/stackabletech/docker-images/pull/1281 ) ).
2428
25- ## [[ 0.1.2] ( https://github.com/stackabletech/docker-images/compare/boil-0.1.1..boil-0.1.2 )] - 2025-09-18
29+ ## [ 0.1.2] - 2025-09-18
30+
31+ [ See complete diff] ( https://github.com/stackabletech/docker-images/compare/boil-0.1.1..boil-0.1.2 )
2632
2733### Features
2834
Original file line number Diff line number Diff line change @@ -56,26 +56,34 @@ header = """<!-- GENERATED BY GIT-CLIFF, DO NOT EDIT MANUALLY -->
5656# Changelog
5757
5858All notable changes to this project will be documented in this file.
59-
6059"""
6160
6261body = """
62+
6363{% if version %}\
6464 {% if previous.version %}\
65- ## [[{{ version | trim_start_matches(pat="boil-") }}]\
66- (<REPO>/compare/{{ previous.version }}..{{ version }})] - {{ timestamp | date(format="%Y-%m-%d") }}
65+ ## [{{ version | trim_start_matches(pat="boil-") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
66+
67+ [See complete diff](<REPO>/compare/{{ previous.version }}..{{ version }})
6768 {% else %}\
6869 ## [{{ version | trim_start_matches(pat="boil-") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
6970 {% endif %}\
7071{% else %}\
7172 ## [Unreleased]
7273{% endif %}\
74+
7375{% for group, commits in commits | group_by(attribute="group") %}
7476 ### {{ group | striptags | trim | upper_first }}
7577 {% for commit in commits %}
76- - {% if commit.breaking %}**BREAKING:** {% endif %}{{ commit.message | upper_first -}}.
77- {% endfor %}
78- {% endfor %}\
78+ - {% if commit.breaking %}**BREAKING:** {% endif %}\
79+ {{ commit.message | upper_first }}.\
80+ {%- endfor %}
81+ {% endfor -%}
82+
83+
7984"""
8085
81- footer = " <!-- GENERATED BY GIT-CLIFF, DO NOT EDIT MANUALLY -->"
86+ footer = """
87+
88+ <!-- GENERATED BY GIT-CLIFF, DO NOT EDIT MANUALLY -->
89+ """
You can’t perform that action at this time.
0 commit comments