-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
fix(deps): bump html-proxy-middleware to latest version #2616
fix(deps): bump html-proxy-middleware to latest version #2616
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2616 +/- ##
=======================================
Coverage 93.77% 93.77%
=======================================
Files 34 34
Lines 1333 1333
Branches 381 381
=======================================
Hits 1250 1250
Misses 81 81
Partials 2 2
Continue to review full report at Codecov.
|
I am not sure what should I do with commit message |
package.json
Outdated
@@ -45,7 +45,7 @@ | |||
"del": "^4.1.1", | |||
"express": "^4.17.1", | |||
"html-entities": "^1.3.1", | |||
"http-proxy-middleware": "0.19.1", | |||
"http-proxy-middleware": "1.0.4", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How you use require
changed in http-proxy-middleware version 1.0.0. Looks like you didn't update those statements.
https://github.com/chimurai/http-proxy-middleware/releases/tag/v1.0.0
v0.x.x with implicit require
const proxy = require('http-proxy-middleware');
v1.0.0 with explicit require
const { createProxyMiddleware } = require('http-proxy-middleware');
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wondering why this package's version is locked - does need to stay locked?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
probably, I changed locked version to the latest version and locked it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
alright, I removed version locking and fixed http-proxy-middleware
usage
Not sure what's wrong with tests and other stuff, but I ran tests, lints on my local machine several times and everything looks good. Also, I've tested webpack-dev-server locally with my app and everything looks good for me. |
Can't be merged for |
what should we do with |
@vtereshyn temporary you can don't audit dev dependencies |
@evilebottnawi I am not sure if security managers will like that way :) |
@evilebottnawi sorry, just wondering, which breaking changes are we talking about? I mean, I've checked this pull request with my application and everything looks good. But of course, you know better. thank you in advance |
I assume it's about Node.js version and the fact that http-proxy-middleware v1 supports Node v8 and higher while WDS v3 supports Node v6. |
@evilebottnawi thanks for the info! when can we expect v4 to be released? |
@lsiler-mdsol I am working on it, sorry can't provide ETA, because I am working only one, but I try to do it ASAP |
Just published Hopefully this'll ease the process to patch the current version of WDS without rushing to release [email protected] |
What do you think about releasing [email protected] now that there's a patch fix of |
i have submitted a PR with just patch of |
Done in v4, for v3 we can backport only #2665 |
This PR fixes an audit issue.
Also, in the scope of this pull request, I ran
npm audit fix
to resolve some audit issues. That's why lots of changes inpackage-lock.json