From 7d190dd5fb0eeafc2d20300c3b49475451062a6c Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 16 Jul 2026 13:43:19 +0000 Subject: [PATCH] fix: give Dependabot a fix() commit prefix so dependency bumps auto-release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Dependabot's default commit type is build(deps), which release-please doesn't treat as release-worthy (only feat/fix/perf bump a version). So the vite 8.1.4 and actions/setup-node v7 bumps merged to main but never cut a v1.5.1 — release-please saw nothing bump-worthy since v1.5.0 and opened no release PR. Switch every ecosystem to a fix(deps) prefix so future dependency updates ship a patch release on their own. This commit is itself a fix:, so merging it cuts the v1.5.1 that those two dependency updates should have — the release rebuilds the image from current main, which already includes them. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_013Lj6nYJQDtLaZFvvEQJGM4 --- .github/dependabot.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 315fb00..21c1f87 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,6 +8,13 @@ updates: groups: actions: patterns: ["*"] + # `fix(deps): …` so release-please treats a bump as a patch and cuts a + # release for it. Its default `build(deps)` type isn't release-worthy + # (only feat/fix/perf bump), so dependency updates would land on main and + # never ship a new tagged image/release. + commit-message: + prefix: "fix" + include: "scope" # Server npm deps. Group safe minor+patch bumps into a single PR (auto-merged # once CI is green); majors come as individual PRs for manual review. @@ -18,6 +25,9 @@ updates: groups: server-minor-patch: update-types: ["minor", "patch"] + commit-message: + prefix: "fix" + include: "scope" # Client npm deps — same grouping strategy. - package-ecosystem: npm @@ -27,3 +37,6 @@ updates: groups: client-minor-patch: update-types: ["minor", "patch"] + commit-message: + prefix: "fix" + include: "scope"