-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
v4.2.4 Release Proposal #4336
v4.2.4 Release Proposal #4336
Commits on Dec 17, 2015
-
Dependency upgrades. PR-URL: #3686 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for a2ce384 - Browse repository at this point
Copy the full SHA a2ce384View commit details -
test: enhance fs-watch-recursive test
This patch - issues a TAP plugin parsable message on non darwin/windows boxes - uses `const` wherever applicable - moves the test to parallel PR-URL: #2599 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 542d05c - Browse repository at this point
Copy the full SHA 542d05cView commit details -
build: fix configuring with prebuilt libraries
Fix configure_library() to produce correct LDFLAGS when configuring with prebuilt 3rd-party libraries (libuv, openssl, etc) using `pkg-config' or `--shared-{LIBRARY}-includes=xxx --shared-{LIBRARY}-libpath=xxx'. PR-URL: #3135 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 22208b0 - Browse repository at this point
Copy the full SHA 22208b0View commit details -
docs: fs - change links to buffer encoding to Buffer class anchor
PR-URL: #2796 Reviewed-By: Trevor Norris <trev.norris@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for fa1ab49 - Browse repository at this point
Copy the full SHA fa1ab49View commit details -
doc: stdout/stderr can block when directed to file
Update the documentation for `process.stdout` and `process.stdout` to clarify that writes can block when stdio is redirected to a file. In all other cases, it's non-blocking. PR-URL: #3170 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for f50f19e - Browse repository at this point
Copy the full SHA f50f19eView commit details -
doc: add method links in events.markdown
Added referenced method links. PR-URL: #3187 Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 12cdf6f - Browse repository at this point
Copy the full SHA 12cdf6fView commit details -
repl: To exit, press ^C again or type .exit.
When the user hits `^C` in the REPL show more info about `.exit`. The idea was to give more info to the user when they hit ^C. Current version just displays `(^C again to quit)` and most of the users are not aware of the `.exit` command that would Exit the repl. PR-URL: #3368 Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 329e88e - Browse repository at this point
Copy the full SHA 329e88eView commit details -
doc: add caveats of algs and key size in crypto
Add description of user responsibility in the choice of cypto algorithms and its key length. Some of recommendations for the safer use are also described. PR-URL: #3479 Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for d1b5833 - Browse repository at this point
Copy the full SHA d1b5833View commit details -
src: Revert "nix stdin _readableState.reading"
This reverts 8cee8f5 which was causing stdin to behave strangely on Windows 8 and 10. The suspected explanation for the issue is that there might be a race condition occuring when stdin._readableState.reading is set indirectly through `push('')`. PR-URL: #3490 Fixes: #2996 Fixes: #2504 Reviewed-By: Trevor Norris <trev.norris@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
Configuration menu - View commit details
-
Copy full SHA for 9b05905 - Browse repository at this point
Copy the full SHA 9b05905View commit details -
doc: add note about timeout delay > TIMEOUT_MAX
When setTimeout() and setInterval() are called with `delay` greater than TIMEOUT_MAX (2147483647), the supplied value is ignored and 1 is used instead. Add a note about this in the timers docs. PR-URL: #3512 Reviewed-By: Trevor Norris <trev.norris@gmai.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for a2efe4c - Browse repository at this point
Copy the full SHA a2efe4cView commit details -
doc:fix function param order in assert doc
PR-URL: #3533 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for cf4b65c - Browse repository at this point
Copy the full SHA cf4b65cView commit details -
zlib: pass kind to recursive calls to flush
Bug spotted by @bnoordhuis while doing code review on #3534 Refs: #3534 (comment) PR-URL: #3534 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 4733a60 - Browse repository at this point
Copy the full SHA 4733a60View commit details -
zlib: only apply drain listener if given callback
When stream.flush() is called without a callback, an empty listener is being added. Since flush may be called multiple times to push SSE's down to the client, multiple noop listeners are being added. This in turn causes the memory leak detected message. PR-URL: #3534 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 47bb94a - Browse repository at this point
Copy the full SHA 47bb94aView commit details -
test: add test-zlib-flush-drain
This test assures that if flush is called while the zlib object needs to be drained that it will defer the callback until after the drain. PR-URL: #3534 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 3aecbc8 - Browse repository at this point
Copy the full SHA 3aecbc8View commit details -
doc: added what buf.copy returns
as of https://github.com/nodejs/node/blob/v5.x/src/node_buffer.cc#L555 buf.copy returns the number of bytes copied. PR-URL: #3555 Reviewed-By: Trevor Norris <trev.norris@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 8a7dd73 - Browse repository at this point
Copy the full SHA 8a7dd73View commit details -
Add missing va_end before return
PR-URL: #3565 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 907a13a - Browse repository at this point
Copy the full SHA 907a13aView commit details -
doc: made code spans more visible in the API docs
This makes the code spans in the API docs more visible and therefore readable by adding some background color. PR-URL: #3573 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
Configuration menu - View commit details
-
Copy full SHA for 6db4392 - Browse repository at this point
Copy the full SHA 6db4392View commit details -
module: remove unnecessary JSON.stringify
`debuglog` uses `%j` as a placeholder for replacement with `JSON.stringify`. So that `JSON.stringify` is only called when the appropriate debug flag is on. The other `%s` changes are for style consistency. PR-URL: #3578 Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for d80fa2c - Browse repository at this point
Copy the full SHA d80fa2cView commit details -
doc: Updated streams simplified constructor API
The examples for implementing the simplified constructor API was missing some details on its correct usages. PR-URL: #3602 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chris Dickinson <chris@neversaw.us>
Configuration menu - View commit details
-
Copy full SHA for 11d2050 - Browse repository at this point
Copy the full SHA 11d2050View commit details -
test: fix path to module for repl test on Windows
Use path join to construct the path instead of concatenating strings. Replace backslash with double backslash so that they are escaped correctly in the string passed to REPL. PR-URL: #3608 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 0e8eb66 - Browse repository at this point
Copy the full SHA 0e8eb66View commit details -
doc: fix crypto spkac function descriptions
Fix regarding description of the following functions: Certificate.exportPublicKey(spkac) Certificate.exportChallenge(spkac) The descriptions were applied incorrectly. PR-URL: #3614 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Configuration menu - View commit details
-
Copy full SHA for 347fb65 - Browse repository at this point
Copy the full SHA 347fb65View commit details -
Configuration menu - View commit details
-
Copy full SHA for ff02b29 - Browse repository at this point
Copy the full SHA ff02b29View commit details -
Configuration menu - View commit details
-
Copy full SHA for 83494f8 - Browse repository at this point
Copy the full SHA 83494f8View commit details -
doc: fix wrong date and known issue in changelog.md
* A known issue was resolved but not removed from the list * The wrong date was documented in the changelog for v4.2.2 PR-URL: #3650 Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for eca5720 - Browse repository at this point
Copy the full SHA eca5720View commit details -
test: fix test-net-persistent-keepalive for AIX
Fixed an intermittent issue on AIX where the 600ms timeout was reached before the 'connection' event was fired. This resulted in a failure as serverConnection would be undefined and the assert.equal would throw an error. Changed the flow of the test so that the timeout is only set after a connection has been made. PR-URL: #3646 Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 3dc52e9 - Browse repository at this point
Copy the full SHA 3dc52e9View commit details -
Minor typo fix in the list of keys Reviewed-By: James M Snell <jasnell@gmail.com> PR-URL: #3649
Configuration menu - View commit details
-
Copy full SHA for daa10a3 - Browse repository at this point
Copy the full SHA daa10a3View commit details -
test: fix test-module-loading-error for musl
When a compiled library file does not have the proper format, musl returns the error message ENOEXEC as 'Exec format error' but glibc returns 'file too short' if the file is under a certain size. Reference: http://git.musl-libc.org/cgit/musl/tree/src/errno/__strerror.h#n46 This patch consists of tolerating musl's error. PR-URL: #3657 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Configuration menu - View commit details
-
Copy full SHA for 7b4194a - Browse repository at this point
Copy the full SHA 7b4194aView commit details -
doc: add LTS info to COLLABORATOR_GUIDE.md
There is currently no information in the Collaborators guide regarding LTS. This commit adds some basic copy explaining what LTS is, what is considered for LTS, and a simple way collaborators can help. Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Steven R. Loomis <srloomis@us.ibm.com> PR-URL: #3442
Configuration menu - View commit details
-
Copy full SHA for fe3ae3c - Browse repository at this point
Copy the full SHA fe3ae3cView commit details -
doc: update lts description in the collaborator guide
PR-URL: #3668 Reviewed-By: Julien Gilli <jgilli@fastmail.fm>
Configuration menu - View commit details
-
Copy full SHA for 488e74f - Browse repository at this point
Copy the full SHA 488e74fView commit details -
test: Fix test-cluster-worker-exit.js for AIX
test fails intermittently due to the assertion that the 'disconnect' event should come before the 'exit' event. This is caused be the non-deteministic behaviour of pollset_poll[1] on AIX (see deps/uv/src/unix/aix.c). This API makes no garauntee for the order in which file descriptors are returned. On linux epoll_wait[2] is used, which also does not make a garauntee on order of file descriptors returned. In the failing case we recieve our file descriptor with a callback of uv__signal_event (which causes JavaScript to receive the exit event) before our file descriptor with uv__stream_io as its callback (which in turn causes JavaScript receive the disconnect event). This change simply removes the assertion that the disconnect event happens before exit event and processes the test regardless of which event comes first. [1] https://www-01.ibm.com/support/knowledgecenter/ssw_aix_71/com.ibm.ai x.basetrf1/pollset.htm [2] http://linux.die.net/man/2/epoll_pwait PR-URL: #3666 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for da189f7 - Browse repository at this point
Copy the full SHA da189f7View commit details -
util: use regexp instead of str.replace().join()
PR-URL: #3689 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for a558a57 - Browse repository at this point
Copy the full SHA a558a57View commit details -
dns: prevent undefined values in results
When getaddrinfo linked-list results contain entries other than AF_INET and AF_INET6, the resulting v8::Array will contain undefined values. That's because initialization of v8::Array pre-allocates entries for all linked-list nodes, but not all of them will be in the final results. This commit ensures that the array only contains valid results. PR-URL: #3696 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Configuration menu - View commit details
-
Copy full SHA for b140cb2 - Browse repository at this point
Copy the full SHA b140cb2View commit details -
test: use really invalid hostname
On my slow Ubuntu 14.04 machine, this fails to resolve the host name used (`no.way.you.will.resolve.this`) and it times out in local testing. This patch uses an invalid name (`...`) and does stricter validation of the error returned. PR-URL: #3711 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 4e5cae4 - Browse repository at this point
Copy the full SHA 4e5cae4View commit details -
Configuration menu - View commit details
-
Copy full SHA for f5c5e8b - Browse repository at this point
Copy the full SHA f5c5e8bView commit details -
doc: add thealphanerd to collaborators
PR-URL: #3723 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5232512 - Browse repository at this point
Copy the full SHA 5232512View commit details -
doc: add saghul as a collaborator
PR_URL: #3724 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Myles Borins <mborins@us.ibm.com>
Configuration menu - View commit details
-
Copy full SHA for 4f7c638 - Browse repository at this point
Copy the full SHA 4f7c638View commit details -
doc: add romankl to collaborators
PR-URL: #3725 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com> Reviewed-By: Myles Borins <mborins@us.ibm.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7b5e457 - Browse repository at this point
Copy the full SHA 7b5e457View commit details -
doc: add note to util.isBuffer
Since util.isBuffer is deprecated, we should be explicit that Buffer.isBuffer should be used instead. PR-URL: #3790 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 3c415bb - Browse repository at this point
Copy the full SHA 3c415bbView commit details -
crypto: Improve error checking and reporting
Added checks where necessary to prevent hard crashes and gave precedence to returning the OpenSSL error strings instead of generic error strings. PR-URL: #3753 Reviewed-By: Fedor Indutny <fedor@indutny.com> Reviewed-By: Shigeki Ohtsu <ohtsu@iij.ad.jp> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Configuration menu - View commit details
-
Copy full SHA for 00b77d9 - Browse repository at this point
Copy the full SHA 00b77d9View commit details -
doc: add note on tls connection meta data methods
PR-URL: #3746 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Configuration menu - View commit details
-
Copy full SHA for 1bbc3b3 - Browse repository at this point
Copy the full SHA 1bbc3b3View commit details -
doc: sort assert alphabetically
Reorders, with no contextual changes, the assert documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for f43a033 - Browse repository at this point
Copy the full SHA f43a033View commit details -
doc: sort buffer alphabetically
Reorders, with minimal contextual duplication, the buffer documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for af0bf1a - Browse repository at this point
Copy the full SHA af0bf1aView commit details -
doc: sort child_process alphabetically
Reorders, with no contextual changes, the child_process documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5e79dc4 - Browse repository at this point
Copy the full SHA 5e79dc4View commit details -
doc: sort cluster alphabetically
Reorders, with no contextual changes, the cluster documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 28935a1 - Browse repository at this point
Copy the full SHA 28935a1View commit details -
doc: sort console alphabetically
Reorders, with no contextual changes, the console documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 435ffb7 - Browse repository at this point
Copy the full SHA 435ffb7View commit details -
Reorders, with no contextual changes, the dns documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 0e6121d - Browse repository at this point
Copy the full SHA 0e6121dView commit details -
doc: sort crypto alphabetically
Reorders, with no contextual changes, the crypto documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 261e0f3 - Browse repository at this point
Copy the full SHA 261e0f3View commit details -
doc: sort dgram alphabetically
Reorders, with no contextual changes, the dgram documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for c39eabb - Browse repository at this point
Copy the full SHA c39eabbView commit details -
doc: sort errors alphabetically
Reorders, with no contextual changes, the errors documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 782cb7d - Browse repository at this point
Copy the full SHA 782cb7dView commit details -
doc: sort events alphabetically
Reorders, with minimal contextual duplication, the events documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5b310f8 - Browse repository at this point
Copy the full SHA 5b310f8View commit details -
Reorders, with no contextual changes, the fs documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 6cd06c1 - Browse repository at this point
Copy the full SHA 6cd06c1View commit details -
doc: sort globals alphabetically
Reorders, with no contextual changes, the globals documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 0906f9a - Browse repository at this point
Copy the full SHA 0906f9aView commit details -
Reorders, with no contextual changes, the os documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for daa6244 - Browse repository at this point
Copy the full SHA daa6244View commit details -
Reorders, with no contextual changes, the path documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 4d56960 - Browse repository at this point
Copy the full SHA 4d56960View commit details -
doc: sort punycode alphabetically
Reorders, with no contextual changes, the punycode documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for f37ff22 - Browse repository at this point
Copy the full SHA f37ff22View commit details -
doc: sort querystring alphabetically
Reorders, with no contextual changes, the querystring documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for ca41b55 - Browse repository at this point
Copy the full SHA ca41b55View commit details -
Reorders, with no contextual changes, the vm documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 363692f - Browse repository at this point
Copy the full SHA 363692fView commit details -
Reorders, with no contextual changes, the url documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 3c20687 - Browse repository at this point
Copy the full SHA 3c20687View commit details -
Reorders, with no contextual changes, the tty documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for af876dd - Browse repository at this point
Copy the full SHA af876ddView commit details -
doc: sort timers alphabetically
Reorders, with no contextual changes, the timers documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 3f3b9ed - Browse repository at this point
Copy the full SHA 3f3b9edView commit details -
doc: sort string_decoder alphabetically
Reorders, with no contextual changes, the string_decode documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 34b8d28 - Browse repository at this point
Copy the full SHA 34b8d28View commit details -
Reorders, with no contextual changes, the repl documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 660062b - Browse repository at this point
Copy the full SHA 660062bView commit details -
doc: sort readline alphabetically
Reorders, with no contextual changes, the readline documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 71722fe - Browse repository at this point
Copy the full SHA 71722feView commit details -
doc: sort modules alphabetically
Reorders, with no contextual changes, the modules documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for dedfb11 - Browse repository at this point
Copy the full SHA dedfb11View commit details -
Reorders, with no contextual changes, the http documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 3546eb4 - Browse repository at this point
Copy the full SHA 3546eb4View commit details -
doc: sort https alphabetically
Reorders, with no contextual changes, the https documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 48fc765 - Browse repository at this point
Copy the full SHA 48fc765View commit details -
Reorders, with no contextual changes, the util documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 9878034 - Browse repository at this point
Copy the full SHA 9878034View commit details -
Reorders, with some contextual changes, the zlib documentation alphabetically. - Put Convenience Methods children under the Convenience Methods header - Renamed Options to Class Options and put above the Class definitions PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 37033dc - Browse repository at this point
Copy the full SHA 37033dcView commit details -
doc: sort process alphabetically
Reorders, with no contextual changes, the process documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 6de8874 - Browse repository at this point
Copy the full SHA 6de8874View commit details -
Reorders, with minimal contextual duplication, the net documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for e98e8af - Browse repository at this point
Copy the full SHA e98e8afView commit details -
doc: sort stream alphabetically
Reorders, with no contextual changes, the stream documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 39fa9fa - Browse repository at this point
Copy the full SHA 39fa9faView commit details -
Reorders, with no contextual changes, the tls documentation alphabetically. PR-URL: #3662 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 90fdb4f - Browse repository at this point
Copy the full SHA 90fdb4fView commit details -
doc: add link to [customizing util.inspect colors].
PR-URL: #3749 Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 29f26b8 - Browse repository at this point
Copy the full SHA 29f26b8View commit details -
doc: document release types in readme
PR-URL: #3482 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 15fb029 - Browse repository at this point
Copy the full SHA 15fb029View commit details -
doc: repl: add defineComand and displayPrompt
Also some minor edits so the additions make sense. PR-URL: #3765 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for eab0d56 - Browse repository at this point
Copy the full SHA eab0d56View commit details -
test: fix flaky test test-http-pipeline-flood
PR-URL: #3636 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Configuration menu - View commit details
-
Copy full SHA for 6c23f67 - Browse repository at this point
Copy the full SHA 6c23f67View commit details -
test: refactor test-http-pipeline-flood
This extends fixes for test-https-pipeline-flood to hopefully fully eliminate its flakiness on Windows in our continuous integration process. PR-URL: #3636 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Configuration menu - View commit details
-
Copy full SHA for 93d1d3c - Browse repository at this point
Copy the full SHA 93d1d3cView commit details -
docs: improve discoverability of Code of Conduct
- move CoC from CONTRIBUTING to top-level, separate COC file - add note/link in CONTRIBUTING - add note/link in README (both at top, and newcomer resources) - move CoC section in CONTRIBUTING to top of file PR-URL: #3774 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for b2cc130 - Browse repository at this point
Copy the full SHA b2cc130View commit details -
doc: replace head of readme with updated text
PR-URL: #3482 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for b22973a - Browse repository at this point
Copy the full SHA b22973aView commit details -
doc: clarify duplicate header handling
This commit documents how duplicate HTTP headers are handled. PR-URL: #3810 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
Configuration menu - View commit details
-
Copy full SHA for 6de77cd - Browse repository at this point
Copy the full SHA 6de77cdView commit details -
doc: reword message.headers to indicate they are not read-only
message.headers states that the headers are read-only, when in fact they are not. This change rewords the docs to a more appropriate description, while not promoting this kind of behavior. Fixes: #3146 PR-URL: #3814 Reviewed-By: Roman Klauke <romaaan.git@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for a36a5b6 - Browse repository at this point
Copy the full SHA a36a5b6View commit details -
doc: address use of profanity in code of conduct
PR-URL: #3827 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Julien Gilli <jgilli@fastmail.fm> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Alexis Campailla <alexis@janeasystems.com>
Configuration menu - View commit details
-
Copy full SHA for ffd3335 - Browse repository at this point
Copy the full SHA ffd3335View commit details -
doc: consistent reference-style links
Moved all the URLs in API docs to the bottom of the files as reference-style links. PR-URL: #3845 Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 6b172d9 - Browse repository at this point
Copy the full SHA 6b172d9View commit details -
Reorders, with no contextual changes, the repl documentation with class definitions at the top and alphabetically. PR-URL: #3859 Reviewed-By: Roman Klauke <romaaan.git@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for c31d472 - Browse repository at this point
Copy the full SHA c31d472View commit details -
deps: backport 819b40a from V8 upstream
Original commit message: Use baseline code to compute message locations. This switches Isolate::ComputeLocation to use baseline code when computing message locations. This unifies locations between optimized and non-optimized code by always going through the FrameSummary for location computation. R=bmeurer@chromium.org TEST=message/regress/regress-4266 BUG=v8:4266 LOG=n Review URL: https://codereview.chromium.org/1331603002 Cr-Commit-Position: refs/heads/master@{#30635} Fixes: #3934 PR-URL: #3938 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Configuration menu - View commit details
-
Copy full SHA for 9e1edea - Browse repository at this point
Copy the full SHA 9e1edeaView commit details -
doc: update WORKING_GROUPS.md to include Intl
* Intl was missing Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: James M Snell <jasnell@gmail.com> PR-URL: #3251
Configuration menu - View commit details
-
Copy full SHA for 8f0291b - Browse repository at this point
Copy the full SHA 8f0291bView commit details -
doc: Adding best practises for crypto.pbkdf2
Added some information around usages of how to use iterations, how to choose decent salts and updating the example to have a significant work factor and to use sha512. PR-URL: #3290 Reviewed-By: Fedor Indutny <fedor@indutny.com> Reviewed-By: Shigeki Ohtsu <ohtsu@iij.ad.jp>
Configuration menu - View commit details
-
Copy full SHA for 753c507 - Browse repository at this point
Copy the full SHA 753c507View commit details -
tls: remove util and calls to util.format
Currently util.format is being used for string templating in tls. By replacing all of the instances of util.format with backtick string we can remove the need to require util in tls all together. PR-URL: #3456 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Fedor Indutny <fedor@indutny.com>
Configuration menu - View commit details
-
Copy full SHA for c10c086 - Browse repository at this point
Copy the full SHA c10c086View commit details -
doc: clarify that fs streams expect blocking fd
This clarifies that fs.createReadStream and fs.createWriteStream, when passed a fd, expects the fd to be blocking, and suggests net.Socket as an alternative. PR-URL: #3641 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5207099 - Browse repository at this point
Copy the full SHA 5207099View commit details -
test: numeric flags to fs.open
This has been supperted for long but never tested nor documented. PR-URL: #3641 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 9a6c9fa - Browse repository at this point
Copy the full SHA 9a6c9faView commit details -
This has been supperted for long but never tested nor documented. PR-URL: #3641 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 4c382e7 - Browse repository at this point
Copy the full SHA 4c382e7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 236ad90 - Browse repository at this point
Copy the full SHA 236ad90View commit details -
cluster: remove handles when disconnecting worker
Due to the race window between the master's "disconnect" message and the worker's "handle received" message, connections sometimes got stuck in the pending handles queue when calling `worker.disconnect()` in the master process. The observable effect from the client's perspective was a TCP or HTTP connection that simply stalled. This commit fixes that by closing open handles in the master when the "disconnect" message is sent. Fixes: #3551 PR-URL: #3677 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Fedor Indutny <fedor@indutny.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for f28f69d - Browse repository at this point
Copy the full SHA f28f69dView commit details -
tls: Use SHA1 for sessionIdContext in FIPS mode
FIPS 140-2 disallows use of MD5, which is used to derive the default sessionIdContext for tls.createServer(). PR-URL: #3755 Reviewed-By: Fedor Indutny <fedor@indutny.com>
1Configuration menu - View commit details
-
Copy full SHA for 0eb0119 - Browse repository at this point
Copy the full SHA 0eb0119View commit details -
crypto: DSA parameter validation in FIPS mode
FIPS 180-4 requires specific (L,N) values. OpenSSL will crash if an invalid combination is used, so we must check the input sanity first. PR-URL: #3756 Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com> Reviewed-By: Shigeki Ohtsu <ohtsu@iij.ad.jp> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 2e9b886 - Browse repository at this point
Copy the full SHA 2e9b886View commit details -
test: add test for invalid DSA key size
Check that invalid DSA key sizes are rejected in FIPS mode. PR-URL: #3756 Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com> Reviewed-By: Shigeki Ohtsu <ohtsu@iij.ad.jp> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for f30214f - Browse repository at this point
Copy the full SHA f30214fView commit details -
test: add hasFipsCrypto to test/common.js
Utility function for tests to check if OpenSSL is using a FIPS verified cryptographic provider. PR-URL: #3756 Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com> Reviewed-By: Shigeki Ohtsu <ohtsu@iij.ad.jp> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7c5fbf7 - Browse repository at this point
Copy the full SHA 7c5fbf7View commit details -
test: increase crypto strength for FIPS standard
Use stronger crypto (larger keys, etc.) for arbitrary tests so they will pass in both FIPS and non-FIPS mode without altering the original intent of the test cases. PR-URL: #3758 Reviewed-By: Shigeki Ohtsu <ohtsu@iij.ad.jp> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 1f83eeb - Browse repository at this point
Copy the full SHA 1f83eebView commit details -
test: stronger crypto in test fixtures
Several test fixtures use use weak crypto (e.g. RC4 or MD5). Rgenerated the test fixtures to be compatible with FIPS mode. PR-URL: #3759 Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Shigeki Ohtsu <ohtsu@iij.ad.jp>
Configuration menu - View commit details
-
Copy full SHA for 3f9562b - Browse repository at this point
Copy the full SHA 3f9562bView commit details -
test: skip/replace weak crypto tests in FIPS mode
FIPS 140-2 does not permit the use of MD5 and RC4, skip or tests that use them, or substitute with stronger crypto where applicable. PR-URL: #3757 Reviewed-By: Fedor Indutny <fedor@indutny.com> Reviewed-By: James Snell <jasnell@gmail.com> Reviewed-By: Shigeki Ohtsu <ohtsu@iij.ad.jp>
Configuration menu - View commit details
-
Copy full SHA for 4a26f74 - Browse repository at this point
Copy the full SHA 4a26f74View commit details -
buffer: let WriteFloatGeneric silently drop values
Documentation currently states that setting noAssert and passing a value larger than can fit in the Buffer will cause data to be silently dropped. Change implementation to match documented behavior. Fixes: #3766 Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for db0186e - Browse repository at this point
Copy the full SHA db0186eView commit details -
child_process: add safety checks on stdio access
When a child process is spawned, there is no guarantee that stdout and stderr will be created successfully. This commit adds checks before attempting to access the streams. PR-URL: #3799 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 914caf9 - Browse repository at this point
Copy the full SHA 914caf9View commit details -
querystring: Parse multiple separator characters
Fix querystring.parse to handle multiple separator characters PR-URL: #3807 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 803a56d - Browse repository at this point
Copy the full SHA 803a56dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 60dda70 - Browse repository at this point
Copy the full SHA 60dda70View commit details -
test: run pipeline flood test in parallel
PR-URL: #3811 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 603a6f5 - Browse repository at this point
Copy the full SHA 603a6f5View commit details -
SmartOS has an issue where it will trigger ECONNREFUSED when it should not. See https://smartos.org/bugview/OS-2767. This change adds logic to test-net-server-max-connections.js to work around the issue. Fixes: #2663 PR-URL: #3830 Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 150f126 - Browse repository at this point
Copy the full SHA 150f126View commit details -
test: skip test if FreeBSD jail will break it
`test/internet/test-dgram-broadcast-multi-process.js` fails if it is in a FreeBSD jail. This issue is with the way FreeBSD jails work and not with Node. Skip the test if in a FreeBSD jail. PR-URL: #3839 Fixes: #2472 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Ben Noordhuis <ben@strongloop.com>
Configuration menu - View commit details
-
Copy full SHA for 9ea6bc1 - Browse repository at this point
Copy the full SHA 9ea6bc1View commit details -
Configuration menu - View commit details
-
Copy full SHA for fb8df8d - Browse repository at this point
Copy the full SHA fb8df8dView commit details -
module: cache regular expressions
None of these regular expressions will change, so there is no need to generate them every time in hot code paths. Provides a small performance improvement in module loading. (5-10%) PR-URL: #3869 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 971762a - Browse repository at this point
Copy the full SHA 971762aView commit details -
test: move test-specific function out of common
common.checkSpawnSyncRet is only used in one test. Move it out of common.js and into that test (test-child-process-spawnsync-input.js). PR-URL: #3871 Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for cca216a - Browse repository at this point
Copy the full SHA cca216aView commit details -
test: fix flaky test-child-process-spawnsync-input
Move portion of `test-child-process-spawnsync-input.js` (that has been flaky on CentOS in CI) to its own file. This allows us to more easily eliminate the cause of the flakiness without affecting other unrelated portions of the test. Fixes: #3863 PR-URL: #3889 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for b9d7378 - Browse repository at this point
Copy the full SHA b9d7378View commit details -
test: avoid test timeouts on rpi
Generating 1024-bit primes on rpi test machines sometimes causes timeouts. Avoid this situation by using 256-bit primes when not running in FIPS mode. PR-URL: #3902 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Ben Noordhuis <ben@strongloop.com>
Configuration menu - View commit details
-
Copy full SHA for dbc85a2 - Browse repository at this point
Copy the full SHA dbc85a2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4bc71e0 - Browse repository at this point
Copy the full SHA 4bc71e0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8eb28c3 - Browse repository at this point
Copy the full SHA 8eb28c3View commit details -
test: retry on smartos if ECONNREFUSED
SmartOS has a bug that causes unexpected ECONNREFUSED errors. See https://smartos.org/bugview/OS-2767 If ECONNREFUSED on SmartOS, retry the test one time. Fixes: #3864 Fixes: #2815 PR-URL: #3941 Reviewed-By: Fedor Indutny <fedor@indutny.com>
Configuration menu - View commit details
-
Copy full SHA for 5a27274 - Browse repository at this point
Copy the full SHA 5a27274View commit details -
PR-URL: #3944 Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Myles Borins <mborins@us.ibm.com>
Configuration menu - View commit details
-
Copy full SHA for bd82fb0 - Browse repository at this point
Copy the full SHA bd82fb0View commit details -
net: add local address/port for better errors
Adds localAddress and localPort to req so we have better error messages. Also fixes a case where ex is used before it is declared. PR-URL: #3946 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for aa85d62 - Browse repository at this point
Copy the full SHA aa85d62View commit details -
doc: fix rare case of misaligned columns
By using the same unit for the offset of the main column as used for the left column width, we ensure that browsers render the columns conistently. Ref: nodejs/help#32 PR-URL: #3948 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for c5be3c6 - Browse repository at this point
Copy the full SHA c5be3c6View commit details -
Configuration menu - View commit details
-
Copy full SHA for e66794f - Browse repository at this point
Copy the full SHA e66794fView commit details -
Configuration menu - View commit details
-
Copy full SHA for b2f1014 - Browse repository at this point
Copy the full SHA b2f1014View commit details -
doc: replace sane with reasonable
Removing ableist language because we don't need to make the comparison to people with mental health issues to get our point across. PR-URL: #3980 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 6ef3625 - Browse repository at this point
Copy the full SHA 6ef3625View commit details -
test: fix test-domain-exit-dispose-again
test-domain-exit-dispose-again had been written for node v0.10.x, and was using the fact that callbacks scheduled with `process.nextTick` wouldn't run if the domain attached to it was disposed. This is not longer the case, and as a result the test would not catch any regression: it would always pass. This change rewrites that test to check that the current domain is cleared properly when processing the rest of the timers list if a timer's callback throws an error. This makes the test fail without the original fix, and pass with the original fix, as expected. PR: #3990 PR-URL: #3990 Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for cc24f0e - Browse repository at this point
Copy the full SHA cc24f0eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 38ba152 - Browse repository at this point
Copy the full SHA 38ba152View commit details -
doc: message.header duplication correction
The old version of the text here was slightly incorrect, so it just defers the details to the section in which they're fully described. PR-URL: #3997 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com>
Configuration menu - View commit details
-
Copy full SHA for b48d5ec - Browse repository at this point
Copy the full SHA b48d5ecView commit details -
PR-URL: #4000 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for bebde48 - Browse repository at this point
Copy the full SHA bebde48View commit details -
Configuration menu - View commit details
-
Copy full SHA for abbd87b - Browse repository at this point
Copy the full SHA abbd87bView commit details -
doc: fix color of linked code blocks
Links nested in backticks were not visually distinguishable before, this fixes them. PR-URL: #4068 Reviewed-By: Roman Reiss <me@silverwind.io>
Configuration menu - View commit details
-
Copy full SHA for 44a2d8c - Browse repository at this point
Copy the full SHA 44a2d8cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6950155 - Browse repository at this point
Copy the full SHA 6950155View commit details -
Configuration menu - View commit details
-
Copy full SHA for 05b64c1 - Browse repository at this point
Copy the full SHA 05b64c1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4ea1a69 - Browse repository at this point
Copy the full SHA 4ea1a69View commit details -
deps: Updated node LICENSE file with new npm license
PR-URL: #4110 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 51ae8d1 - Browse repository at this point
Copy the full SHA 51ae8d1View commit details -
doc: clarify v4.2.3 notable items
* Include reference to CVE-2015-8027 * Fix "socket may no longer have a socket" reference * Expand on non-existent parser causing the error * Soften language for CVE-2015-3193 as impact may not be as great as expected * Clarify that CVE-2015-3194 affects TLS servers using _client certificate authentication_ * Include reference to CVE-2015-6764 * Remove links to nodejs/node-private in commits list PR-URL: #4155 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for da8d012 - Browse repository at this point
Copy the full SHA da8d012View commit details -
configure: respect CC_host in host arch detection
When cross compiling, GYP uses the variables CC_host and CXX_host to find the host compiler, if they are defined. This ensures that variable is used, if defined, when detecting the host architecture. Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> PR-URL: #4117
Configuration menu - View commit details
-
Copy full SHA for 1e1173f - Browse repository at this point
Copy the full SHA 1e1173fView commit details -
configure: use __ARM_ARCH to determine arm version
Before this change, configure used processor specific macro defines (like __ARM_ARCH_6M__) to detect the arm processor version. This changes configure to use __ARM_ARCH, that should be defined to the correct version. Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> PR-URL: #4123
Configuration menu - View commit details
-
Copy full SHA for 3094464 - Browse repository at this point
Copy the full SHA 3094464View commit details -
doc: fix the exception description
A value shouldn't be described as doing inherit from some class, more strictly, the value is an instance of the class `Error`. PR-URL: #3658 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Stephan Belanger <admin@stephenbelanger.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 3327415 - Browse repository at this point
Copy the full SHA 3327415View commit details -
test: add test for repl.defineCommand()
It also tests displayPrompt by checking for '> '. PR-URL: #3908 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Configuration menu - View commit details
-
Copy full SHA for 4e46e04 - Browse repository at this point
Copy the full SHA 4e46e04View commit details -
doc: update WORKING_GROUPS.md - add missing groups
Add Benchmarking and Post-Mortem workgroups as they were missing. Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <ben@strongloop.com> PR-URL: #3450
Configuration menu - View commit details
-
Copy full SHA for beee055 - Browse repository at this point
Copy the full SHA beee055View commit details -
Charter for the HTTP Working Group PR-URL: #3919 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Brian White <mscdex@mscdex.net>
Configuration menu - View commit details
-
Copy full SHA for f93d268 - Browse repository at this point
Copy the full SHA f93d268View commit details -
test: fix cluster-worker-isdead
Check if the worker 'isDead' instead of 'isConnected' as the 'disconnect' event is not guaranteed to be received before the 'exit' event. Remove the 'net' dependency as it is not used. PR-URL: #3954 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Minwoo Jung <jmwsoft@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 355edf5 - Browse repository at this point
Copy the full SHA 355edf5View commit details -
test: don't check the # of chunks in test-http-1.0
As it can happen that the HTTP response is received in more than one TCP chunk. PR-URL: #3961 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Fedor Indutny <fedor@indutny.com> Reviewed-By: Minwoo Jung <jmwsoft@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5f66d66 - Browse repository at this point
Copy the full SHA 5f66d66View commit details -
buffer: fix writeInt{B,L}E for some neg values
The algorithm used to convert negative values to hex generates incorrect values when the low byte(s) of the value are zero because a carried subtraction is applied prematurely. Fixes: #3992 PR-URL: #3994 Reviewed-By: Trevor Norris <trev.norris@gmail.com> Signed-off-by: Peter A. Bigot <pab@pabigot.com>
Configuration menu - View commit details
-
Copy full SHA for 7ffc017 - Browse repository at this point
Copy the full SHA 7ffc017View commit details -
test: fix cluster-disconnect-handles flakiness
Sometimes the test was timing out because the worker process remained stuck in the breakpoint and didn't exit. This could happen because the continue was sent before the breakpoint was set. If that's the case, with this change, a new continue command is sent so the worker process can end. PR-URL: #4009 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Configuration menu - View commit details
-
Copy full SHA for 541d0d2 - Browse repository at this point
Copy the full SHA 541d0d2View commit details -
build: update signtool description, add url
PR-URL: #4011 Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Alexis Campailla <orangemocha@nodejs.org>
Configuration menu - View commit details
-
Copy full SHA for 5c67408 - Browse repository at this point
Copy the full SHA 5c67408View commit details -
configure:
v8_use_snapshot
should betrue
`v8_use_snapshot` should be either `true` or `false`, not 1 or 0. PR-URL: #3962 Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
Configuration menu - View commit details
-
Copy full SHA for 629d5d1 - Browse repository at this point
Copy the full SHA 629d5d1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 957c1f2 - Browse repository at this point
Copy the full SHA 957c1f2View commit details -
test: refactor test-http-exit-delay
test-http-exit-delay was introduced to confirm the removal of a 1 second delay that can occur when exiting node after an http request. This change refactors the test for simplicity and also in the hopes of either eliminating flakiness on CI or, if not that, at least making the source of the flakiness easier to track down. Ref: 16b59cbc Fixes: #4045 PR-URL: #4055 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 43e3b69 - Browse repository at this point
Copy the full SHA 43e3b69View commit details -
doc: reword https.Agent example text
PR-URL: #4075 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for dcfdbac - Browse repository at this point
Copy the full SHA dcfdbacView commit details -
doc: fix internal link to child.send()
PR-URL: #4089 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 72f43a2 - Browse repository at this point
Copy the full SHA 72f43a2View commit details -
doc: standardize references to node.js in docs
trivial commit to fix a couple inconsistent references to the name of the project PR-URL: #4136 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Roman Klauke <romaaan.git@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
Configuration menu - View commit details
-
Copy full SHA for 8aafa2e - Browse repository at this point
Copy the full SHA 8aafa2eView commit details -
meta: remove use of profanity in source
The CoC requests to avoid the casual use of profanity. PR-URL: #4122 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Brian White <mscdex@mscdex.net>
Configuration menu - View commit details
-
Copy full SHA for 0311836 - Browse repository at this point
Copy the full SHA 0311836View commit details -
domains: fix handling of uncaught exceptions
Fix node exiting due to an exception being thrown rather than emitting an `'uncaughtException'` event on the process object when: 1. no error handler is set on the domain within which an error is thrown 2. an `'uncaughtException'` event listener is set on the process Also fix an issue where the process would not abort in the proper function call if an error is thrown within a domain with no error handler and `--abort-on-uncaught-exception` is used. Fixes #3607 and #3653. PR: #3884 PR-URL: #3884 Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 34e64e5 - Browse repository at this point
Copy the full SHA 34e64e5View commit details
Commits on Dec 21, 2015
-
PR-URL: #4110 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 51c9059 - Browse repository at this point
Copy the full SHA 51c9059View commit details -
2015-12-17, Version 4.2.4 "Argon" (LTS) Release
Maintenance Update Notable changes * Roughly 78% of the commits are documentation and test improvements * domains: - Fix handling of uncaught exceptions (Julien Gilli) [#3884](#3884) * deps: - Upgrade to npm 2.14.12 (Kat Marchán) [#4110](#4110) - Backport 819b40a from V8 upstream (Michaël Zasso) [#3938](#3938) - Updated node LICENSE file with new npm license (Kat Marchán) [#4110](#4110)
Configuration menu - View commit details
-
Copy full SHA for 6fe5a18 - Browse repository at this point
Copy the full SHA 6fe5a18View commit details