From 670f16fbc8ae35f8a819fd8eac24f9cf89412f2e Mon Sep 17 00:00:00 2001 From: Dawson Toth Date: Mon, 27 Jul 2026 12:58:35 -0400 Subject: [PATCH] fix(release): align release-note sections with studio MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Aligned `.releaserc.json` `presetConfig.types` to studio's superset (adds `chore`→Chores, `build`, `ci`, `style`) so no release comes out empty. (No lockfile/renovate change — preset devDep is already on a 9.x range and this repo has no in-repo renovate.json.) Co-Authored-By: Claude Opus 4.8 (1M context) --- .releaserc.json | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.releaserc.json b/.releaserc.json index 61e5326..a672832 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -9,14 +9,17 @@ "presetConfig": { "types": [ { "type": "feat", "section": "Features" }, - { "type": "feature", "section": "Features" }, - { "type": "docs", "section": "Documentation" }, { "type": "fix", "section": "Bug Fixes" }, { "type": "perf", "section": "Performance Improvements" }, - { "type": "refactor", "section": "Code Improvements" }, - { "type": "revert", "section": "Reverts" }, - { "type": "test", "section": "Test Improvements" }, - { "type": "chore", "scope": "deps", "section": "Dependency Updates" } + { "type": "refactor", "section": "Refactoring" }, + { "type": "chore", "scope": "deps", "section": "Dependency Updates", "hidden": false }, + { "type": "chore", "section": "Chores", "hidden": false }, + { "type": "docs", "section": "Documentation" }, + { "type": "style", "section": "Styles" }, + { "type": "test", "section": "Tests" }, + { "type": "build", "section": "Build System" }, + { "type": "ci", "section": "Continuous Integration" }, + { "type": "revert", "section": "Reverts" } ] } }