fix: resolve high-severity Dependabot alerts#1021
Open
sarayev wants to merge 3 commits into
Open
Conversation
adrianjoshua-strutt
previously approved these changes
Apr 14, 2026
Simone319
reviewed
Apr 14, 2026
Comment on lines
+158
to
+159
| "picomatch": "^2.3.2", | ||
| "basic-ftp": ">=5.2.2" |
There was a problem hiding this comment.
Having these overrides could still result in these packages being brought into consumer repo, because the override only take effects for this repo not in the consumer repo. We should avoid adding override, instead update the direct dependencies that brought into these vulnerable package versions if possible.
Contributor
Author
There was a problem hiding this comment.
The direct dependencies do not have a version that fixes those vulnerabilities. In addition, most of these updated dependencies are dev dependencies, anyways.
Fixes the following Dependabot HIGH severity alerts: - #175: lodash Code Injection via _.template (bumped to ^4.18.0) - #170: lodash-es Code Injection via _.template (added resolution ^4.18.0) - #177: basic-ftp CRLF Injection (added resolution >=5.2.2) - #172: basic-ftp FTP Command Injection via CRLF (added resolution >=5.2.2) - #152: picomatch ReDoS via extglob quantifiers (added resolution ^2.3.2) Also fixes additional HIGH vulnerabilities from yarn audit: - tar: Symlink Path Traversal (bumped to ^7.5.11) - fast-xml-parser v4: Entity Expansion bypass (bumped to ^4.5.5) - fast-xml-parser v5: Entity Expansion bypass (bumped to 5.5.12) Resolved versions: - lodash: 4.17.23 -> 4.18.1 - lodash-es: 4.17.23 -> 4.18.1 - picomatch: 2.3.1 -> 2.3.2 - basic-ftp: 5.2.0 -> 5.2.2 - tar: 7.5.8 -> 7.5.13 - fast-xml-parser (v4): 4.4.1 -> 4.5.6 - fast-xml-parser (v5): 5.3.8 -> 5.5.12
78f4726 to
265467b
Compare
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
Fixes 6 high-severity Dependabot alerts by adding/updating yarn resolutions:
No conflicts with PR #1019 (critical fixes) or PR #1020 (e2e/cleanup fixes).
Validation