fix(release): correct package name in rename-hire-to-cast changeset#1468
Merged
tamirdresher merged 1 commit intoJul 13, 2026
Merged
Conversation
The frontmatter declared the bare "squad-cli", which is not a workspace package, so @changesets/assemble-release-plan throws and the hire→cast changelog entry / minor bump would be lost at release. Corrected to the real workspace package name "@bradygaster/squad-cli". Co-authored-by: Elad Coding Assistant <yeshurin@gmail.com>
Contributor
🛫 PR Readiness Check
PR Scope: 🔧 Infrastructure
|
| Status | Check | Details |
|---|---|---|
| ✅ | Single commit | 1 commit — clean history |
| ✅ | Not in draft | Ready for review |
| ✅ | Branch up to date | Up to date with dev |
| ❌ | Copilot review | No Copilot review yet — it may still be processing |
| ✅ | Changeset present | Changeset file found |
| ✅ | Scope clean | No .squad/ or docs/proposals/ files |
| ✅ | No merge conflicts | No merge conflicts |
| ✅ | Copilot threads resolved | No Copilot review threads |
| ✅ | CI passing | All checks passing |
Files Changed (1 file, +1 −1)
| File | +/− |
|---|---|
.changeset/rename-hire-to-cast.md |
+1 −1 |
Total: +1 −1
This check runs automatically on every push. Fix any ❌ items and push again.
See CONTRIBUTING.md and PR Requirements for details.
Contributor
🟢 Impact Analysis — PR #1468Risk tier: 🟢 LOW 📊 Summary
🎯 Risk Factors
📦 Modules Affectedroot (1 file)
This report is generated automatically for every PR. See #733 for details. |
tamirdresher
approved these changes
Jul 13, 2026
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.
What
.changeset/rename-hire-to-cast.mddeclared the bare package namesquad-cli, which is not aworkspace package. Corrected to the real scoped name
@bradygaster/squad-cli— matching everyother fragment in
.changeset/. One line, one file.Why
@changesets/assemble-release-plan(behindchangeset status/changeset version) resolveseach fragment's package against the workspace.
squad-cliresolves to nothing and throws:so the
hire → castchangelog entry and itsminorbump would be lost at release. Verifiedagainst
@changesets/assemble-release-planv6: before → throws; after → resolves@bradygaster/squad-cli@minorcleanly.Scope
.changeset/, which the CHANGELOGgate treats as "not applicable" (only
packages/squad-(sdk|cli)/src/and governed templatepaths require one).
changeset statuscheck in CI would catch this classof error before release.
Closes #1467
Powered By Elad Coding Assistant