Open
Conversation
Contributor
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
b443520 to
51b313f
Compare
craigmichaelmartin
approved these changes
Apr 15, 2026
4 tasks
isaacroldan
approved these changes
Apr 16, 2026
- Rename packaging/3/ to packaging/stable/ so the template directory is not tied to the CLI major version - Update getTemplateVersion() to match any stable semver (was hardcoded to ^3.x) - Stop updating shopify-cli@3.rb when the major version is 4+; that formula stays frozen at the last 3.x release - Fix hardcoded 'Shopify CLI 3 formula' in the Homebrew PR commit message - Merge changeset bump-type reflection into a single PR template checkbox
51b313f to
c24f37c
Compare
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.

WHY are these changes introduced?
The release infrastructure was hardcoded for major version 3 (branch patterns
stable/3.*, packaging directorypackaging/3/, Homebrew template version"3"). This prepares the tooling for future major versions so that a version bump doesn't require touching release plumbing.WHAT is this pull request doing?
packaging/3/→packaging/stable/to remove the version coupling from the directory namestable/3.*tostable/*in the release and test workflowsbin/create-homebrew-pr.jsto match any stable semver string (not just3.x.x) and to only update theshopify-cli@3.rbversioned formula while still on major version 3 — once we move to v4+, that formula stays frozen at the last 3.x releaseCONTRIBUTING.mddocumenting changesets, bump type selection, what counts as a breaking change, and the deprecation policyHow to test your changes?
No behaviour change for the current v3 release flow. To verify:
packaging/stable/contains the two Liquid templates previously underpackaging/3/node bin/create-homebrew-pr.js --helpto ensure the script loads without errorsgetTemplateVersion('3.x.x')returns'stable'andgetTemplateVersion('4.0.0')also returns'stable'Checklist
pnpm changeset addpatchfor bug fixes,minorfor new features,majorfor breaking changes to a stable interface