[release] Work around the removal of yarn --silent#3424
Merged
douglowder merged 1 commit intomainfrom Feb 24, 2026
Merged
Conversation
|
⏩ The changelog entry check has been skipped since the "no changelog" label is present. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #3424 +/- ##
==========================================
- Coverage 52.60% 52.32% -0.27%
==========================================
Files 806 807 +1
Lines 33604 33868 +264
Branches 6985 7033 +48
==========================================
+ Hits 17673 17719 +46
- Misses 14548 14750 +202
- Partials 1383 1399 +16 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
sjchmiela
approved these changes
Feb 24, 2026
Contributor
Author
Merge activity
|
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
When yarn moved to version 4, they removed the
--silentflag. Because of this change, any use of yarn to call scripts and get output will also get yarn debugging garbage, and there is no way to suppress it.The release scripts are mostly ok with this, except for calling the
next-versionscript. The output of this script has to be clean for it to be used as input forlerna version.How
Replaced the yarn call with a direct invocation of the node Typescript source, bypassing yarn.
Test Plan
Since the
trigger-release.ymlworkflow supports a dry run mode, it's safe to modify it to check out a test branch and run the workflow many times to debug the issue.Once this change is merged, a dry run invocation of the workflow should succeed even if no version string is passed in.