fix: move minimum-release-age to pnpm-workspace.yaml#1158
Merged
Conversation
1 task
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix prepared a fix for the issue found in the latest run.
- ✅ Fixed: minimumReleaseAge nested under invalid
settings:key- Moved minimumReleaseAge from under the invalid
settings:key to the root level of pnpm-workspace.yaml where pnpm expects it, restoring the 7-day supply chain protection.
- Moved minimumReleaseAge from under the invalid
Or push these changes by commenting:
@cursor push d5ed8d92fd
Preview (d5ed8d92fd)
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -1,6 +1,5 @@
-settings:
- # Wait 7 days (10080 minutes) before installing newly published packages.
- minimumReleaseAge: 10080
+# Wait 7 days (10080 minutes) before installing newly published packages.
+minimumReleaseAge: 10080
packages:
- packages/*You can send follow-ups to the cloud agent here.
Comment @cursor review or bugbot run to trigger another review on this PR
Reviewed by Cursor Bugbot for commit 1641357. Configure here.
kakarot0O
approved these changes
Apr 4, 2026
jdalton
added a commit
that referenced
this pull request
Apr 4, 2026
kakarot0O
approved these changes
Apr 4, 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.


Move pnpm's minimum-release-age from .npmrc to pnpm-workspace.yaml to avoid npm v11+ unknown config warning.
Note
Low Risk
Low risk config-only change that just relocates pnpm’s minimum-release-age setting to avoid npm v11+ warnings; behavior should remain equivalent (7-day delay) if tooling reads the new location as expected.
Overview
Moves pnpm’s minimum release age configuration out of
.npmrcintopnpm-workspace.yamlvia thesettings.minimumReleaseAgefield (10080 minutes), while keeping npm’smin-release-age=7(days) in.npmrc.This prevents npm v11+ from warning about pnpm-only config keys and preserves the intended 7-day delay before installing newly published packages.
Reviewed by Cursor Bugbot for commit 1641357. Configure here.