chore(release): bump workspace to 0.27.0#28
Merged
Conversation
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.
Summary
Workspace version bump for the 0.27.0 release. This PR is the precondition to running
cargo release tag --execute && cargo release publish --executeagainstmainafter merge.Changes
Cargo.tomlworkspace version:0.26.1→0.27.0Cargo.lockregenerated bycargo release version minor -p acton-service --execute --no-confirmacton-docs/src/lib/version.ts—VERSIONconstant bumped (per CLAUDE.md release checklist)acton-docs/src/markdoc/config.js—ACTON_VERSIONconstant bumpedacton-docs/src/markdoc/functions.js—ACTON_VERSIONconstant bumpedCHANGELOG.md— populated the[Unreleased]section with the 0.27.0 entry, covering all breaking changes, new emissions, fixes, and documentation work from fix(audit): stop emitting auth.login.failed for unauthenticated requests #14, fix(audit): parse config.*, account.*, and lockout event strings back to typed variants #21, fix(audit): emit AuthPermissionDenied, HttpRequestDenied, AuthPasswordChanged #22, fix(audit): align AccountExpired/Deleted severities; bump AuthLoginSuccess to Notice #23, fix(audit): warn when storage parser falls back to Custom for framework namespace #24, fix(audit): attach jti to AuthTokenRevoked event metadata #25, docs(audit): update audit-event docs for 0.27 emission changes #27.Why minor, not patch
Six PRs in this cycle introduce observable behavior changes to the audit-event surface that downstream SIEM rules can key on:
AuthLoginFailedno longer middleware-emitted (fix(audit): stop emitting auth.login.failed for unauthenticated requests #14)AccountUpdated+action:password_changedreplaced byAuthPasswordChanged(fix(audit): emit AuthPermissionDenied, HttpRequestDenied, AuthPasswordChanged #22)AuthLoginSuccessseverity Informational → Notice (fix(audit): align AccountExpired/Deleted severities; bump AuthLoginSuccess to Notice #23)AccountExpiredseverity Notice → Warning (fix(audit): align AccountExpired/Deleted severities; bump AuthLoginSuccess to Notice #23)Per SemVer, observable-behavior changes that aren't bug fixes warrant a minor bump.
Test plan
cargo check --workspace— cleanFollow-up (after merge)
```
git pull --ff-only
cargo release tag --execute --no-confirm
cargo release publish --execute --no-confirm
git push origin acton-service-v0.27.0
```
Closes #13 #15 #18 #19 #20 #19 (refs partial #16)