Add a 7-day pnpm minimumReleaseAge to match the Dependabot cooldown#8808
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
aee3b53 to
cac7dfb
Compare
etrepum
approved these changes
Jul 7, 2026
Holds back freshly-published registry versions for 7 days so lockfile entries stay ahead of the internal registry's quarantine window. Value is in minutes (7*24*60 = 10080); mirrors the existing 7-day Dependabot npm cooldown. First-party lexical / @lexical/* is excluded. Preventive gate on future resolutions; no lockfile churn.
cac7dfb to
6604f44
Compare
Merged
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
Companion to the 7-day Dependabot
cooldownalready in.github/dependabot.yml. The cooldown only delays Dependabot's own update PRs; it does nothing for fresh versions pulled in transitively via^range resolution on ordinary installs.minimumReleaseAgecloses that gap at the resolver level, keeping the lockfile ahead of the internal registry's quarantine window (and installable once Metaccio is enforced on laptops).What
minimumReleaseAge: 10080(7 days, in minutes) — the resolver never selects a version younger than the window, for direct or transitive deps.lexical/@lexical/*excluded (first-party, quarantine-exempt).Notes
minimumReleaseAgeonly affects future resolutions. This is a preventive gate.