diff --git a/charts/stable/frigate/Chart.yaml b/charts/stable/frigate/Chart.yaml index 47e7e414..44608df3 100644 --- a/charts/stable/frigate/Chart.yaml +++ b/charts/stable/frigate/Chart.yaml @@ -27,9 +27,11 @@ dependencies: annotations: artifacthub.io/changes: | - kind: changed - description: **Breaking:** Updated image tag to version `0.10.0-amd64`. See the application release notes for the breaking changes. + description: | + **Breaking:** Updated image tag to version `0.10.0-amd64`. See the application release notes for the breaking changes. links: - name: Application release notes url: https://github.com/blakeblackshear/frigate/releases/tag/v0.10.0 - kind: changed - description: **Breaking:** Use the common library built-in configMap for configuration. + description: | + **Breaking:** Use the common library built-in configMap for configuration. diff --git a/charts/stable/frigate/README.md b/charts/stable/frigate/README.md index fc931129..574dc359 100644 --- a/charts/stable/frigate/README.md +++ b/charts/stable/frigate/README.md @@ -119,7 +119,9 @@ N/A #### Changed -N/A +* **Breaking:** Updated image tag to version `0.10.0-amd64`. See the application release notes for the breaking changes. + +* **Breaking:** Use the common library built-in configMap for configuration. #### Fixed diff --git a/charts/stable/maddy/Chart.yaml b/charts/stable/maddy/Chart.yaml index 79a3309d..ea3191b1 100644 --- a/charts/stable/maddy/Chart.yaml +++ b/charts/stable/maddy/Chart.yaml @@ -26,6 +26,6 @@ dependencies: annotations: artifacthub.io/changes: | - kind: changed - description: **Breaking**: `alias` content moved from `maddy.alias` to `maddy.config_files.alias` + description: "**Breaking**: `alias` content moved from `maddy.alias` to `maddy.config_files.alias`" - kid: added - description: additional settings for imap and local_mailboxes under `extra_settings`. + description: "additional settings for imap and local_mailboxes under `extra_settings`." diff --git a/charts/stable/maddy/README.md b/charts/stable/maddy/README.md index d0608000..d1cf0a83 100644 --- a/charts/stable/maddy/README.md +++ b/charts/stable/maddy/README.md @@ -125,7 +125,7 @@ N/A #### Changed -N/A +* **Breaking**: `alias` content moved from `maddy.alias` to `maddy.config_files.alias` #### Fixed diff --git a/charts/stable/rtsp-to-web/Chart.yaml b/charts/stable/rtsp-to-web/Chart.yaml index e6c38ab4..a0f019d4 100644 --- a/charts/stable/rtsp-to-web/Chart.yaml +++ b/charts/stable/rtsp-to-web/Chart.yaml @@ -20,6 +20,6 @@ dependencies: annotations: artifacthub.io/changes: | - kind: changed - description: Upgrade RTSPtoWeb to v2.2.0 + description: "Upgrade RTSPtoWeb to v2.2.0" - kind: changed - description: **BREAKING** The config directory is now located at `/config/config.json` + description: "**BREAKING** The config directory is now located at `/config/config.json`" diff --git a/charts/stable/rtsp-to-web/README.md b/charts/stable/rtsp-to-web/README.md index 90534e7f..34eb309b 100644 --- a/charts/stable/rtsp-to-web/README.md +++ b/charts/stable/rtsp-to-web/README.md @@ -94,7 +94,8 @@ N/A #### Changed -N/A +* Upgrade RTSPtoWeb to v2.2.0 +* **BREAKING** The config directory is now located at `/config/config.json` #### Fixed diff --git a/hack/templates/README.md.gotmpl b/hack/templates/README.md.gotmpl index 94f7808a..67e77868 100644 --- a/hack/templates/README.md.gotmpl +++ b/hack/templates/README.md.gotmpl @@ -117,7 +117,8 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} - {{- print "#### " ($changeType | title) | nindent 0 }} {{- print "" | nindent 0 }} {{- $changesFound := false }} - {{- range (print "changes:\n" . | fromYaml).changes }} + {{- $changes := ((print "changes:\n" .) | fromYaml).changes }} + {{- range $changes }} {{- if eq .kind $changeType }} {{- print "* " .description | nindent 0 }} {{- $changesFound = true }}