Skip to content
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

Closed
wants to merge 153 commits into from
Closed

v4.2.4 Release Proposal #4336

wants to merge 153 commits into from

Commits on Dec 17, 2015

  1. deps: upgrade npm to 2.14.9

    Dependency upgrades.
    
    PR-URL: #3686
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    othiym23 authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    a2ce384 View commit details
    Browse the repository at this point in the history
  2. 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>
    thefourtheye authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    542d05c View commit details
    Browse the repository at this point in the history
  3. 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>
    zyxar authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    22208b0 View commit details
    Browse the repository at this point in the history
  4. 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>
    fansworld-claudio authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    fa1ab49 View commit details
    Browse the repository at this point in the history
  5. 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>
    bnoordhuis authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    f50f19e View commit details
    Browse the repository at this point in the history
  6. 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>
    a0viedo authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    12cdf6f View commit details
    Browse the repository at this point in the history
  7. 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>
    hemanth authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    329e88e View commit details
    Browse the repository at this point in the history
  8. 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>
    Shigeki Ohtsu authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    d1b5833 View commit details
    Browse the repository at this point in the history
  9. 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>
    silverwind authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    9b05905 View commit details
    Browse the repository at this point in the history
  10. 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>
    sitegui authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    a2efe4c View commit details
    Browse the repository at this point in the history
  11. 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>
    birnam authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    cf4b65c View commit details
    Browse the repository at this point in the history
  12. 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>
    Myles Borins authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    4733a60 View commit details
    Browse the repository at this point in the history
  13. 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>
    CraigCav authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    47bb94a View commit details
    Browse the repository at this point in the history
  14. 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>
    Myles Borins authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    3aecbc8 View commit details
    Browse the repository at this point in the history
  15. 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>
    baslr authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    8a7dd73 View commit details
    Browse the repository at this point in the history
  16. Add missing va_end before return

    PR-URL: #3565
    Reviewed-By: Brian White <mscdex@mscdex.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    usta authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    907a13a View commit details
    Browse the repository at this point in the history
  17. 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>
    phillipj authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    6db4392 View commit details
    Browse the repository at this point in the history
  18. 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>
    zertosh authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    d80fa2c View commit details
    Browse the repository at this point in the history
  19. 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>
    tomgco authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    11d2050 View commit details
    Browse the repository at this point in the history
  20. 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>
    mcornac authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    0e8eb66 View commit details
    Browse the repository at this point in the history
  21. 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>
    jas- authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    347fb65 View commit details
    Browse the repository at this point in the history
  22. repl: don't crash if cannot open history file

    Previously, if we are unable to open the history file, an error would
    be thrown. Now, print an error message that we could not open
    the history file, but don't fail.
    
    Fixes: #3610
    PR-URL: #3630
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    evanlucas authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    ff02b29 View commit details
    Browse the repository at this point in the history
  23. doc: rename iojs-* groups to nodejs-*

    As per #2525 a bunch of WGs are renamed from iojs-* to nodejs-*.
    Update the WORKING_GROUPS.md to match.
    
    Note specifically iojs-cn and iojs-tw were renamed to nodejs-zh-CN and
    nodejs-zh-TW respectively.
    
    Fixes: #3247
    PR-URL: #3634
    Reviewed-By: James M Snell <jasnell@gmail.com>
    srl295 authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    83494f8 View commit details
    Browse the repository at this point in the history
  24. 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>
    jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    eca5720 View commit details
    Browse the repository at this point in the history
  25. 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>
    Imran Iqbal authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    3dc52e9 View commit details
    Browse the repository at this point in the history
  26. doc: typo fix in readme.md

    Minor typo fix in the list of keys
    
    Reviewed-By: James M Snell <jasnell@gmail.com>
    PR-URL: #3649
    SPGB authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    daa10a3 View commit details
    Browse the repository at this point in the history
  27. 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>
    hmalphettes authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    7b4194a View commit details
    Browse the repository at this point in the history
  28. 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
    Myles Borins authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    fe3ae3c View commit details
    Browse the repository at this point in the history
  29. doc: update lts description in the collaborator guide

    PR-URL: #3668
    Reviewed-By: Julien Gilli <jgilli@fastmail.fm>
    jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    488e74f View commit details
    Browse the repository at this point in the history
  30. 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>
    Imran Iqbal authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    da189f7 View commit details
    Browse the repository at this point in the history
  31. 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>
    hellopao authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    a558a57 View commit details
    Browse the repository at this point in the history
  32. 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>
    Junliang Yan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    b140cb2 View commit details
    Browse the repository at this point in the history
  33. 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>
    thefourtheye authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    4e5cae4 View commit details
    Browse the repository at this point in the history
  34. cluster: send suicide message on disconnect

    This commit causes Worker.prototype.disconnect() to send a
    suicide message to the cluster master. The function is also
    restructured to eliminate redundant code.
    
    Fixes: #3238
    PR-URL: #3720
    Reviewed-By: James M Snell <jasnell@gmail.com>
    cjihrig authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    f5c5e8b View commit details
    Browse the repository at this point in the history
  35. 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>
    Myles Borins authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    5232512 View commit details
    Browse the repository at this point in the history
  36. 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>
    saghul authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    4f7c638 View commit details
    Browse the repository at this point in the history
  37. 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>
    r-52 authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    7b5e457 View commit details
    Browse the repository at this point in the history
  38. 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>
    evanlucas authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    3c415bb View commit details
    Browse the repository at this point in the history
  39. 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>
    stefanmb authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    00b77d9 View commit details
    Browse the repository at this point in the history
  40. doc: add note on tls connection meta data methods

    PR-URL: #3746
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    DaftMonk authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    1bbc3b3 View commit details
    Browse the repository at this point in the history
  41. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    f43a033 View commit details
    Browse the repository at this point in the history
  42. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    af0bf1a View commit details
    Browse the repository at this point in the history
  43. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    5e79dc4 View commit details
    Browse the repository at this point in the history
  44. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    28935a1 View commit details
    Browse the repository at this point in the history
  45. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    435ffb7 View commit details
    Browse the repository at this point in the history
  46. doc: sort dns alphabetically

    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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    0e6121d View commit details
    Browse the repository at this point in the history
  47. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    261e0f3 View commit details
    Browse the repository at this point in the history
  48. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    c39eabb View commit details
    Browse the repository at this point in the history
  49. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    782cb7d View commit details
    Browse the repository at this point in the history
  50. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    5b310f8 View commit details
    Browse the repository at this point in the history
  51. doc: sort fs alphabetically

    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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    6cd06c1 View commit details
    Browse the repository at this point in the history
  52. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    0906f9a View commit details
    Browse the repository at this point in the history
  53. doc: sort os alphabetically

    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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    daa6244 View commit details
    Browse the repository at this point in the history
  54. doc: sort path alphabetically

    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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    4d56960 View commit details
    Browse the repository at this point in the history
  55. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    f37ff22 View commit details
    Browse the repository at this point in the history
  56. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    ca41b55 View commit details
    Browse the repository at this point in the history
  57. doc: sort vm alphabetically

    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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    363692f View commit details
    Browse the repository at this point in the history
  58. doc: sort url alphabetically

    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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    3c20687 View commit details
    Browse the repository at this point in the history
  59. doc: sort tty alphabetically

    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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    af876dd View commit details
    Browse the repository at this point in the history
  60. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    3f3b9ed View commit details
    Browse the repository at this point in the history
  61. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    34b8d28 View commit details
    Browse the repository at this point in the history
  62. doc: sort repl alphabetically

    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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    660062b View commit details
    Browse the repository at this point in the history
  63. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    71722fe View commit details
    Browse the repository at this point in the history
  64. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    dedfb11 View commit details
    Browse the repository at this point in the history
  65. doc: sort http alphabetically

    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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    3546eb4 View commit details
    Browse the repository at this point in the history
  66. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    48fc765 View commit details
    Browse the repository at this point in the history
  67. doc: sort util alphabetically

    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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    9878034 View commit details
    Browse the repository at this point in the history
  68. doc: sort zlib alphabetically

    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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    37033dc View commit details
    Browse the repository at this point in the history
  69. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    6de8874 View commit details
    Browse the repository at this point in the history
  70. doc: sort net alphabetically

    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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    e98e8af View commit details
    Browse the repository at this point in the history
  71. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    39fa9fa View commit details
    Browse the repository at this point in the history
  72. doc: sort tls alphabetically

    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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    90fdb4f View commit details
    Browse the repository at this point in the history
  73. 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>
    jmm authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    29f26b8 View commit details
    Browse the repository at this point in the history
  74. doc: document release types in readme

    PR-URL: #3482
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    rvagg authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    15fb029 View commit details
    Browse the repository at this point in the history
  75. 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>
    bengl authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    eab0d56 View commit details
    Browse the repository at this point in the history
  76. test: fix flaky test test-http-pipeline-flood

    PR-URL: #3636
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    dnakamura authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    6c23f67 View commit details
    Browse the repository at this point in the history
  77. 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>
    Trott authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    93d1d3c View commit details
    Browse the repository at this point in the history
  78. 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>
    ashleygwilliams authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    b2cc130 View commit details
    Browse the repository at this point in the history
  79. 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>
    rvagg authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    b22973a View commit details
    Browse the repository at this point in the history
  80. 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>
    bengl authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    6de77cd View commit details
    Browse the repository at this point in the history
  81. 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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    a36a5b6 View commit details
    Browse the repository at this point in the history
  82. 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>
    jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    ffd3335 View commit details
    Browse the repository at this point in the history
  83. 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>
    bengl authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    6b172d9 View commit details
    Browse the repository at this point in the history
  84. doc: sort repl alphabetically

    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>
    tflanagan authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    c31d472 View commit details
    Browse the repository at this point in the history
  85. 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>
    targos authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    9e1edea View commit details
    Browse the repository at this point in the history
  86. 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
    srl295 authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    8f0291b View commit details
    Browse the repository at this point in the history
  87. 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>
    tomgco authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    753c507 View commit details
    Browse the repository at this point in the history
  88. 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>
    Myles Borins authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    c10c086 View commit details
    Browse the repository at this point in the history
  89. 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>
    XeCycle authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    5207099 View commit details
    Browse the repository at this point in the history
  90. 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>
    XeCycle authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    9a6c9fa View commit details
    Browse the repository at this point in the history
  91. doc: 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>
    XeCycle authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    4c382e7 View commit details
    Browse the repository at this point in the history
  92. child_process: don't fork bomb ourselves from -e

    Remove the `-e` argument from process.execArgv in child_process.fork()
    to keep `node -e 'require("child_process").fork("empty.js")'` from
    spawning itself recursively.
    
    Fixes: #3574
    PR-URL: #3575
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    bnoordhuis authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    236ad90 View commit details
    Browse the repository at this point in the history
  93. 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>
    bnoordhuis authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    f28f69d View commit details
    Browse the repository at this point in the history
  94. 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>
    stefanmb authored and jasnell committed Dec 17, 2015
    1 Configuration menu
    Copy the full SHA
    0eb0119 View commit details
    Browse the repository at this point in the history
  95. 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>
    stefanmb authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    2e9b886 View commit details
    Browse the repository at this point in the history
  96. 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>
    stefanmb authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    f30214f View commit details
    Browse the repository at this point in the history
  97. 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>
    stefanmb authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    7c5fbf7 View commit details
    Browse the repository at this point in the history
  98. 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>
    stefanmb authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    1f83eeb View commit details
    Browse the repository at this point in the history
  99. 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>
    stefanmb authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    3f9562b View commit details
    Browse the repository at this point in the history
  100. 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>
    stefanmb authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    4a26f74 View commit details
    Browse the repository at this point in the history
  101. 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>
    pmq20 authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    db0186e View commit details
    Browse the repository at this point in the history
  102. 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>
    cjihrig authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    914caf9 View commit details
    Browse the repository at this point in the history
  103. 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>
    yosuke-furukawa authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    803a56d View commit details
    Browse the repository at this point in the history
  104. build: fix --with-intl=system-icu for x-compile

    * add toolset stuff to icu-system.gyp
    * update docs
    
    Fixes: #3801
    PR-URL: #3808
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    srl295 authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    60dda70 View commit details
    Browse the repository at this point in the history
  105. 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>
    Trott authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    603a6f5 View commit details
    Browse the repository at this point in the history
  106. test: fix flaky SmartOS test

    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>
    Trott authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    150f126 View commit details
    Browse the repository at this point in the history
  107. 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>
    Trott authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    9ea6bc1 View commit details
    Browse the repository at this point in the history
  108. test: module loading error fix solaris #3798

    - refactor test to accept multiple error messages per platform
    - add new message to be found in Solaris 11.3 as per #3798
    
    PR-URL: #3855
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Evan Lucas <evanlucas@me.com>
    fansworld-claudio authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    fb8df8d View commit details
    Browse the repository at this point in the history
  109. 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>
    evanlucas authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    971762a View commit details
    Browse the repository at this point in the history
  110. 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>
    Trott authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    cca216a View commit details
    Browse the repository at this point in the history
  111. 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>
    Trott authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    b9d7378 View commit details
    Browse the repository at this point in the history
  112. 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>
    stefanmb authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    dbc85a2 View commit details
    Browse the repository at this point in the history
  113. doc: clarify module loading behavior

    The module loading system will not append node_modules to a
    path already ending in node_modules. This used to be documented,
    but it was lost.
    
    Fixes: #3873
    PR-URL: #3920
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
    cjihrig authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    4bc71e0 View commit details
    Browse the repository at this point in the history
  114. doc: add reference for buffer.inspect()

    This commit refers readers to util.inspect() for an explanation
    of buffer.inspect().
    
    Fixes: #3918
    PR-URL: #3921
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Brian White <mscdex@mscdex.net>
    cjihrig authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    8eb28c3 View commit details
    Browse the repository at this point in the history
  115. 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>
    Trott authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    5a27274 View commit details
    Browse the repository at this point in the history
  116. doc: fix broken references

    PR-URL: #3944
    Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
    Reviewed-By: Myles Borins <mborins@us.ibm.com>
    gromnitsky authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    bd82fb0 View commit details
    Browse the repository at this point in the history
  117. 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>
    jscissr authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    aa85d62 View commit details
    Browse the repository at this point in the history
  118. 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>
    silverwind authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    c5be3c6 View commit details
    Browse the repository at this point in the history
  119. test: address flaky test-http-client-timeout-event

    Use common.platformTimeout() to make test more reliable on Raspberry Pi.
    
    Fixes: #2555
    PR-URL: #3968
    
    Reviewed-By: Brendan Ashworth <brendan.ashworth@me.com>
    Reviewed-By: Roman Reiss <me@silverwind.io>
    Reviewed-By: Roman Klauke <romaaan.git@gmail.com>
    Trott authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    e66794f View commit details
    Browse the repository at this point in the history
  120. test: remove flaky status for cluster test

    The test did not fail after 9999 runs in continuous integration.
    
    Remove it's flaky status.
    
    Fixes: #2557
    PR-URL: #3975
    Reviewed-By: Rod Vagg <rod@vagg.org>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Roman Klauke <romaaan.git@gmail.com>
    Trott authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    b2f1014 View commit details
    Browse the repository at this point in the history
  121. 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>
    lewiscowper authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    6ef3625 View commit details
    Browse the repository at this point in the history
  122. 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>
    Julien Gilli authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    cc24f0e View commit details
    Browse the repository at this point in the history
  123. test: skip test if in FreeBSD jail

    Test test-net-socket-local-address is flaky in FreeBSD jail but robust
    otherwise.
    
    Fixes: #2475
    PR-URL: #3995
    Reviewed-By: Rod Vagg <rod@vagg.org>
    Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Trott authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    38ba152 View commit details
    Browse the repository at this point in the history
  124. 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>
    bengl authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    b48d5ec View commit details
    Browse the repository at this point in the history
  125. doc: fix typo in README

    PR-URL: #4000
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
    Trott authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    bebde48 View commit details
    Browse the repository at this point in the history
  126. test: mark fork regression test flaky on windows

    See #3635 for details and failure
    examples.
    
    Ref: #3635
    PR-URL: #4005
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Trott authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    abbd87b View commit details
    Browse the repository at this point in the history
  127. 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>
    jpersson authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    44a2d8c View commit details
    Browse the repository at this point in the history
  128. test: remove flaky designation from ls-no-sslv3

    This test was marked flaky after failing in CI on arm7-wheezy two months
    ago. It has not failed there since. This commit removes the flaky
    designation.
    
    Fixes: #2554
    PR-URL: #3620
    Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    Trott authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    6950155 View commit details
    Browse the repository at this point in the history
  129. test: mark cluster-net-send test flaky on windows

    See #3957 for details and examples
    failures.
    
    Ref: #3957
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    PR-URL: #4006
    Trott authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    05b64c1 View commit details
    Browse the repository at this point in the history
  130. test: mark test flaky on FreeBSD

    Mark test-net-socket-local-address flaky on FreeBSD. It times out with
    some frequency on CI.
    
    Ref: #2475
    PR-URL: #4016
    Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Trott authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    4ea1a69 View commit details
    Browse the repository at this point in the history
  131. 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>
    zkat authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    51ae8d1 View commit details
    Browse the repository at this point in the history
  132. 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>
    rvagg authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    da8d012 View commit details
    Browse the repository at this point in the history
  133. 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
    joaocgreis authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    1e1173f View commit details
    Browse the repository at this point in the history
  134. 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
    joaocgreis authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    3094464 View commit details
    Browse the repository at this point in the history
  135. 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>
    yorkie authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    3327415 View commit details
    Browse the repository at this point in the history
  136. 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>
    bengl authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    4e46e04 View commit details
    Browse the repository at this point in the history
  137. 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
    mhdawson authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    beee055 View commit details
    Browse the repository at this point in the history
  138. doc: add HTTP working group

    Charter for the HTTP Working Group
    
    PR-URL: #3919
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Brian White <mscdex@mscdex.net>
    jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    f93d268 View commit details
    Browse the repository at this point in the history
  139. 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>
    santigimeno authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    355edf5 View commit details
    Browse the repository at this point in the history
  140. 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>
    santigimeno authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    5f66d66 View commit details
    Browse the repository at this point in the history
  141. 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>
    pabigot authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    7ffc017 View commit details
    Browse the repository at this point in the history
  142. 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>
    santigimeno authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    541d0d2 View commit details
    Browse the repository at this point in the history
  143. build: update signtool description, add url

    PR-URL: #4011
    Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
    Reviewed-By: Alexis Campailla <orangemocha@nodejs.org>
    rvagg authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    5c67408 View commit details
    Browse the repository at this point in the history
  144. configure: v8_use_snapshot should be true

    `v8_use_snapshot` should be either `true` or `false`, not 1 or 0.
    
    PR-URL: #3962
    Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
    indutny authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    629d5d1 View commit details
    Browse the repository at this point in the history
  145. stream_wrap: error if stream has StringDecoder

    If `.setEncoding` was called on input stream - all emitted `data` will
    be `String`s instances, not `Buffer`s. This is unacceptable for
    `StreamWrap`, and should not lead to the crash.
    
    Fix: #3970
    PR-URL: #4031
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    indutny authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    957c1f2 View commit details
    Browse the repository at this point in the history
  146. 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>
    Trott authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    43e3b69 View commit details
    Browse the repository at this point in the history
  147. doc: reword https.Agent example text

    PR-URL: #4075
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Jan Krems authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    dcfdbac View commit details
    Browse the repository at this point in the history
  148. 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>
    lpinca authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    72f43a2 View commit details
    Browse the repository at this point in the history
  149. 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>
    scottsb authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    8aafa2e View commit details
    Browse the repository at this point in the history
  150. 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>
    Myles Borins authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    0311836 View commit details
    Browse the repository at this point in the history
  151. 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>
    Julien Gilli authored and jasnell committed Dec 17, 2015
    Configuration menu
    Copy the full SHA
    34e64e5 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2015

  1. deps: upgrade to npm 2.14.12

    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>
    zkat authored and jasnell committed Dec 21, 2015
    Configuration menu
    Copy the full SHA
    51c9059 View commit details
    Browse the repository at this point in the history
  2. 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)
    jasnell committed Dec 21, 2015
    Configuration menu
    Copy the full SHA
    6fe5a18 View commit details
    Browse the repository at this point in the history