[MINOR] Bump zeppelin-react linkify-it and undici to clear high npm-audit advisories - #5278
Merged
Merged
Conversation
voidmatcha
force-pushed
the
react-npm-audit-high
branch
from
July 5, 2026 15:16
2a16ceb to
43ab72d
Compare
tbonelee
reviewed
Jul 6, 2026
…udit advisories Signed-off-by: YONGJAE LEE <dev.yongjaelee@gmail.com>
voidmatcha
force-pushed
the
react-npm-audit-high
branch
from
July 6, 2026 03:31
43ab72d to
8a500b7
Compare
tbonelee
approved these changes
Jul 6, 2026
Contributor
|
Merged into master |
This was referenced Jul 9, 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.
What is this PR for?
npm audit --audit-level=highfails on master, so every frontend PR's npm-audit job goes red. Two high-severity advisories in zeppelin-react's dependency tree:^5.0.2.^7.28.0, which stays within jsdom's^7.25.0and lets in-range security patches flow.Both use
overrides.npm audit fix --forcewas avoided because it downgrades ansi-to-react.The linkify-it 3 to 5 bump needs no source changes. No project code imports linkify-it, and its only consumer (ansi-to-react) calls
.tlds(),.pretest(), and.match(), which are unchanged from v3 through v5. The override deliberately crosses ansi-to-react's declared^3.0.3range, and can be revisited if ansi-to-react is updated.What type of PR is it?
Improvement
What is the Jira issue?
N/A
How should this be tested?
cd zeppelin-web-angular/projects/zeppelin-react && npm ci && npm audit --audit-level=highexits 0.npm run lint,npm test(vitest), andnpm run buildpass.Questions: