Fix release archive verification false-positive on changelog version headings - #19
Merged
Merged
Conversation
Co-authored-by: MdNurnobi-Dev <295743766+MdNurnobi-Dev@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions job build-verified-source
Fix release archive verification false-positive on changelog version headings
Sep 18, 2026
MdNurnobi-Dev
approved these changes
Sep 18, 2026
Co-authored-by: MdNurnobi-Dev <295743766+MdNurnobi-Dev@users.noreply.github.com>
MdNurnobi-Dev
approved these changes
Sep 18, 2026
Co-authored-by: MdNurnobi-Dev <295743766+MdNurnobi-Dev@users.noreply.github.com>
MdNurnobi-Dev
approved these changes
Sep 18, 2026
MdNurnobi-Dev
marked this pull request as ready for review
September 18, 2026 07:42
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
build-verified-sourcefailed in release run35318392855becausescripts/verify_release.pyclassified changelog heading versions (e.g.## 1.3.5.4 - ...) as global IPv4 literals.This update narrows version-literal detection so changelog heading semver values pass while real global IP literals remain blocked.
is_version_literalto treat markdown headings shaped as## <version> - ...as version literals before global-IP rejection.scripts/test_release_workflow.pywith a heading-specific assertion to lock behavior.MEMORY.mdand regenerated forensic inventory metadata.Compatibility
Documentation baseline
documents/phases/PHASE-NNN-*.mdrecord was added or updatedUSER_MANUAL.md,HOW_TO_USE.md, orADMIN_GUIDE.mdCHANGELOG.mdwas updatedpython scripts/manage_documents.py checkpython scripts/test_documents.pypython scripts/manage_designs.py --root . checkpython scripts/test_designs.pypython scripts/test_ui_foundation.pypython scripts/check_documentation_policy.py --base HEAD^ --head HEADVerification
python scripts/forensic_audit.py --root . --profile essential --fullpython scripts/validate_templates.pypython scripts/test_installer.pySecurity and operations
No authorization, ingestion, retention, or runtime service paths changed.
Scope is limited to release-archive static validation heuristics; database schema, deployment flow, and migration/backup strategy are unchanged.
Rollback is straightforward by reverting
scripts/verify_release.pyandscripts/test_release_workflow.py.