From 2fb62609555f9baabcb26697700db0d4962c8316 Mon Sep 17 00:00:00 2001 From: Jens Schulze Date: Wed, 22 Jul 2026 17:43:46 +0200 Subject: [PATCH 1/2] docs(changelog): backfill empty entries since v1.1.6 --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f91025..9eb48d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,43 @@ ## [2.0.0](https://github.com/restinthemiddle/helm/compare/v1.1.10...v2.0.0) (2026-07-22) +### ⚠ BREAKING CHANGES + +* the chart now requires Kubernetes >= 1.23 (autoscaling/v2, networking.k8s.io/v1); helm template pipelines no longer emit explicit metadata.namespace on Deployment and ConfigMap. + +### Features + +* modernize chart and drop pre-1.23 Kubernetes support ([3a23a7e](https://github.com/restinthemiddle/helm/commit/3a23a7e9f1ff79d4a763b87ebf3367fefaa0dbc0)) + ## [1.1.10](https://github.com/restinthemiddle/helm/compare/v1.1.9...v1.1.10) (2026-07-16) +### Dependencies + +* **deps:** update actions/checkout action to v7 ([e2e3191](https://github.com/restinthemiddle/helm/commit/e2e3191bac73f6df4b62dcc4a28f0dd46950ca4f)) + ## [1.1.9](https://github.com/restinthemiddle/helm/compare/v1.1.8...v1.1.9) (2026-07-12) +### Dependencies + +* **deps:** update docker.io/jdschulze/restinthemiddle docker tag to v2.3.10 ([b6acc01](https://github.com/restinthemiddle/helm/commit/b6acc01bc5bb81a195c3002c4fb10036865403fe)) + ## [1.1.8](https://github.com/restinthemiddle/helm/compare/v1.1.7...v1.1.8) (2026-06-12) +### Dependencies + +* **deps:** update docker.io/jdschulze/restinthemiddle docker tag to v2.3.9 ([d6831bf](https://github.com/restinthemiddle/helm/commit/d6831bf81ae28e2f11cb6621f784fa4b7ff46536)) + ## [1.1.7](https://github.com/restinthemiddle/helm/compare/v1.1.6...v1.1.7) (2026-06-07) +### Dependencies + +* **deps:** update docker.io/jdschulze/restinthemiddle docker tag to v2.3.8 ([f57acd1](https://github.com/restinthemiddle/helm/commit/f57acd13c523bca78cecc5f16a112a6443eddf1c)) + ## [1.1.6](https://github.com/restinthemiddle/helm/compare/v1.1.5...v1.1.6) (2026-04-28) +### Dependencies + +* **deps:** update docker.io/jdschulze/restinthemiddle docker tag to v2.3.7 ([01b041a](https://github.com/restinthemiddle/helm/commit/01b041a3203ab1b95be6155e1e1bb885e03ebb79)) + ## [1.1.5](https://github.com/restinthemiddle/helm/compare/v1.1.4...v1.1.5) (2026-04-20) ### Bug Fixes From 05a03d709935d9d800cc7560424091bd72dced63 Mon Sep 17 00:00:00 2001 From: Jens Schulze Date: Wed, 22 Jul 2026 17:40:57 +0200 Subject: [PATCH 2/2] fix(release): include dependency updates in release notes --- .releaserc.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.releaserc.json b/.releaserc.json index b4726ef..76a8c4a 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -32,7 +32,16 @@ [ "@semantic-release/release-notes-generator", { - "preset": "conventionalcommits" + "preset": "conventionalcommits", + "presetConfig": { + "types": [ + { "type": "feat", "section": "Features" }, + { "type": "fix", "section": "Bug Fixes" }, + { "type": "perf", "section": "Performance Improvements" }, + { "type": "revert", "section": "Reverts" }, + { "type": "chore", "scope": "deps", "section": "Dependencies" } + ] + } } ], [