Align package and manifest release metadata#9
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
SECURITY*content in this pass.Description
package.jsondescription to reference the activev1.1.0schema family and added the keywordprotocol-commonswhile removing legacyx402positioning from keywords.CHANGELOG.mdwording to describev1.1.0as the active in-repo schema surface and to explicitly retainv1.0.0as the last pinned canonical release until pinning is completed.manifest.jsonpackage name withpackage.json, simplifiedschemas_cidto a machine-readablePENDINGvalue, and updated thedescriptionto reference the activev1.1.0family.active_releaseandpinned_canonical_releaseobjects inmanifest.json(includingversion,status,schemas_root,commons_root,examples_root,schemas_cid, andpin_status) to make active vs pinned state clear for programmatic consumers.Testing
npm run test:smoke:packwhich executed the prepack checks and produced a successful package pack. (succeeded)node -e "const fs=require('fs'); const m=JSON.parse(fs.readFileSync('manifest.json','utf8')); const p=JSON.parse(fs.readFileSync('package.json','utf8')); if(m.name!==p.name) throw new Error('name mismatch'); if(m.active_release.version!==p.version) throw new Error('active release mismatch'); console.log('manifest/package metadata aligned:', {name:p.name, version:p.version, active:m.active_release.version, pinned:m.pinned_canonical_release.version});"which validated thenameand active releaseversionalignment. (succeeded)Codex Task