-
Notifications
You must be signed in to change notification settings - Fork 62
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
Avoid using deprecated Buffer constructor #25
Conversation
This raises the minimum Node.js version from 4.3.0 to 4.5.0, but that should be fine, as 4.5.0 was released very long ago and even the whole 4.x branch will be out of LTS support soon. Probably almost no one uses Node.js versions 4.3.x and 4.4.x nowdays. webpack/webpack states node": ">=6.11.5" requirement already. Refs: https://nodejs.org/api/deprecations.html#deprecations_dep0005_buffer_constructor webpack/webpack#6356
Tracking: nodejs/node#19079 |
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.
Thanks!
Travis apparently fails because it tests on Node.js 4.0 and 5.0, instead of 4.x (or 4.5) and 5.x (or 5.10). |
/cc @TheLarkInn |
Any updates? |
@ooflorent @TheLarkInn @sokra This constantly bumps in my recent activitity feed due to @jsf-clabot updating the status several times per day. Could you please disable that? «jsf-clabot edited on 26 Mar (most recent)» is incorrect, the history is truncated and shows the first 100 entries out of 341 total atm — it gets bumped every day, several times per day. |
Let's try reopening this. |
Keeps happening, last time was 6 hours ago. |
Please merge this pr. |
Codecov Report
@@ Coverage Diff @@
## master #25 +/- ##
==========================================
+ Coverage 91.3% 91.37% +0.06%
==========================================
Files 2 2
Lines 253 255 +2
Branches 67 67
==========================================
+ Hits 231 233 +2
Misses 22 22
Continue to review full report at Codecov.
|
Thanks |
This raises the minimum Node.js version from 4.3.0 to 4.5.0, but that should be fine, as 4.5.0 was released very long ago and even the whole 4.x branch will be out of LTS support soon.
Probably almost no one uses Node.js versions 4.3.x and 4.4.x nowdays.
webpack/webpack states
"node": ">=6.11.5"
requirement already.Also this removes those
// eslint-disable-line
comments. 😉Lint failure is unrelated and happens because of the function named
async
, upon fixing that — tests pass locally.Refs:
https://nodejs.org/api/deprecations.html#deprecations_dep0005_buffer_constructor
webpack/webpack#6356