From a3785df8e992e61bf7fbe5214d066b6cec03e069 Mon Sep 17 00:00:00 2001 From: Johannes Raggam Date: Thu, 8 May 2025 00:14:38 +0200 Subject: [PATCH] feat: Add new changelog category "tech" for technical changes which are not user-visible features. --- .release-it.js | 4 ++++ commitlint.config.js | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.release-it.js b/.release-it.js index 5e18855..c980b85 100644 --- a/.release-it.js +++ b/.release-it.js @@ -36,6 +36,10 @@ module.exports = { type: "fix", section: "Bug Fixes", }, + { + type: "tech", + section: "Technical Changes", + }, { type: "maint", section: "Maintenance", diff --git a/commitlint.config.js b/commitlint.config.js index f054c1e..9551562 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -6,6 +6,6 @@ module.exports = { "subject-empty": [2, "never"], "type-case": [2, "always", "lower-case"], "type-empty": [2, "never"], - "type-enum": [2, "always", ["feat", "fix", "maint", "breaking"]], + "type-enum": [2, "always", ["breaking", "feat", "fix", "tech", "maint"]], }, };