-
Notifications
You must be signed in to change notification settings - Fork 757
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
High severity vulnerability (axios) #1831
Comments
What would the impact be of forcing the update of the Axios dependency from 0.19.0 to 0.21.1? |
I didn't notice any breaking changes in the release log but it is possible that some of the |
I guess I will have to live with that since: |
I ran into this problem too and couldn't get it resolved by updating axios or localtunnel, but what I ended up doing to solve it was updating nodejs to the latest stable release and then running Hopefully this method helps somebody...I'm still a little clueless when it comes to updating things from the git repositories so I usually end up going the full nodejs update route |
If you uninstall then re-install the current version of browser-sync, the localtunnel dependency should update and then the vulnerability will disappear. |
@thomas-gordon That worked for me. GitHub's automated security updates couldn't figure out how to make a PR for me since browser-sync's version didn't need to be updated. Uninstalling and re-installing browser-sync updated the localtunnel transitive dependency to 2.0.1 which updated the axios transitive dependency to 0.21.0, resolving the security issue. Because there's no need to do anything to browser-sync to resolve this now, this issue should be closed. |
Agreed, this can be closed. |
LGTM:
So marking this as resolved. |
To expand on @mattwelke's comment, the localtunnel dependency was upgraded from |
Adding
browser-sync
as a dependency results innpm audit
warning:Further details:
Steps to reproduce:
mkdir test && cd test
npm init
npm install -D browser-sync
npm audit
It looks like
localtunnel
already has a GH issue on this: localtunnel/localtunnel#377So I guess we need to wait for localtunnel to fix the issue and then bump dependency here?
Ps. in the past a similar issue has happened (#1695)
The text was updated successfully, but these errors were encountered: