chore(ci): comment minimum-release-age#1732
Merged
Merged
Conversation
Signed-off-by: Arturo Reuschenbach Puncernau <reuschenbach@gmail.com>
|
Contributor
There was a problem hiding this comment.
Pull request overview
This PR temporarily disables pnpm’s minimum-release-age setting in .npmrc to unblock dependency/security updates affected by the referenced pnpm issue.
Changes:
- Comments out the
minimum-release-age=604800pnpm setting. - Keeps exact dependency saving enabled.
TilmanHaupt
approved these changes
May 29, 2026
taymoor89
approved these changes
May 29, 2026
andypf
approved these changes
May 29, 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.
Summary
Temporarily disables the
minimum-release-agecheck in.npmrcto work around a critical pnpm bug that prevents security updates and dependency upgrades.Changes Made
minimum-release-age=604800in.npmrcRelated Issues
Why This Is Needed
The Problem
pnpm has a bug (#11982) where
minimumReleaseAgeincorrectly validates against the latest version on the registry instead of the pinned version inpackage.json.
Example:
turbo@2.9.14(released 15 days ago, meets 7-day requirement)turbo@2.9.16(latest, released 1 day ago)ERR_PNPM_NO_MATURE_MATCHING_VERSIONeven though our pinned version is old enoughThis affects:
The Bug Details
When Can We Re-enable?
Once pnpm issue #11982 is resolved and released, we can uncomment this line and restore the 7-day safety check.
Screenshots (if applicable)
N/A
Testing Instructions
pnpm i- should complete without minimum-release-age errorsChecklist
PR Manifesto
Review the PR Manifesto for best practises.