Align v1.1.0 release boundary metadata#33
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.
Motivation
Description
manifest.jsontostatus: "current-draft", setrelease_datetonull, and addedpublication_state: "repository-validated-not-yet-published"to avoid implying completed publication.scripts/release-boundary.mjswith canonical constants and wired it intoscripts/generate-checksums.mjs,scripts/validate-integrity.mjs,scripts/validate-examples.mjs, andscripts/validate-all.mjsso all tooling derives scope from a single source of truth.scripts/check-packed-surface.mjsand addedvalidate:packtopackage.jsonand CI to assert thatnpm pack --dry-runcontains only the canonical shipped boundary plus the npm-emittedpackage.jsonmetadata.README.md,POLICY.md,SPEC.md,SECURITY_PROVENANCE.md,ONBOARDING.md,releases/v1.1.0.md) to consistently describe v1.1.0 as the current shipped boundary, v1.0.0 as repository-only history, checksum/integrity scope, and repository pre-publication posture; regeneratedchecksums.txtto match the new canonical checksum-covered surface.Testing
npm run validate(which now includesvalidate:schemas,validate:examples,validate:integrity, andvalidate:pack) and it completed successfully.node scripts/generate-checksums.mjsandnode scripts/validate-integrity.mjsto regenerate and verifychecksums.txt, and both succeeded.npm run validate:examplesand schema-level validation withnpm run validate:schemas, both of which passed.npm pack --json --dry-runand the newvalidate:packcheck validated the tarball contains only the canonical v1.1.0 surface pluspackage.json, andgit diff --exit-code -- checksums.txtshowed no unexpected changes.Codex Task