Upgrade yarn and harden settings - #9694
#9694Merged
Merged
Upgrade yarn and harden settings#9694
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the Yarn toolchain configuration across the repo’s JavaScript subprojects and adds a supply-chain safety setting (npmMinimalAgeGate) to Yarn configuration.
Changes:
- Bump declared Yarn version to
4.14.1inpackage.jsonfiles. - Update
yarnPathtoyarn-4.14.1.cjsfor the website projects. - Add
npmMinimalAgeGate: 10080(7 days) to Yarn config files.
Reviewed changes
Copilot reviewed 6 out of 10 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| website/package.json | Updates the declared Yarn version to 4.14.1. |
| website/.yarnrc.yml | Adds npmMinimalAgeGate, updates yarnPath, and removes prior Yarn cache/compression settings. |
| website-next/package.json | Updates the declared Yarn version to 4.14.1. |
| website-next/.yarnrc.yml | Adds npmMinimalAgeGate, updates yarnPath, and removes prior Yarn cache/compression settings. |
| src/Nitro/CommandLine/src/npm/chillicream-nitro/package.json | Updates the declared Yarn version to 4.14.1. |
| src/Nitro/CommandLine/src/npm/chillicream-nitro/.yarnrc.yml | Adds npmMinimalAgeGate for the Nitro npm package workspace. |
Comments suppressed due to low confidence (2)
website/.yarnrc.yml:4
- npmMinimalAgeGate is set to 10080 minutes (7 days). Be aware this will block installs of any npm packages published within the last 7 days; if the repo expects to consume newly published packages (e.g., during releases), consider a smaller gate or an environment-specific override to avoid unexpected install failures.
# 7 days (in minutes)
npmMinimalAgeGate: 10080
website-next/.yarnrc.yml:4
- npmMinimalAgeGate is set to 10080 minutes (7 days). Be aware this will block installs of any npm packages published within the last 7 days; if this project needs to adopt freshly released dependencies quickly, consider a smaller value or an override mechanism to prevent CI/dev installs from failing.
# 7 days (in minutes)
npmMinimalAgeGate: 10080
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This was referenced May 16, 2026
Closed
This was referenced May 23, 2026
This was referenced Jun 4, 2026
This was referenced Jun 16, 2026
This was referenced Jun 26, 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.
No description provided.