From 1622a68a1b00954bd266eb848a7fb69e848522c3 Mon Sep 17 00:00:00 2001 From: Nazar Hussain Date: Mon, 20 Jul 2026 13:10:03 +0500 Subject: [PATCH] chore: define changelog sections for release-please Add explicit changelog-sections config so release notes group commits into named sections, hiding build/ci/test/style types. Co-Authored-By: Claude Opus 4.8 (1M context) --- release-please-config.json | 54 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/release-please-config.json b/release-please-config.json index de10c28..78b10c4 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -9,6 +9,60 @@ "path": "build.zig.zon", "type": "generic" } + ], + "changelog-sections": [ + { + "type": "feat", + "section": "Features" + }, + { + "type": "fix", + "section": "Bug Fixes" + }, + { + "type": "perf", + "section": "Performance Improvements" + }, + { + "type": "refactor", + "section": "Code Refactoring" + }, + { + "type": "deps", + "section": "Dependencies" + }, + { + "type": "revert", + "section": "Reverts" + }, + { + "type": "chore", + "section": "Miscellaneous Chores" + }, + { + "type": "docs", + "section": "Documentation" + }, + { + "type": "build", + "section": "Build System", + "hidden": true + }, + { + "type": "ci", + "section": "Continuous Integration", + "hidden": true + }, + { + "type": "test", + "section": "Tests", + "hidden": true + }, + { + "type": "style", + "section": "Styles", + "hidden": true + } ] } }