ATLAS-5348: Atlas React UI: Upgrading frontend transitive dependencies - #703
Open
Brijesh619 wants to merge 2 commits into
Open
ATLAS-5348: Atlas React UI: Upgrading frontend transitive dependencies#703Brijesh619 wants to merge 2 commits into
Brijesh619 wants to merge 2 commits into
Conversation
Contributor
Author
Contributor
Author
Contributor
Author
Contributor
Author
We can currently solve 0 of the remaining 3 vulnerabilities without causing major issues for this PR. Here is exactly why we can't safely fix them right now: quill (1 vuln): There is simply no patched version published on npm yet for this specific advisory (GHSA-v3m3-f69x-jf25). We are physically unable to fix it until the package maintainers release a patch. |
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 changes were proposed in this pull request?
This PR resolves ATLAS-5348 by upgrading several outdated frontend transitive dependencies in the Atlas React UI (
/dashboard).Currently, running
npm auditon the React UI flags several outdated transitive dependencies. This patch safely updates thepackage-lock.jsonand adds manual overrides inpackage.jsonto bump these packages and resolve the following warnings:5.0.9)2.17.6)(Note: The
js-yaml: 4.3.0andminimatch: 9.0.7overrides were intentionally kept inpackage.jsonto prevent transitive downgrades and unexpected behavior changes in the test suite).Known / Unresolved Advisories (3 Remaining)
After applying these fixes,
npm auditreports 3 remaining vulnerabilities that cannot be safely remediated at this time without major breaking changes or waiting for upstream patches:6.30.4(the highest v6 version). The security patch is only available in7.18.2. Upgrading from v6 to v7 is a major breaking architectural change and is out of scope for this PR.8.5.25), but the audit may still flag issues depending on the strictness of the GHSA range until further patches are released.How was this patch tested?
npm auditlocally in the/dashboarddirectory to verify that the fixable security warnings have been successfully cleared.npm run buildandnpm run testto ensure the React UI bundles successfully and tests pass without any regressions from the bumped transitive dependencies.