chore(deps): pin fast-uri override for security advisory#91
Merged
Conversation
Adds pnpm.overrides for fast-uri to package.json (matching the advisory versions Dependabot's audit-fix was injecting into PR lockfiles). Without the override in package.json, regenerated lockfiles fail CI's frozen install with ERR_PNPM_LOCKFILE_CONFIG_MISMATCH. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
pnpm.overridesfor fast-uri topackage.json, matching the security advisory versions Dependabot's audit-fix was injecting into PR lockfiles.pnpm-lock.yamlso the declared overrides and locked overrides agree.Why
Dependabot's recent group-update PRs (e.g. #90) include a
(via audit fix)step that addsfast-uri@<=3.1.0: '>=3.1.1'andfast-uri@<=3.1.1: '>=3.1.2'to the lockfile. Those overrides weren't declared inpackage.jsononmain, so pnpm 10's frozen-lockfile install fails withERR_PNPM_LOCKFILE_CONFIG_MISMATCH. Declaring the overrides here applies the security patch repo-wide and unblocks any future PR that touches the lockfile.Test plan
pnpm installregeneratespnpm-lock.yamlwith the matchingoverrides:blockpnpm install --frozen-lockfilepasses locally (no mismatch)Check Markdown LinksandNode.js 20 Compatibilityshould both go green🤖 Generated with Claude Code