build(deps): refresh yarn.lock to clear brace-expansion & js-yaml advisories - #1220
Draft
cursor[bot] wants to merge 1 commit into
Draft
cursor[bot] wants to merge 1 commit into
cursor[bot] wants to merge 1 commit into
Conversation
…isories Bumps transitive dependencies via yarn.lock re-resolution (no manifest or resolutions changes required): - brace-expansion 2.1.1 -> 2.1.4 (via minimatch@5.1.9) clears GHSA-3jxr-9vmj-r5cp, GHSA-mh99-v99m-4gvg, GHSA-rgw5-rvv9-x895 - brace-expansion 5.0.6 -> 5.0.9 (via minimatch@10.2.5) clears GHSA-3jxr-9vmj-r5cp, GHSA-mh99-v99m-4gvg, GHSA-rgw5-rvv9-x895 - js-yaml 4.3.0 -> 4.3.2 (via eslint@8.57.1) clears GHSA-5p4m-2wfm-xmqj, GHSA-2883-xcg3-v3hh Verified with 'yarn npm audit --recursive --all' (no real CVEs remain) and 'yarn test' (141/141 passing). Co-authored-by: Andreja Kogovsek <andrejak@users.noreply.github.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
Refreshes transitive dependency resolutions in
yarn.lockto clear the outstanding Dependabot advisories against the root workspace. No manifest,resolutions, or direct-dep bumps required.Advisories cleared
brace-expansion(viaminimatch@5.1.9)brace-expansion(viaminimatch@10.2.5)js-yaml(viaeslint@8.57.1)All three packages are transitive dev-dep-only. The new patch versions already satisfy the existing
^2.0.1/^5.0.5/^4.1.0ranges, so refreshing the lockfile is sufficient — no manifest edits orresolutionsentries are needed (the repo already prefers to avoid new resolutions).How the diff was produced
brace-expansion@npm:^2.0.1,brace-expansion@npm:^5.0.5,js-yaml@npm:^4.1.0) so Yarn 4 would re-resolve their ranges against the registry.yarn install. Yarn re-resolved them to 2.1.4 / 5.0.9 / 4.3.2 respectively and rewrote the checksums.Verification
yarn npm audit --recursive --all --jsonfiltered to real CVEs reports no findings on the root workspace after the change (before: 8 findings across the three packages).yarn test— 141/141 passing.yarn lint— clean (only pre-existing spellcheck warnings).Related
examples/with-next/yarn.lock(Yarn 1 demo lockfile) is not touched: it's not consumed by publishing or CI, and regenerating a Yarn 1 lock from within a Yarn 4 workspace is more invasive than the demo warrants.