chore(deps): refresh lockfiles to clear Dependabot security alerts#2744
Merged
Conversation
Regenerate root and example lockfiles so transitive dependencies resolve to their highest in-range (patched) versions, clearing Dependabot alerts for ws, minimatch (3/8/9/10.x), picomatch (2/4.x), node-forge, @xmldom/xmldom, flatted, js-yaml 4.x, @isaacs/brace-expansion and @babel/core. All are dev / example transitive dependencies; none are runtime dependencies of the published package (which ships only `lib`). js-yaml 3.x and uuid 7.x are not bumped: their parents pin a major below the patched release, so they can't be upgraded without breaking them.
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.
What
Regenerates the root and
examplelockfiles so transitive dependencies resolve to their highest in-range (patched) versions.Why
The repo had 31 open Dependabot alerts, all in dev / example transitive dependencies. None are runtime dependencies of the published package (which ships only
libwith: @expo/react-native-action-sheet, dayjs, lodash.isequal, react-native-zoom-reanimated) - so there is no consumer-facing exposure. This is hygiene to clear the alert badge.Cleared (in-range patches)
ws, minimatch (3/8/9/10.x), picomatch (2/4.x), node-forge, @xmldom/xmldom, flatted, js-yaml 4.x, @isaacs/brace-expansion, @babel/core.
Not fixed here (need a major bump a parent pins below)
js-yaml 3.14.2- a parent pins^3.13.1; patch is 4.2.0 (major).uuid 7.0.3- a parent pins^7.0.3; patch is 11.1.1 (major).These can't be upgraded without breaking their parents and will be dismissed (dev/example only, not shipped) or wait for the upstream parents to update.
Validation
Regenerated on top of latest
master; CI (lint, type-check, build, test on Node 22 & 24, incl. example install) gates this PR.