From b6205906593a26b9f7c3688689334dd632d6ed2d Mon Sep 17 00:00:00 2001 From: Dawson Toth Date: Mon, 27 Jul 2026 12:58:15 -0400 Subject: [PATCH] fix(release): pin conventionalcommits preset to v9 and align release-note sections MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Pinned `conventional-changelog-conventionalcommits@^9.3.1` in the release workflow's `extra_plugins` (it was unpinned → pulled v10 → empty notes; e.g. v2.2.3 dropped a `fix:` commit). - Aligned `.releaserc.json` `presetConfig.types` to studio's superset. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/release.yaml | 2 +- .releaserc.json | 14 +++++++++----- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c96e8b0..a8e6849 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -51,7 +51,7 @@ jobs: extra_plugins: | @semantic-release/commit-analyzer @semantic-release/release-notes-generator - conventional-changelog-conventionalcommits + conventional-changelog-conventionalcommits@^9.3.1 @semantic-release/npm @semantic-release/git @semantic-release/github diff --git a/.releaserc.json b/.releaserc.json index 43ff8b4..a672832 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -9,13 +9,17 @@ "presetConfig": { "types": [ { "type": "feat", "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" } ] } }