-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
npm audit
complains about a security vulnerability in hoek
#1502
Comments
@brodybits one of the contributors is looking now https://twitter.com/Fishrock123/status/1019798741707116549 Should be only a couple of days now. |
Thanks @Fishrock123 @Fluffy-Samurai, looking forward to the fix (badly needed to cleanup npm audit noise ref: npm/cli#20) |
Hey guys, really not trying to be a pain here, but is there any update or idea of when a fix will be available? Maybe I'm missing something or there's another way around this, but just thought I'd ask. Thanks! |
Fixed. 3.8.0 is out. |
nodejs/node-gyp#1502 was finally resolved by node-gyp 3.8.0. I've also added `npm audit` to travis so we get notified of these sorts of issues in the future.
nodejs/node-gyp#1502 was finally resolved by node-gyp 3.8.0. I've also added `npm audit` to travis so we get notified of these sorts of issues in the future.
…rability in hoek. * Updating dependencies. nodejs/node-gyp#1502 sass/node-sass#2355 https://gitlab.ilscipio.com/scipio-dev/dev/addons/angular-shop-dev/issues/1
Details:
I dug into this, and the reason why we're pulling in an old version of
hoek
is becausenode-gyp@3.7.0
depends onrequest@>=2.9.0 <2.82.0
(introduced in 7900122). I checked, andrequest@2.87.0
doesn't even depend onhawk
anymore, which completely removeshoek
from our dependencies.If
node-gyp
could upgrade the version ofrequest
that it depends on, I believe this whole problem would go away.Thanks!
The text was updated successfully, but these errors were encountered: