fix(v7.6.1): governance overrides + audit-search response fixes#384
Merged
saurabhjain1592 merged 1 commit intomainfrom May 4, 2026
Merged
Conversation
PATCH release. Two user-visible bug fixes around the read-side governance surface. Companion to plugin releases claude/cursor/codex 1.1.0 and openclaw 2.1.0 which expose this surface as agent-callable tools. Bug fixes: - audit/search returns [] not null on empty result sets - overrides 403 for severity=critical system policies (auth bypass, time-based blind SQLi, stacked DROP, government IDs, financial PII) Note: binary contains dormant scaffolding for future work (free-tier email recovery, paid plugin-claim tier) that is not yet wired to any user-facing surface in this release. Source Commits: b6d9678da,6b04a1d53,30e6e749a,5c8db6e64,51298828d,960df8869,43fb5e7bb,2129f6476,99457ac47,566f48889,66301c411,be5c41046,4be070591,c124d6135,407f36cef,73fe22624,62a707791,0cb3edf87,efde9b867,caedec77d,10f200aca,eafbfbf0d Signed-off-by: AxonFlow Team <bot@getaxonflow.com>
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.
v7.6.1 — patch release
Two user-visible bug fixes around the read-side governance surface; no new endpoints, no schema-breaking changes on existing responses. Companion to plugin releases axonflow-claude-plugin v1.1.0, axonflow-cursor-plugin v1.1.0, axonflow-codex-plugin v1.1.0, and axonflow-openclaw-plugin v2.1.0, which expose this surface as agent-callable tools and skills.
Bug fixes
POST /api/v1/audit/searchno longer returnsentries: nullon empty result sets. The response now consistently returnsentries: []so downstream clients that iterate the array (for entry of entries) or read its length without a null guard work correctly. Pre-existing callers that already handled the null case remain compatible.POST /api/v1/overridesnow rejects with HTTP 403 for severity=critical system policies. Authentication-bypass, time-based blind SQL injection, stacked DROP/DELETE/UPDATE/INSERT/EXEC, government IDs, and financial-PII patterns are no longer overridable; attempting to create a session override against any of them returns403 "Critical-risk policies cannot be overridden". Pre-existing active overrides on these policies are revoked at upgrade time.