Add canonical v1.1.0 release bundle#37
Merged
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
release-v1.1.0/containing only the release boundary artifacts needed for Protocol-Commercial v1.1.0 and excluding unrelated repository files and priorv1.0.0assets.Description
release-v1.1.0/and populate it withmanifest.json,checksums.txt,schemas/v1.1.0/, andexamples/v1.1.0/copied from the repository roots and include theschemas/v1.1.0/index.jsoninventory file.schemas/v1.0.0,examples/v1.0.0, TypeScript example files, scripts,.github,node_modules, distribution artifacts, andpackage.jsonfrom the release bundle.release-v1.1.0/(inventory listing shown in the PR diff).Testing
rm -rf release-v1.1.0 && mkdir -p release-v1.1.0/schemas release-v1.1.0/examples && cp manifest.json checksums.txt release-v1.1.0/ && cp -R schemas/v1.1.0 release-v1.1.0/schemas/ && cp -R examples/v1.1.0 release-v1.1.0/examples/, which completed successfully.find release-v1.1.0 -maxdepth 5 -type f | sortand full count withfind release-v1.1.0 -type f | wc -l, confirming presence ofmanifest.json,checksums.txt,schemas/v1.1.0, andexamples/v1.1.0and absence of anyv1.0.0paths or*.tsfiles.schemas/v1.1.0/index.jsonreferences onlyschemas/v1.1.0/...andexamples/v1.1.0/...so the manifest and index align with the release boundary.Codex Task