fix: bump axios to 1.15.0 to address CVE-2025-62718 and issue #103#106
Merged
Conversation
deacon-mp
approved these changes
Apr 13, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Bumps the frontend’s axios dependency to a newer version to address a reported supply-chain vulnerability impacting API communication.
Changes:
- Updated
axiosversion constraint inpackage.jsonto^1.15.0. - Regenerated
package-lock.jsonto lockaxios@1.15.0and updated transitive dependencies (follow-redirects,form-data,proxy-from-env).
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Raises the minimum axios version requirement to ^1.15.0. |
| package-lock.json | Updates the lockfile to install axios@1.15.0 and refreshes related dependency metadata. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Description
This PR bumps the
axiosdependency in the Magma frontend to version1.15.0to patch a recently disclosed supply chain vulnerability.Fixes #103
Motivation and Context
CVE-2025-62718 outlines a supply chain compromise affecting older versions of the
axiosHTTP client. Updating to1.15.0(or above) mitigates this vulnerability and secures the Magma plugin's API communication layer.Changes Made
npm install axios@^1.15.0.package.jsonto reflect the new minimum version requirement.package-lock.jsonto lock in the secure dependency tree and purge compromised hashes.How Has This Been Tested?
npm run build.$apiHTTP requests (login, data fetching) still execute flawlessly with the updated package.