Skip to content

Commit 7f8b087

Browse files
chrissetoRafalKorepta
authored andcommitted
CHANGELOGs: don't include unreleased changed
Prior to this commit all CHANGELOG.md files contained an `### unreleased` section list all pending changes in changie fragments. The idea at the time was to make it easy to understand what changes would be present in an upcoming release. In practice these sections were never referred to as most developers would rely on `git log`. Worse yet they were the primary cause of backports requiring manual intervention. As the number of release branches has grown, so has the frequency of backporting and the frustration of needing to manually re-run `task generate`. This commit removes the unreleased section with the primary goal of reducing the toil of backporting commits. (cherry picked from commit 1d28958) # Conflicts: # charts/redpanda/CHANGELOG.md # gotohelm/CHANGELOG.md # operator/CHANGELOG.md
1 parent 13c3941 commit 7f8b087

File tree

4 files changed

+1
-1350
lines changed

4 files changed

+1
-1350
lines changed

Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ tasks:
132132
- ./.changes/**/*.md
133133
- ./.changes/**/*.yaml
134134
cmds:
135-
- changie merge -u '## Unreleased' # Ensure CHANGELOG.mds are up to date.
135+
- changie merge # Ensure CHANGELOG.mds are up to date.
136136

137137
build:
138138
cmds:

charts/redpanda/CHANGELOG.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
55
and is generated by [Changie](https://github.com/miniscruff/changie).
66

77

8-
## Unreleased
9-
### Removed
10-
* The unrespected`kafkaEndpoint` listener parameter has been removed from `values.yaml`
11-
### Fixed
12-
* `authentication_method` is no longer set on `http_api` as redpanda itself does not support authentication on the http API.
13-
148
## v5.10.2 - 2025-05-01
159
### Changed
1610
* `serviceAccount.create` now defaults to `true`.

0 commit comments

Comments
 (0)