chore: bump Yarn to 4.15.0 and harden install config#965
Merged
layershifter merged 3 commits intoMay 22, 2026
Merged
Conversation
- Bump Yarn from 4.3.1 to 4.15.0 (latest v4 stable) - Add enableScripts: false to skip dependency lifecycle scripts - Add npmMinimalAgeGate: "1d" to require packages be at least 1 day old Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
- Bumps lockfile cacheKey 8 -> 10 (required because `yarn install --immutable` in CI refuses to migrate the lockfile on its own). - Yarn 4.15 also auto-added `approvedGitRepositories: ["**"]` to .yarnrc.yml as part of its hardened-mode safelist for git deps; `["**"]` preserves existing behavior. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Yarn 4.15 auto-injected approvedGitRepositories: ["**"] during install, but the repo has no git: protocol deps. Removing keeps the hardened default (no arbitrary git URL installs allowed). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
📊 Bundle size report✅ No changes found |
mshoho
approved these changes
May 22, 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
enableScripts: falseso dependency lifecycle scripts (preinstall/install/postinstall) don't run during installs, reducing supply-chain attack surface from compromised packages.npmMinimalAgeGate: "1d"so packages must be at least 1 day old before they can be installed, providing a short cooldown against typosquatting and hijacked-release attacks.Test plan
yarn install, build, tests)🤖 Generated with Claude Code