release/v2.21.0 - #92
Merged
Merged
Conversation
Version stamps + CHANGELOG entry for the CC-scoped escape prefixes (D-79). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Ei925tQjBZS9gcaURGcnya
Auto-generated by local_evidence.py post-commit hook. Source commit: 1f35d7c
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
v2.21.0
The commit-msg escape hatch now works in repos that enforce Conventional Commits — which is to say, in the repos EDPA's own work rules describe.
Fixed
Escape prefixes were not valid Conventional Commits (D-79). EDPA's work rules mandate CC, yet every escape it accepted (
no-ticket:,WIP:,[no-ticket]) fails a conventional-commit gate. In a repo running one, a non-trivial ticket-less change had no message that passed both gates:no-ticket: fix typochore(no-ticket): fix typochore: fix typoThe dead end selects for the worst option available —
git commit --no-verify, which skips every hook including pre-commit ID safety and leaves no trace in the message.chore(no-ticket):andchore(wip):are now accepted — valid CC, and still visible and greppable ingit log --oneline. Bare forms stay accepted for back-compat. Barechore:is deliberately not an escape.Found while wiring a real consumer repo whose
conventionalhook rejected every EDPA escape.🤖 Generated with Claude Code
https://claude.ai/code/session_01Ei925tQjBZS9gcaURGcnya