From e156c21dee304de7d10c2958c493cce73c2d8fea Mon Sep 17 00:00:00 2001 From: Adam Cooke Date: Tue, 30 Jan 2024 09:02:53 +0000 Subject: [PATCH] chore: update release please to include more categories in changelog --- release-please-config.json | 52 +++++++++++++++++++++++++++++++++++++- 1 file changed, 51 insertions(+), 1 deletion(-) diff --git a/release-please-config.json b/release-please-config.json index e9f45c99..24301f20 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -8,7 +8,57 @@ "bump-patch-for-minor-pre-major": true, "draft": false, "prerelease": false, - "include-v-in-tag": false + "include-v-in-tag": false, + "changelog-sections": [ + { + "type": "feat", + "section": "Features" + }, + { + "type": "feature", + "section": "Features" + }, + { + "type": "fix", + "section": "Bug Fixes" + }, + { + "type": "perf", + "section": "Performance Improvements" + }, + { + "type": "revert", + "section": "Reverts" + }, + { + "type": "docs", + "section": "Documentation" + }, + { + "type": "style", + "section": "Styles" + }, + { + "type": "chore", + "section": "Miscellaneous Chores" + }, + { + "type": "refactor", + "section": "Code Refactoring" + }, + { + "type": "test", + "section": "Tests" + }, + { + "type": "build", + "section": "Build System" + }, + { + "type": "ci", + "section": "Continuous Integration" + } + ] } }, "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"