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

v6.12.1 proposal #17180

Merged
merged 264 commits into from
Dec 5, 2017
Merged

v6.12.1 proposal #17180

merged 264 commits into from
Dec 5, 2017
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Nov 14, 2017

  1. src: provide allocation + nullptr check shortcuts

    Provide shortcut `node::CheckedMalloc()` and friends that
    replace `node::Malloc()` + `CHECK_NE(·, nullptr);` combinations
    in a few places.
    
    Backport-PR-URL: #16587
    PR-URL: #8482
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com>
    addaleax authored and MylesBorins committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    6a0eb9f View commit details
    Browse the repository at this point in the history
  2. src: notify V8 for low memory when alloc fails

    Call `v8::Isolate::GetCurrent()->LowMemoryNotification()` when
    an allocation fails to give V8 a chance to clean up and return
    memory before retrying (and possibly giving up).
    
    Backport-PR-URL: #16587
    PR-URL: #8482
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com>
    addaleax authored and MylesBorins committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    e18df46 View commit details
    Browse the repository at this point in the history
  3. test: remove node-tap lookalike

    This commit removes the small node-tap lookalike from several
    of the streams2 tests. It's only used by six tests, and is
    inconsistent with all other tests.
    
    Backport-PR-URL: #17024
    PR-URL: #13707
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    cjihrig authored and MylesBorins committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    148a030 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2017

  1. crypto: warn if counter mode used in createCipher

    `crypto.createCipher()` sets the fixed IV derived from password and it
    leads to a security risk of nonce reuse when counter mode is used.
    A warning is emitted when CTR, GCM or CCM is used in
    `crypto.createCipher()` to notify users to avoid nonce reuse.
    
    Backport-PR-URL: #16583
    Fixes: #13801
    PR-URL: #13821
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    shigeki authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    7115079 View commit details
    Browse the repository at this point in the history
  2. crypto: fix error of createCipher in wrap mode

    EVP_CIPHER_CTX_FLAG_WRAP_ALLOW flag needs to be set in using wrap mode
    ciphers. In `crypto.createCipher()`, AES key wrap mode does not use a
    default IV defined in RFC3394 but a generated IV with
    `EVP_BytesToKey()` to be consistent API behaviors with other ciphers.
    
    The built-in AES wrap mode in OpenSSL is not supported in FIPS mode as
    http://openssl.6102.n7.nabble.com/AES-Key-Wrap-in-FIPS-Mode-td50238.html
    so its tests in FIPS mode are skipped.
    
    Backport-PR-URL: #16584
    Fixes: #15009
    PR-URL: #15037
    Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    shigeki authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    f2cafff View commit details
    Browse the repository at this point in the history
  3. src: turn key length exception into CHECK

    This exception can logically never happen because of the key stretching
    that takes place first.  Failure must therefore be a bug in Node.js and
    not in the executing script.
    
    Backport-PR-URL: #16585
    PR-URL: #15183
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    bnoordhuis authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    79171e0 View commit details
    Browse the repository at this point in the history
  4. src: whitelist v8 options with '_' or '-'

    V8 options allow either '_' or '-' to be used in options as a seperator,
    such as "--abort-on_uncaught-exception". Allow these case variations
    when used with NODE_OPTIONS.
    
    PR-URL: #14093
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    sam-github authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    f659e49 View commit details
    Browse the repository at this point in the history
  5. doc: fix emitKeypressEvents stream type

    PR-URL: #15399
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Oblosys authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    ff66d63 View commit details
    Browse the repository at this point in the history
  6. child_process: set shell to false in fork()

    This commit ensures that spawn()'s shell option is unconditionally
    set to false when fork() is called.
    
    Refs: #15299
    Fixes: #13983
    PR-URL: #15352
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Alex Gresnel authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    8813867 View commit details
    Browse the repository at this point in the history
  7. test: add test for fork() + shell

    This commit verifies that the child_process fork() method does
    not honor the shell option.
    
    Refs: #15299
    PR-URL: #15352
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    cjihrig authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    2c6aa17 View commit details
    Browse the repository at this point in the history
  8. src: add --pending-deprecation to NODE_OPTIONS

    PR-URL: #15494
    Fixes: #15484
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    tomc974 authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    75b1e30 View commit details
    Browse the repository at this point in the history
  9. doc: ctc -> tsc in onboarding extras

    PR-URL: #15621
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Khaidi Chu <i@2333.moe>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    bengl authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    23e9bba View commit details
    Browse the repository at this point in the history
  10. src: add help for NODE_PENDING_DEPRECATION env

    PR-URL: #15609
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    tomc974 authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    70f574e View commit details
    Browse the repository at this point in the history
  11. test: use fixtures.readKey in https-agent test

    PR-URL: #15913
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Greg-GB authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    e1c45ef View commit details
    Browse the repository at this point in the history
  12. test: update 'fixturesDir' refs in a test file

    This was a task from Code & Learn at NINA17.
    
    PR-URL: #15824
    Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    JamesMGreene authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    14aee78 View commit details
    Browse the repository at this point in the history
  13. test: replace fixturesDir with common.fixtures

    PR-URL: #15837
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    ParidelPooya authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    643a2c6 View commit details
    Browse the repository at this point in the history
  14. test: update fixturesDir to fixtures.readKey

    PR-URL: #16016
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    bnb authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    107acb1 View commit details
    Browse the repository at this point in the history
  15. test: replace fixturesDir with common.fixtures

    PR-URL: #16051
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    rachelnicole authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    8c5b51d View commit details
    Browse the repository at this point in the history
  16. test: replace common.fixturesDir with fixtures.

    Replaces the use of `common.fixturesDir` with the generic `fixtures`
    mechanism.
    
    PR-URL: #15802
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    codeviking authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    4005ed6 View commit details
    Browse the repository at this point in the history
  17. build: allow build with system python 3

    When the system python is python 3, configure now creates a directory
    with a symlink called 'python' to python2, uses it when it calls
    run_gyp, and puts it in config.mk so that it propagates to everything
    that make launches
    
    PR-URL: #16058
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Bryan English <bryan@bryanenglish.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    forivall authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    d4b3b63 View commit details
    Browse the repository at this point in the history
  18. build: use bin override if no python in PATH

    On systems with no "python" in the PATH, e.g. FreeBSD, we should always
    create a python symlink in get_bin_override().
    
    PR-URL: #16241
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    bradleythughes authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    ac1beb0 View commit details
    Browse the repository at this point in the history
  19. test: replace fixturesDir with fixtures.readKey

    PR-URL: #15948
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Thomas Schorn authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    544cbd7 View commit details
    Browse the repository at this point in the history
  20. test: replaced common.fixturesDir with readKey

    PR-URL: #15952
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    rhalldearn authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    909e587 View commit details
    Browse the repository at this point in the history
  21. test: use common.fixtures in checkServerIdentity

    PR-URL: #15951
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    forivall authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    48a55d1 View commit details
    Browse the repository at this point in the history
  22. test: replace fixturesDir in tls-env-bad-extra-ca

    PR-URL: #15813
    Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    aniwng authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    0f8b315 View commit details
    Browse the repository at this point in the history
  23. test: replaced common.fixturesDir with readKey

    PR-URL: #15933
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    letthewookieewin authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    000965d View commit details
    Browse the repository at this point in the history
  24. test: use common.fixtures module in test-preload

    PR-URL: #15975
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    lzcabrera authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    683c5fa View commit details
    Browse the repository at this point in the history
  25. test: replaced fixturesDir with common.fixtures

    PR-URL: #15971
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    jopann authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    05286b6 View commit details
    Browse the repository at this point in the history
  26. test: replace fixturesDir with fixtures module

    PR-URL: #15961
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    BinarySo1o authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    51d87e3 View commit details
    Browse the repository at this point in the history
  27. test: remove common.fixturesDir

    Replace `common.fixturesDir` with usage of the `common.fixtures` module
    
    PR-URL: #15950
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    delaguilaluis authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    25a5bf0 View commit details
    Browse the repository at this point in the history
  28. test: replace fixturesDir with fixtures

    PR-URL: #15949
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    mujz authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    be2b70b View commit details
    Browse the repository at this point in the history
  29. test: replace fixturesDir with fixtures module

    PR-URL: #15932
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Blackth0rn authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    33ea6de View commit details
    Browse the repository at this point in the history
  30. test: replaced fixturesDir with fixtures module

    PR-URL: #15927
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    mckalexee authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    e81fc8a View commit details
    Browse the repository at this point in the history
  31. test: use fixtures module instead of common

    PR-URL: #15925
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    wonk authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    71daa68 View commit details
    Browse the repository at this point in the history
  32. test: use common.fixtures in tls test

    PR-URL: #15965
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Ben Michel authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    e68ef29 View commit details
    Browse the repository at this point in the history
  33. test: replaced fixturesDir with fixtures module

    This was an assigned task at Node.js Interactive North America 2017.
    This replaced the fixturesDir exported by the common module with
    the fixturesDir on the common/fixtures module in the path-makelong test.
    
    PR-URL: #15908
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    mckalexee authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    f82f691 View commit details
    Browse the repository at this point in the history
  34. test: changed fixtures require

    PR-URL: #15899
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    creisle authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    683e48c View commit details
    Browse the repository at this point in the history
  35. test: change fixturesDir to fixtures.path

    PR-URL: #15902
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    saviogl authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    1fc3851 View commit details
    Browse the repository at this point in the history
  36. test: replace fixturesDir with fixtures module

    `test/parallel/test-tls-ecdh.js` was loading fixture keys using
    `common.fixturesDir`. Now it's using `fixtures.readKey` instead.
    
    PR-URL: #15893
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Ivan Etchart authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    a8e7fa4 View commit details
    Browse the repository at this point in the history
  37. test: replace fixturesDir with fixtures module

    PR-URL: #16036
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    PyMedic authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    bba5263 View commit details
    Browse the repository at this point in the history
  38. test: use fixtures module

    PR-URL: #16034
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    moe-dizzle authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    bd8d440 View commit details
    Browse the repository at this point in the history
  39. test: use common.fixtures module for file path

    PR-URL: #16017
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    adilio authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    1365a6f View commit details
    Browse the repository at this point in the history
  40. test: replace fixtureDir with fixtures.path

    PR-URL: #15943
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    matthewreed26 authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    39ae3f1 View commit details
    Browse the repository at this point in the history
  41. test: replace common.fixturesDir w/ fixtures.path

    PR-URL: #15819
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Druotic authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    08ca73f View commit details
    Browse the repository at this point in the history
  42. doc: remove bold typography from STYLE_GUIDE.md

    Remove unnecessary bold typography from the style guide.
    
    PR-URL: #16085
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Lance Ball <lball@redhat.com>
    Trott authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    1064258 View commit details
    Browse the repository at this point in the history
  43. test: update http test client function signatures

    remove unused head arguments
    
    PR-URL: #15807
    Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Alkagar authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    e3e234e View commit details
    Browse the repository at this point in the history
  44. test: replace fixturesDir with common.fixtures

    In test-tls-honorcipherorder.js, use common.fixtures instead of
    common.fixturesDir.
    
    PR-URL: #15907
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    oliverluebeck authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    4fd5bf5 View commit details
    Browse the repository at this point in the history
  45. net: change assert to conform to other files

    PR-URL: #15861
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    James Hodgskiss authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    bf7f63d View commit details
    Browse the repository at this point in the history
  46. test: change fixturesDir to fixtures.path

    PR-URL: #15863
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    akiokio authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    095df35 View commit details
    Browse the repository at this point in the history
  47. test: rewrite assert message

    `test/parallel/test-zlib-unzip-one-byte-chunks.js` uses a literal
    string to describe the error if the string does not match itself
    after zipping and unzipping. Changed to a more descriptive template
    literal.
    
    PR-URL: #15879
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    mgjm authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    1144be0 View commit details
    Browse the repository at this point in the history
  48. test: switch to fixtures module

    In test-file-read-noexist, switch from common.fixturesDir to the
    fixtures module.
    
    PR-URL: #15880
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Mousius authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    d2b74fe View commit details
    Browse the repository at this point in the history
  49. test: use template literals in test-string-decoder

    `test/parallel/test-string-decoder.js` used to use string concatenation
    this was migrated to use template literals. When concatenation
    involved a newline we kept string concatenation, or to keep below 80
    charters per line.
    
    PR-URL: #15884
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    earobinson authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    5e65069 View commit details
    Browse the repository at this point in the history
  50. test: use fixtures module in test

    Instead of using common.fixturesDir, uses the fixtures module in
    test-http-get-pipeline-problem.
    
    PR-URL: #16117
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    NigelKibodeaux authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    9b39ca6 View commit details
    Browse the repository at this point in the history
  51. test: replace common.fixturesDir with fixtures

    PR-URL: #15857
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    shakeelmohamed authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    b7865ea View commit details
    Browse the repository at this point in the history
  52. src: rename perfctr_macros.py->noperfctr_macros.py

    This commit renames perfctr_macros.py to be consistent with the other
    macro python scripts nolttng_macros.py, and notrace_macros.py.
    
    PR-URL: #16100
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    danbev authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    4639cff View commit details
    Browse the repository at this point in the history
  53. test: use common.fixtures.path()

    PR-URL: #16112
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
    tobbik authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    788d7db View commit details
    Browse the repository at this point in the history
  54. test: replaces common.fixturesDir usage

    In test/parallel/test-repl-require.js replaces usage of
    common.fixturesDir with common/fixtures.
    
    Part of Node.js Interactive 2017 Code & Learn
    
    PR-URL: #15818
    Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    ruyadorno authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    4cf84ea View commit details
    Browse the repository at this point in the history
  55. test: replace common.fixturesDir with fixtures

    PR-URL: #16015
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    sharpstef authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    d70f9f6 View commit details
    Browse the repository at this point in the history
  56. test: fixturesDir replaced to fixtures module

    replaced fs and use of fixturesDir to fixtures module and readKey method
    
    PR-URL: #15809
    Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    pawelgolda authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    71e6879 View commit details
    Browse the repository at this point in the history
  57. test: switch to use common.fixtures module for fixturesDir

    PR-URL: #15821
    Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    r1cebank authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    77f9ef3 View commit details
    Browse the repository at this point in the history
  58. test: replace common.fixturesDir w/common.fixtures

    PR-URL: #15853
    Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Timothy Gu <timothygu99@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    jwalton authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    3c176fd View commit details
    Browse the repository at this point in the history
  59. test: normalize fixtures use

    This commit replaces the use of `common.fixturesDir`
    with `common.fixtures` & `fixtures.path` in
    `test-fs-read-stream-resume.js`
    
    PR-URL: #15855
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    ruxandrafed authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    c35420d View commit details
    Browse the repository at this point in the history
  60. build: ignore empty folders in test-addons

    Fixes: #14843
    PR-URL: #16031
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    gr2m authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    de82db7 View commit details
    Browse the repository at this point in the history
  61. test: replace fixturesDir with fixtures method

    PR-URL: #15894
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Suraiya-Hameed authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    bbdbf8b View commit details
    Browse the repository at this point in the history
  62. test: improve assert message

    PR-URL: #15909
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    tnguyen14 authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    0f23836 View commit details
    Browse the repository at this point in the history
  63. src: node_dtrace line continuations clean up

    PR-URL: #15777
    Reviewed-By: Lance Ball <lball@redhat.com>
    danbev authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    cf80089 View commit details
    Browse the repository at this point in the history
  64. assert: fix actual and expected order

    PR-URL: #15866
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    skysteve authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    575a920 View commit details
    Browse the repository at this point in the history
  65. test: replace common.fixtures with fixtures module

    PR-URL: #15877
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    jeskew authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    07c14f3 View commit details
    Browse the repository at this point in the history
  66. build: correct minor typo in lttng help message

    Currently the help message when using --with-lttng looks like this:
    
    $ ./configure --help | grep 'with-lttng'
      --with-lttng          build with Lttng (Only available to Linux)
    
    This commit makes the help message consistent with the error message
    that is raised if --with-lttng is used on a non-Linux operating
    system:
    
    $ ./configure --help | grep 'with-lttng'
      --with-lttng          build with Lttng (Only available on Linux)
    
    PR-URL: #16101
    Reviewed-By: Lance Ball <lball@redhat.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    danbev authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    6d63612 View commit details
    Browse the repository at this point in the history
  67. doc: rename good first contrib label

    Now `good first issue`.
    
    PR-URL: #16150
    Refs: #16149
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Fishrock123 authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    04d5835 View commit details
    Browse the repository at this point in the history
  68. test: use common/fixtures in fs-symlink test

    PR-URL: #15830
    Reviewed-By: Lance Ball <lball@redhat.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    alexeym authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    c252d87 View commit details
    Browse the repository at this point in the history
  69. test: use fixtures in test-https-localaddress.js

    PR-URL: #15811
    Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    CharlesWall authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    c4db4e4 View commit details
    Browse the repository at this point in the history
  70. doc: exempt test/doc only changes from 48-hr rule

    If a change affects only specific parts of the tests and or
    documentation, and in particular not of the runtime code itself,
    it should often be okay to land it early.
    
    The primary goal of the 48-hour rule is to ensure that people
    who are invested in certain parts of Node have a reasonable chance
    to weigh in based on their usage of Node; if the API is not
    touched in a change, that is arguably much less of an issue.
    
    In particular, this:
    
    - Should help avoid excessive nitpicking.
    - Helps newcomers, since their first PRs often touch only those areas
      and a direct success is very motivating.
    - Helps with the amount of pull requests created by events such a
      Code & Learn.
    
    PR-URL: #16135
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Evan Lucas <evanlucas@me.com>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    addaleax authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    281023b View commit details
    Browse the repository at this point in the history
  71. test: use of fixtures in test-pipe-head

    Replace usage of common.fixturesDir by using common.fixtures
    module in test/parallel/test-pipe-head
    
    PR-URL: #15868
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    nchaulet authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    44a60c3 View commit details
    Browse the repository at this point in the history
  72. test: improve assertion message in dgram test

    PR-URL: #16121
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    shakeelmohamed authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    3f56ac4 View commit details
    Browse the repository at this point in the history
  73. doc: document windows shell support

    explain that Git Bash and Cygwin require winpty to work correctly.
    Added info on Git Bash running winpty automatically
    when running node without .exe extension.
    
    PR-URL: #16104
    Fixes: #14100
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    yamalight authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    8da3b51 View commit details
    Browse the repository at this point in the history
  74. test: reduce run time for misc benchmark tests

    Run only one benchmark for each benchmark file tested by
    test-benchmark-misc.js.
    
    PR-URL: #16120
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Trott authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    dabdb2d View commit details
    Browse the repository at this point in the history
  75. test: fs.readFileSync -> fixtures.readKey

    PR-URL: #16030
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    EthanRBrown authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    76ab029 View commit details
    Browse the repository at this point in the history
  76. doc: add pronoun for fhinkel

    PR-URL: #16069
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Evan Lucas <evanlucas@me.com>
    Reviewed-By: Timothy Gu <timothygu99@gmail.com>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    fhinkel authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    6f1ba79 View commit details
    Browse the repository at this point in the history
  77. test: use common fixtures module

    Replace use of fixturesDir with fixtures.readSync and fixtures.path.
    
    PR-URL: #15856
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    frkat authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    c9c37d0 View commit details
    Browse the repository at this point in the history
  78. test: use common/fixtures in test-https-agent

    PR-URL: #15941
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    jpaulptr authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    cf31eb7 View commit details
    Browse the repository at this point in the history
  79. test: use common/fixtures in tls-connect-no-host

    PR-URL: #15986
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    dtex authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    a05fe5f View commit details
    Browse the repository at this point in the history
  80. test: use fixtures in tls-friendly-error-message

    PR-URL: #15905
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    tobyfarley authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    28756b3 View commit details
    Browse the repository at this point in the history
  81. test: use fixtures in test-process-warnings

    PR-URL: #15869
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    suresh-srinivas authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    68a2d39 View commit details
    Browse the repository at this point in the history
  82. test: use common/fixtures in test-https-close

    PR-URL: #15870
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    alodela authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    c9d07fa View commit details
    Browse the repository at this point in the history
  83. test: make use of common/fixtures.fixturesDir

    The common/fixtures module provides convenience methods for working with
    files in the test/fixtures directory. Make use of the `fixturesDir`
    value from module rather than value from common.
    
    - Replace `common.fixtures` with `fixtures.fixturesDir`
    
    PR-URL: #15815
    Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Jem Bezooyen authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    57590cd View commit details
    Browse the repository at this point in the history
  84. test: use fixtures in test-https-set-timeout-server

    Task to replace the common.fixturesDir with the usage
    of the common.fixtures module. At Node.js Interactive.
    First PR to Node.js. Yay!
    
    PR-URL: #15886
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Bob Clewell authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    6b8830c View commit details
    Browse the repository at this point in the history
  85. test: update test-crypto-from-binary

    removed string literal argument to function call strictEqual
    so that default error message is printed
    
    PR-URL: #16011
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    rajparekhAA authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    9ddbcc8 View commit details
    Browse the repository at this point in the history
  86. test: fixtures in test-process-redirect-warnings

    In test/parallel/test-process-redirect-warning.js replace usage of
    common.fixture by common.fixturesDir
    
    PR-URL: #15917
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    nchaulet authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    e705ad2 View commit details
    Browse the repository at this point in the history
  87. test: replaces fixturesDir with fixtures methods

    PR-URL: #15817
    Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    ChristianMurphy authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    2103453 View commit details
    Browse the repository at this point in the history
  88. test: use fixtures.fixturesDir

    PR-URL: #15822
    Reviewed-By: Lance Ball <lball@redhat.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    genewoo authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    a6f04be View commit details
    Browse the repository at this point in the history
  89. test: replaced fixturesDir with common.fixtures

    PR-URL: #15836
    Reviewed-By: Lance Ball <lball@redhat.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    dtoki authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    6d33564 View commit details
    Browse the repository at this point in the history
  90. test: use fixtures.readSync

    PR-URL: #15841
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    szhang351 authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    66fd6a1 View commit details
    Browse the repository at this point in the history
  91. doc: include V8 commit URL in V8 backport guide

    Use `Commit:` for the V8 commit, and `PR-URL:` for the Node PR URL.
    
    Refs: #16053 (comment)
    PR-URL: #16054
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Evan Lucas <evanlucas@me.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    gibfahn authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    de8155e View commit details
    Browse the repository at this point in the history
  92. doc: move 8 collaborators to emeriti

    As discussed in TSC email, I contacted 8 Collaborators whose last
    activity appears to be quite some time ago to suggest that they be moved
    to emeritus status until such a time as they will be active again. There
    were no objections from the 8 Collaborators or the TSC.
    
    PR-URL: #16173
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Roman Reiss <me@silverwind.io>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Evan Lucas <evanlucas@me.com>
    Trott authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    7647d41 View commit details
    Browse the repository at this point in the history
  93. test: fix ordering of strictEqual actual/expected

    Change all assert.strictEqual() to have actual value 1st
    and expected value 2nd.
    
    PR-URL: #16008
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    czezula authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    18479d3 View commit details
    Browse the repository at this point in the history
  94. test: fixtures in test-process-redirect-warnings-env

    Replaced common.fixturesDir with common.fixtures in
    test-process-redirect-warnings-env
    
    PR-URL: #15930
    Reviewed-By: Evan Lucas <evanlucas@me.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    frkat authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    244bfb3 View commit details
    Browse the repository at this point in the history
  95. test: fixtures in test-net-pipe-connect-errors

    PR-URL: #15922
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Eric Freiberg authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    4c98e07 View commit details
    Browse the repository at this point in the history
  96. test: improve assert message in test-dh-regr

    PR-URL: #15912
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Mabry Cervin authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    501acdf View commit details
    Browse the repository at this point in the history
  97. test: escape script filename on Windows

    Escape backslashes in script filename on Windows in a CLI test.
    
    PR-URL: #16124
    Fixes: #16057 and #16023
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    bzoz authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    04f3f6d View commit details
    Browse the repository at this point in the history
  98. doc: ensure collaborators validate commits

    This should be done every time a collaborator pushes a commit.
    
    PR-URL: #16162
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Roman Reiss <me@silverwind.io>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Evan Lucas <evanlucas@me.com>
    bmeck authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    2515cad View commit details
    Browse the repository at this point in the history
  99. test: use common.fixtures module

    Use common.fixtures module in test-https-agent-session-eviction
    
    PR-URL: #16012
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    chichiwang authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    4495388 View commit details
    Browse the repository at this point in the history
  100. test: switch to use common.fixtures.fixturesDir

    code and learn 2017 first task is to switch from common.fixturesDir to
    common.fixtures.fixturesDir in test-https-strict.js
    
    PR-URL: #15814
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    UnrememberMe authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    9eac5aa View commit details
    Browse the repository at this point in the history
  101. test: use fixtures in test-tls-multi-key.js

    PR-URL: #15844
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    dinophile authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    65c5ff8 View commit details
    Browse the repository at this point in the history
  102. tools: use template literal in error message

    PR-URL: #15846
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Tim Chon authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    5b5b5c0 View commit details
    Browse the repository at this point in the history
  103. test: added fixtures module

    PR-URL: #15980
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    cougarkhan authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    72f69f3 View commit details
    Browse the repository at this point in the history
  104. test: move to common.fixtures

    PR-URL: #15987
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    JustinBeckwith authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    87b9b7c View commit details
    Browse the repository at this point in the history
  105. test: remove test messages for assert.strictEqual

    Remove test messages for assert.strictEqual,
    as the default messages are a better option.
    
    PR-URL: #15995
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    tisAliG authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    57ae105 View commit details
    Browse the repository at this point in the history
  106. test: replaces fixturesDir with fixtures

    This commit updates the common.fixturesDir method
    in the https-timeout test.
    
    PR-URL: #15835
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Mike Fleming authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    541866e View commit details
    Browse the repository at this point in the history
  107. test: change crypto decipheriv assertion messages

    Includes problematic key and iv values into the assertion message
    
    PR-URL: #16007
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    stropitek authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    d591750 View commit details
    Browse the repository at this point in the history
  108. test: replace fixturesDir with the fixtures module

    PR-URL: #16027
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    weiplanet authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    a28d666 View commit details
    Browse the repository at this point in the history
  109. test: replace fixturesDir with fixtures methods

    PR-URL: #15967
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    kagbakpem authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    53449f3 View commit details
    Browse the repository at this point in the history
  110. test: update fixturesDir import

    Import fixturesDir path from common/fixturesDir
    module rather than from common.
    
    PR-URL: #15887
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    seabrookmx authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    c10594f View commit details
    Browse the repository at this point in the history
  111. test: replace fixturesDir with fixtures.path

    PR-URL: #15994
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    beartrickey authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    229a1fa View commit details
    Browse the repository at this point in the history
  112. doc: added note to fs.watchFile on previousStat

    Explains the expected behavior of previousStat in fs.watchFile() when
    a watched file disappears and reappears.
    
    PR-URL: #16099
    Fixes: #15364
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    nikniv authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    8c070f9 View commit details
    Browse the repository at this point in the history
  113. test: use common.fixtures module

    PR-URL: #15992
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    shaun-sweet authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    38179fd View commit details
    Browse the repository at this point in the history
  114. test: use fixtures module over fixturesDir

    clean up code by using fixtures helper module
    instead of fixturesDir directly.
    
    PR-URL: #15847
    Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    JamesNimlos authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    086d851 View commit details
    Browse the repository at this point in the history
  115. test: remove error messages in crypto-binary test

    PR-URL: #15981
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    corvinrok authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    f46e118 View commit details
    Browse the repository at this point in the history
  116. test: replace fixtureDir with fixtures methods

    PR-URL: #16114
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    burgerboydaddy authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    e00a4c8 View commit details
    Browse the repository at this point in the history
  117. doc: add missing comma

    Adds comma after natural pause in sentence.
    
    PR-URL: #16204
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    maclover7 authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    799c6fd View commit details
    Browse the repository at this point in the history
  118. test: refactor test-cluster-setup-master

    - use mustCall instead of counters
    - include totalWorkers and settings in the error messages
    
    PR-URL: #16065
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Jean-Baptiste Brossard authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    eb11a70 View commit details
    Browse the repository at this point in the history
  119. test: use ES6 classes instead of util.inherits

    Backport-PR-URL: #17068
    PR-URL: #16938
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    tniessen authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    f2108fa View commit details
    Browse the repository at this point in the history
  120. doc: Update a typo in module.js' comments

    PR-URL: #16205
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    orta authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    1fdcf75 View commit details
    Browse the repository at this point in the history
  121. test: use fixtures module

    Replace common.fixturesDir with fixtures module usage in
    test/parallel/test-tls-fast-writing.js.
    
    PR-URL: #15808
    Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Ben Hallion authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    fafbbb6 View commit details
    Browse the repository at this point in the history
  122. test: remove message from notStrictEqual

    PR-URL: #16048
    Reviewed-By: James Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    twk-b authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    0689ea6 View commit details
    Browse the repository at this point in the history
  123. test: improve coverage for process.umask

    This ensures that process.umask() throws with the correct error when
    invalid inputs are supplied.
    
    PR-URL: #16188
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    evanlucas authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    1fe3e86 View commit details
    Browse the repository at this point in the history
  124. doc: move Shigeki to TSC Emeritus

    Shigeki stepped down from TSC in a private email. He intends to stay on
    as a Collaborator and to continue working on OpenSSL integration,
    crypto, etc. (Since I know people will ask: His message indicates that
    this is about having sufficient time to participate. There is no reason
    he couldn't be nominated for TSC again in the future if he wished and
    had sufficient availability.)
    
    PR-URL: #16195
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Trott authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    aefaed4 View commit details
    Browse the repository at this point in the history
  125. test: replaced fs.readSync with fixtures.readSync

    NINA 2017 Code and Learn session for first time contributors.  This
    touched test/parallel/test-https-socket-options.js to replace
    common.fixturesDir
    
    PR-URL: #15882
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Lam Chan authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    2ab826c View commit details
    Browse the repository at this point in the history
  126. src: make header file self-contained

    Make node_crypto_clienthello-inl.h self-contained.
    
    Backport-PR-URL: #16610
    PR-URL: #16518
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    joyeecheung authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    a4688b0 View commit details
    Browse the repository at this point in the history
  127. src: do not include x.h if x-inl.h is included

    Backport-PR-URL: #16610
    Fixes: #16519
    PR-URL: #16548
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    joyeecheung authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    b00ced5 View commit details
    Browse the repository at this point in the history
  128. src: fix etw provider include on Windows

    Backport-PR-URL: #16610
    PR-URL: #16639
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    joyeecheung authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    42cb64e View commit details
    Browse the repository at this point in the history
  129. test: replace fixturesDir with common.fixtures

    PR-URL: #15810
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Kasim Doctor authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    e5fbc03 View commit details
    Browse the repository at this point in the history
  130. doc: support multidimensional arrays in type link

    Currently, we have at least one multidimensional array
    in type signature: see `records` parameter in
    https://nodejs.org/api/dns.html#dns_dns_resolvetxt_hostname_callback
    
    Our type parser does not linkify these signatures properly.
    This PR tries to fix this.
    
    PR-URL: #16207
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    vsemozhetbyt authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    ba62b0e View commit details
    Browse the repository at this point in the history
  131. test: split up and refactor test-domain

    Split up test-domain into multiple, more focused test files
    and use more modern JS inside of them.
    
    PR-URL: #13614
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    addaleax authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    806f03e View commit details
    Browse the repository at this point in the history
  132. test: change common.fixturesDir to fixtures.path

    Use common.fixtures module instead of common.fixturesDir based on task
    at Nodejs code and learn at Node.js Interactive 2017 in Vancouver.
    
    PR-URL: #15860
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    tejbirsingh authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    8eb84d6 View commit details
    Browse the repository at this point in the history
  133. test: update output to include exit code & signal

    PR-URL: #15945
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com
    jennazee authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    a94a75f View commit details
    Browse the repository at this point in the history
  134. test: add missing spaces in concatenations

    PR-URL: #16244
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    vsemozhetbyt authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    c26abc8 View commit details
    Browse the repository at this point in the history
  135. doc: clarify os.cpus() returns logical CPU cores

    Original text implied it returns physical cpu cores. This is misleading
    as `os.cpus().length` is often used to get the CPU core count in
    Node.js. In reality that will return the thread count which may not be
    what the user intended.
    
    PR-URL: #16282
    Fixes: #16279
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Bryan English <bryan@bryanenglish.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    lukechilds authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    9c96d7f View commit details
    Browse the repository at this point in the history
  136. test: refactor test-process-kill-null

    Use `common.mustCall()` instead of `called` variable.
    
    PR-URL: #16236
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    lpinca authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    fa8315c View commit details
    Browse the repository at this point in the history
  137. test: replace common.fixturesDir

    In test/parallel/test-tls-junk-closes-server.js, replaced
    common.fixtruesDir with usage of the common.fixtrues module.
    
    PR-URL: #15834
    Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Shawn McGinty authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    6285e72 View commit details
    Browse the repository at this point in the history
  138. test: improve assert message in internet test

    PR-URL: #15998
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Nikki St Onge authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    ab580c3 View commit details
    Browse the repository at this point in the history
  139. timers: fix eventloop block

    When there are at least 2 timers set by setInterval whose callback
    execution are longer than interval, the eventloop will be blocked.
    
    This commit fix the above bug.
    
    PR-URL: #15072
    Fixes: #15068
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    zhangzifa authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    bb81390 View commit details
    Browse the repository at this point in the history
  140. doc: add apapirovski to collaborators

    PR-URL: #16302
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    apapirovski authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    47bf494 View commit details
    Browse the repository at this point in the history
  141. test: use default message for assert.strictEqual

    PR-URL: #15970
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    hwaisiu authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    339bdca View commit details
    Browse the repository at this point in the history
  142. test: use fixtures module

    PR-URL: #15872
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    LancePTB authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    48e1320 View commit details
    Browse the repository at this point in the history
  143. test: use fixtures module

    PR-URL: #15874
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    alvaro450 authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    c58eaaf View commit details
    Browse the repository at this point in the history
  144. test: use fixtures module in test-https-truncate

    PR-URL: #15875
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    genewoo authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    3f35fc0 View commit details
    Browse the repository at this point in the history
  145. test: fix stderr reference

    PR-URL: #15938
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    osukaa authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    aa269ad View commit details
    Browse the repository at this point in the history
  146. test: remove literal messages

    PR-URL: #15938
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    osukaa authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    6f15b01 View commit details
    Browse the repository at this point in the history
  147. test: use fixtures module

    PR-URL: #15959
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    kanika46shah authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    cbbe125 View commit details
    Browse the repository at this point in the history
  148. test: expand error message

    PR-URL: #15991
    Reviewed-By: Yosuke Furukawa <yosuke.furukawa@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    sharpstef authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    da85e6c View commit details
    Browse the repository at this point in the history
  149. test: update assert error messages

    PR-URL: #16035
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    s9tpepper authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    32fa915 View commit details
    Browse the repository at this point in the history
  150. test: remove error messages in test-buffer-alloc

    PR-URL: #15867
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    bwhitty authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    257ece2 View commit details
    Browse the repository at this point in the history
  151. tools: rename unused variale in more pythonic way

    The 'Main' function in tools/test.py file was using a variable named
    ``all_outcomes`` to store a value not being used. It is a best practice
    to name unused variables, often return values of functions/methods (as
    in this case) as ``_`` [1]. This just helps keep the code a bit cleaner
    and avoid any silly mistakes.
    
    PR-URL: #16171
    Refs: [1] https://stackoverflow.com/a/5477153
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    komawar authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    b48471a View commit details
    Browse the repository at this point in the history
  152. test: remove error msg in test-vm-symbols.js

    PR-URL: #15873
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    jungleBadger authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    e070e59 View commit details
    Browse the repository at this point in the history
  153. build, windows: use /bigobj for debug builds

    PR-URL: #16289
    Fixes: #16288
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    seishun authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    fc2ab06 View commit details
    Browse the repository at this point in the history
  154. test: skip test due to file size limit

    The test requires a file size limit that is greater than the string
    size limit. Some aix machines might not meet this criteria so in
    which case we should skip the test.
    
    PR-URL: #16273
    Fixes: #16319
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: MichaëZasso <targos@protonmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    jBarz authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    9e74e54 View commit details
    Browse the repository at this point in the history
  155. doc: minor correction to note on process section

    PR-URL: #16311
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Nicu Micleușanu <micnic90@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    danbev authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    c3cc0fd View commit details
    Browse the repository at this point in the history
  156. test: replace fixturesDir with fixtures module

    PR-URL: #15947
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    andyband7 authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    0a88e1b View commit details
    Browse the repository at this point in the history
  157. doc: add space after period

    child_process IPC channel note
    
    PR-URL: #16334
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    DiegoRBaquero authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    4fbc490 View commit details
    Browse the repository at this point in the history
  158. test: replace fixturesDir with fixtures module

    PR-URL: #16262
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    tpurcell authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    34dfce7 View commit details
    Browse the repository at this point in the history
  159. doc: fix comment in assert.md

    PR-URL: #16335
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    umatoma authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    0b5a0ad View commit details
    Browse the repository at this point in the history
  160. build,win: use /MP for debug builds

    PR-URL: #16333
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    seishun authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    a14f564 View commit details
    Browse the repository at this point in the history
  161. meta: add note about email sync to CONTRIBUTING.md

    PR-URL: #16340
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    
    Refs: #16339 (comment)
    vsemozhetbyt authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    b0ac76d View commit details
    Browse the repository at this point in the history
  162. test: use fixtures.readKey instead of fixturesDir

    PR-URL: #15976
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Paul Marion Camantigue authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    7736529 View commit details
    Browse the repository at this point in the history
  163. test: use fixtures.readKey in https-timeout-server

    Replace `common.fixturesDir` usage in test-https-timeout-server.js with
    `fixtures.readKey()`.
    
    PR-URL: #15871
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    nicolasnoble authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    9c229b4 View commit details
    Browse the repository at this point in the history
  164. test: increase enoughTestMem to 1.75 Gb

    PR-URL: #16374
    Fixes: #16354
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Trott authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    62dd6a2 View commit details
    Browse the repository at this point in the history
  165. test: handle blank shells in test-os.js

    The shell in /etc/passwd can be blank, in which case the user is given
    the default shell. Handle this by only checking the shell contains a
    path separator if the string isn't empty.
    
    PR-URL: #16287
    Fixes: #15684
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    gibfahn authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    5095b99 View commit details
    Browse the repository at this point in the history
  166. tty,doc: add type-check to isatty

    Previously, various inputs other than non-negative integers would
    produce incorrect results.
    
    Added type-checking on input, returning false for anything other than
    non-negative integers.
    
    Also clarified in docs.
    
    PR-URL: #15567
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    bengl authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    ae5930b View commit details
    Browse the repository at this point in the history
  167. doc: replace methods used in the example code

    Methods `buf.writeUIntLE()` and `buf.writeUIntBE()` were used
    in the example code for the section of the methods
    `writeIntLE()` and `writeIntBE()` instead of the latter.
    
    PR-URL: #16416
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    damianc authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    2cbf75d View commit details
    Browse the repository at this point in the history
  168. doc: replace undocumented encoding aliases

    Backport-PR-URL: #16421
    PR-URL: #16368
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Bryan English <bryan@bryanenglish.com>
    vsemozhetbyt authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    b7d609c View commit details
    Browse the repository at this point in the history
  169. doc: add recommendations for first timers

    PR-URL: #16350
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    refack authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    af869f0 View commit details
    Browse the repository at this point in the history
  170. doc: fix missing newline character

    PR-URL: #16447
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    watilde authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    7ae23b7 View commit details
    Browse the repository at this point in the history
  171. test: allow for different nsswitch.conf settings

    The motivation for this commit is that these two test fail on systems
    that have different Name Service Switch configuration settings. A
    concrete example of this is when using Red Hat Enterprise Linux (RHEL)
    7.
    
    If Name Service Switch is available on the operating system then it
    might be configured differently (/etc/nsswitch.conf).
    If the system is configured with no dns the error code will be
    AI_AGAIN, but if there are more services after the dns entry, for
    example some linux distributions skip a myhostname service by default
    which would still produce the ENOTFOUND error.
    
    This commit suggests checking for either ENOTFOUND or EAI_AGAIN to
    accommodate systems like the ones described above. The references below
    indicate that others have run, or are running, into this aswell.
    
    Refs: #12075
    Refs: nodejs/help#687
    Refs: #15825
    PR-URL: #16378
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    danbev authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    2b1042b View commit details
    Browse the repository at this point in the history
  172. build,win: set /MP separately in Debug and Release

    Setting /MP globally causes it to appear twice in the command line due
    to a GYP bug, which causes the project to be rebuilt unconditionally due
    to an msbuild bug.
    
    PR-URL: #16415
    Fixes: #16367
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Minwoo Jung <minwoo@nodesource.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    seishun authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    ccca11d View commit details
    Browse the repository at this point in the history
  173. src: remove unused include in tty_wrap.h

    This commit removes the unused handle_wrap.h and instead adds uv.h which
    is used.
    
    PR-URL: #16379
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    danbev authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    2f5edc6 View commit details
    Browse the repository at this point in the history
  174. build: fix npm install with --shared

    The npm install rules had a hidden dependency on the `node` binary
    install rule creating the `$PREFIX/bin` directory.
    
    Because with `./configure --shared` no binary is created, the rule
    subsequently failed.  Fix that by creating the directory before
    creating the symlinks to the npm and npx scripts.
    
    (Whether it makes sense to install npm without a `node` binary is
    a separate question.  This commit is not taking positions. :-))
    
    Regression introduced in commit ed8c89a ("build: fix shared installing
    target") which, as the commit log indicates, was itself a bug fix for
    the `./configure --shared` install.
    
    PR-URL: #16438
    Fixes: #16437
    Ref: #15148
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    bnoordhuis authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    f462760 View commit details
    Browse the repository at this point in the history
  175. doc, win: remove note about resize

    Libuv 1.15.0 improved console resize detection on Windows. This note is
    no longer needed.
    
    PR-URL: #16320
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    bzoz authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    c64ed97 View commit details
    Browse the repository at this point in the history
  176. build: skip bin override on windows

    PR-URL: #16460
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    digitalinfinity authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    706812b View commit details
    Browse the repository at this point in the history
  177. doc: add dot in documentations

    PR-URL: #16542
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    erwinwahyura authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    60ae428 View commit details
    Browse the repository at this point in the history
  178. test: add failing vm tests to known_issues

    Currently, `Reflect.ownKeys(this)`, `Object.getOwnPropertyNames(this)`
    and `Object.getOwnPropertySymbols(this)` when run in a sandbox, fails
    to retrieve Symbol and non-enumerable values.
    
    PR-URL: #16410
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    targos authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    4f04d15 View commit details
    Browse the repository at this point in the history
  179. test: use fixtures module in tls-handshake-error

    PR-URL: #15939
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Mark Walker authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    5c20164 View commit details
    Browse the repository at this point in the history
  180. test: skip test-process-config if no config.gypi

    If you run the tests in a different machine to the one you built on,
    this test will fail. Avoid this by skipping if the file doesn't exist.
    We shouldn't need to check that the file exists in this test, as the
    build won't pass without a config.gypi anyway.
    
    Also adds console.logs, so you can see what the actual difference
    between the objects was, as `assert.deepStrictEqual()` only shows you
    the first three lines.
    
    PR-URL: #16436
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    gibfahn authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    7d93da5 View commit details
    Browse the repository at this point in the history
  181. test: use common.buildType in repl-domain-abort

    use `common.buildType` instead of
    `process.config.target_defaults.default_configuration` in
    repl-domain-abort addon test.
    
    PR-URL: #16538
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Trott authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    1fffa16 View commit details
    Browse the repository at this point in the history
  182. test: use process.features.debug in common module

    Replace process.config.target_defaults.default_configuration check with
    process.features.debug.
    
    PR-URL: #16537
    Ref: #4431 (comment)
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Trott authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    8663b05 View commit details
    Browse the repository at this point in the history
  183. tools: fix cpplint.py when path contains non-ascii

    PR-URL: #16047
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    sharkfisher authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    a8d7f5f View commit details
    Browse the repository at this point in the history
  184. test: include values in assertion messages

    Specifically for the test-crypto-hash.js test file.
    
    PR-URL: #15996
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    nhoel authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    0ace5a1 View commit details
    Browse the repository at this point in the history
  185. doc: add note to releases.md

    PR-URL: #16507
    Refs: nodejs/nodejs.org#1425
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    maclover7 authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    39c63da View commit details
    Browse the repository at this point in the history
  186. test: show values instead of assertion message

    PR-URL: #15979
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    dinophile authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    91f9779 View commit details
    Browse the repository at this point in the history
  187. test: imporove assert messages

    Improve assert messages in test-cluster-worker-disconnect.js.
    
    PR-URL: #16021
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Hadis-Fard authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    58fe9b4 View commit details
    Browse the repository at this point in the history
  188. test: use fixtures module

    PR-URL: #15843
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    scottjbeck authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    532c960 View commit details
    Browse the repository at this point in the history
  189. test: use fixtures module in test-fs-realpath.js

    PR-URL: #15904
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    RaphaelRheault authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    d3981ae View commit details
    Browse the repository at this point in the history
  190. test: increase fs.exists coverage

    PR-URL: #15963
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    NigelKibodeaux authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    cb1d16d View commit details
    Browse the repository at this point in the history
  191. test: add details in assertions in test-vm-context

    PR-URL: #16116
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    burgerboydaddy authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    10c24a1 View commit details
    Browse the repository at this point in the history
  192. test: use fixtures module

    Replace usage of common.fixturesDir with fixtures module in
    test-https-agent-disable-session-reuse.js.
    
    PR-URL: #15901
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Iryna Yaremtso authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    d6dc579 View commit details
    Browse the repository at this point in the history
  193. test: replace fixturesDir in test-tls-connect

    Replace common.fixturesDir with fixtures module in test-tls-connect.
    
    PR-URL: #15849
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Casie Lynch authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    8e62fcb View commit details
    Browse the repository at this point in the history
  194. src: remove superfluous HandleScope

    Accessors implicitly run inside a HandleScope, UDPWrap::GetFD() doesn't
    need to create one explicitly.
    
    PR-URL: #16482
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    bnoordhuis authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    c87a620 View commit details
    Browse the repository at this point in the history
  195. src: move handle properties to prototype

    Reduce the size of wrap objects by moving a couple of accessors from the
    instance template to the prototype template.  They occupied one slot per
    instance instead of one slot per class.
    
    This commit fixes some instances of unwrapping twice since that code had
    to be updated anyway to use `args.This()` instead of `args.Holder()`.
    
    PR-URL: #16482
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    bnoordhuis authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    7c69ca5 View commit details
    Browse the repository at this point in the history
  196. test: update test-timers-block-eventloop.js

    When CPU is busy, the above sequential case fails occasionally,
    expand the timeout value to fix it.
    
    PR-URL: #16314
    Fixes: #16310
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    zhangzifa authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    84741fd View commit details
    Browse the repository at this point in the history
  197. doc: slightly relax 50 character rule

    Allow commit message first line to exceed 50 chars if necessary
    
    PR-URL: #16523
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Evan Lucas <evanlucas@me.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    jasnell authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    935b152 View commit details
    Browse the repository at this point in the history
  198. doc: add Gibson Fahnestock to Release team

    PR-URL: #16620
    Refs: nodejs/TSC#350
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Evan Lucas <evanlucas@me.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    gibfahn authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    732af9b View commit details
    Browse the repository at this point in the history
  199. doc: more accurate zlib windowBits information

    Fixes: #14847
    PR-URL: #16511
    Backport-PR-URL: #16623
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    addaleax authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    44c0385 View commit details
    Browse the repository at this point in the history
  200. test: fix typo

    PR-URL: #15938
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    osukaa authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    143d8a1 View commit details
    Browse the repository at this point in the history
  201. test: update test to use fixtures

    Update test-repl-require-context to use fixtures module.
    
    PR-URL: #16799
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    awegrzyn authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    755f5e3 View commit details
    Browse the repository at this point in the history
  202. tools: replace string concetation with templates

    Replace string concatenation in tools/doc/html.js with template
    literals.
    
    PR-URL: #16801
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Patrick Heneise authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    d165d3f View commit details
    Browse the repository at this point in the history
  203. test: replace common.fixturesDir with fixtures.readSync()

    Replace common.fixturesDir with fixtures.readSync() in
    test-tls-getprotocol.
    
    PR-URL: #16802
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    AdriVanHoudt authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    04af0fd View commit details
    Browse the repository at this point in the history
  204. test: replace common.fixturesDir with fixtures module

    Require `fixturesDir` from `fixtures` module instead of `common` in
    test-fs-realpath-buffer-encoding.
    
    PR-URL: #16803
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    doomhz authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    e7a456a View commit details
    Browse the repository at this point in the history
  205. tools: replace string concatenation with template literals

    Replace a string concatenation in the processList function
    in doc/json.js.
    
    If missing, initialize the textRow property in the same line of the
    concatenation.
    
    PR-URL: #16806
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    lambrojos authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    ce007be View commit details
    Browse the repository at this point in the history
  206. tools: replace string concatenation with template literals

    Replace string concatenation with template literals in
    tools/doc/preprocess.js.
    
    PR-URL: #16804
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    kevinwcyu authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    1c192f5 View commit details
    Browse the repository at this point in the history
  207. test: fix typos in read-buffer tests

    The offset-exceeding tests for readFloat contained a double test
    for readFloatLE instead of one for readFloatLE and one for
    readFloatBE. This is fixed in this commit.
    
    PR-URL: #16834
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    jimivdw authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    a99755f View commit details
    Browse the repository at this point in the history
  208. tools: remove unneeded parentheses in doc/html.js

    PR-URL: #16845
    Ref: #16801 (comment)
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    vsemozhetbyt authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    f3749d7 View commit details
    Browse the repository at this point in the history
  209. test: update test to use fixtures.readKey

    Use fixtures.readKey() rather than common.fixturesDir in
    test-regress-GH-1531.
    
    PR-URL: #16811
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Dara Hayes authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    9f9e824 View commit details
    Browse the repository at this point in the history
  210. test: use fixtures module in test-repl

    PR-URL: #16809
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    DamianLion authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    54d4557 View commit details
    Browse the repository at this point in the history
  211. test: refactor tls test to use fixtres.readSync

    PR-URL: #16816
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    brianoconnell authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    3d8b3f7 View commit details
    Browse the repository at this point in the history
  212. test: include file mode in assert message

    If the REPL history file is created with an invalid mode include
    the failed mode in the error message.
    
    PR-URL: #16815
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    sastan authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    dd558a5 View commit details
    Browse the repository at this point in the history
  213. test: use default assertion message

    In test-child-process-spawnsync, the assert.strictEqual() custom
    message was hiding information about why the test has failed. It
    just showed what value is expected and in case of failure we want to
    know which value has caused test to fail.
    
    PR-URL: #16819
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    jonask-wix authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    ffbb4e6 View commit details
    Browse the repository at this point in the history
  214. test: move test-http-keepalive-maxsockets to sequential

    test-http-keepalive-maxsockets.js will fail if sufficient copies are run
    at once. Move to sequential.
    
    PR-URL: #16777
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Trott authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    cedf8a1 View commit details
    Browse the repository at this point in the history
  215. test: remove message argument in cluster setup test

    In test/parallel/test-cluster-setup-master-cumulative.js:
    
    Remove the message parameter to ensure that the compared
    objects are printed out. Add the original message as a
    comment above.
    
    PR-URL: #16838
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    mbornath authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    3acf156 View commit details
    Browse the repository at this point in the history
  216. src: CHECK() for argument overflow in Spawn()

    This commit adds checks for overflow to args and env in Spawn().
    It seems extremely unlikely that either of these values would
    overflow from a valid use case.
    
    Fixes: #15622
    PR-URL: #16761
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    cjihrig authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    c79dd9e View commit details
    Browse the repository at this point in the history
  217. doc: update subprocess.killed

    This commit changes the wording of subprocess.killed to reflect
    that a child process was successfully signaled, and not
    necessarily terminated.
    
    Fixes: #16747
    PR-URL: #16748
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    cjihrig authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    727a0fe View commit details
    Browse the repository at this point in the history
  218. test: replace common.fixtiresDir with fixtures.readKey()

    Use fixtures module in test/parallel/test-tls-js-stream.js.
    
    PR-URL: #16817
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    wsierakowski authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    b3b7858 View commit details
    Browse the repository at this point in the history
  219. test: add values to error message

    In test-require-extensions-main, include the values that caused the test
    to fail in the messages reporting the failure.
    
    PR-URL: #16831
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    intercity-technology authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    8e5b4f5 View commit details
    Browse the repository at this point in the history
  220. test: improve assertion in test-require-dot

    Include the value that differed from the expected value in an assertion
    message in test-require-dot.
    
    PR-URL: #16805
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    awegrzyn authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    714eb0b View commit details
    Browse the repository at this point in the history
  221. test: improve assert messages in stream test

    In test-stream-pipe-await-train-manual-resume, include unexpected value
    in error messages.
    
    PR-URL: #16884
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    katie-roberts authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    6686440 View commit details
    Browse the repository at this point in the history
  222. doc: improve documentation for the vm module

    Add an intro section and example for the vm module.
    
    PR-URL: #16867
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    fhinkel authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    fce7902 View commit details
    Browse the repository at this point in the history
  223. test: improve assertion messages

    Print content of domain stack if it doesn't match expected values
    PR-URL: #16885
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Neil Vass authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    2043ce3 View commit details
    Browse the repository at this point in the history
  224. test: cover vm.runInNewContext()

    There is currently one if branch missing coverage in lib/vm.js.
    This commit adds a test to cover the case where the third
    argument to runInNewContext() is a string.
    
    PR-URL: #16906
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    cjihrig authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    2a1ebae View commit details
    Browse the repository at this point in the history
  225. src: make StreamBase prototype accessors robust

    This PR makes the prototype accessors added by StreamBase::AddMethods
    nonenumerable and checks the signatures in the accessors so they
    throw instead of raising assertions when called with incompatible
    receivers. They could be enumerated when inspecting the prototype
    with util.inspect or the inspector protocol.
    
    PR-URL: #16860
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    joyeecheung authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    a368e5f View commit details
    Browse the repository at this point in the history
  226. test: replace string concatenation with template

    PR-URL: #16913
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    tanvikini authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    9d4abaa View commit details
    Browse the repository at this point in the history
  227. test: enable mustCall() during child exit

    PR-URL: #16915
    Reviewed-By: Khaidi Chu <i@2333.moe>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    vipinmenon authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    969defa View commit details
    Browse the repository at this point in the history
  228. test: replace string concatenation with template

    PR-URL: #16916
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    imkabir authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    674cbf8 View commit details
    Browse the repository at this point in the history
  229. test: change string concatenation to template

    PR-URL: #16919
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    narkedi authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    2232231 View commit details
    Browse the repository at this point in the history
  230. test: change concatenated string to template

    PR-URL: #16912
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Anaweshak authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    79dfc3f View commit details
    Browse the repository at this point in the history
  231. test: change concatenated string to template

    PR-URL: #16929
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    deesebas authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    1d3793e View commit details
    Browse the repository at this point in the history
  232. test: improve template value for test message

    Include value that cause failure in error message in
    test-cluster-master-kill.js.
    
    PR-URL: #16826
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    d1b1 authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    090cc97 View commit details
    Browse the repository at this point in the history
  233. test: use common/fixtures module in hash-seed test

    Replace `common.fixturesDir` with `fixtures.path()` usage in
    test/pummel/test-hash-seed.js.
    
    PR-URL: #16823
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Javier Blanco authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    a8cff7a View commit details
    Browse the repository at this point in the history
  234. doc: reorganize COLLABORATOR_GUIDE.md

    Based on feedback during a recent collaborator onboarding, move the
    metadata description closer to where the instructions for editing a
    commit message are.
    
    Indicate which metadata are required and which are optional.
    
    Make the punctuation more consistent. Previously, sentences prior to
    instructions ended in a period, a colon, or no punctuation at all. Colon
    seems best, so changed the Technical How-To section to use colons.
    
    PR-URL: #15710
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: Benedikt Meurer <benedikt.meurer@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Trott authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    4583f1b View commit details
    Browse the repository at this point in the history
  235. test: add a test description

    PR-URL: #16833
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    grantgasp authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    5e2231e View commit details
    Browse the repository at this point in the history
  236. test: used fixturesDir from fixtures modules

    In test-fs-realpath-on-substed-drive, require common/fixtures
    module and swapped the location of fixturesDir
    from common to fixtures module.
    
    PR-URL: #16813
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Klemen Kogovsek authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    f226ca6 View commit details
    Browse the repository at this point in the history
  237. doc: recommend node-core-utils for metadata

    PR-URL: #16978
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Khaidi Chu <i@2333.moe>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Trott authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    1bc5c38 View commit details
    Browse the repository at this point in the history
  238. test: refactor comments in test-child-process-spawnsync-maxbuf

    * remove comment that isn't relevant/important
    * add comment that explains what the test does
    
    PR-URL: #16829
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    chrbergert authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    4752fc4 View commit details
    Browse the repository at this point in the history
  239. test: reuse existing PassThrough implementation

    PR-URL: #16936
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    tniessen authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    f0eeddb View commit details
    Browse the repository at this point in the history
  240. fs: fix stat dev unsigned cast overflow

    The `dev_t` is unsigned on Linux, use Integer::NewFromUnsigned to fix cast overflow
    
    PR-URL: #16705
    Fixes: #16496
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Khaidi Chu <i@2333.moe>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    JLHwung authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    925e58f View commit details
    Browse the repository at this point in the history
  241. fs: use Number::New since all fields are uint64_t

    PR-URL: #16705
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Khaidi Chu <i@2333.moe>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    JLHwung authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    644989c View commit details
    Browse the repository at this point in the history
  242. test: allow tests to pass without internet

    Currently when running the test without an internet connection there are
    two JavaScript test failures
    
    This commit moves the two JavaScript tests to test/internet.
    
    Backport-PR-URL: #17171
    PR-URL: #16255
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    danbev authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    6269ba3 View commit details
    Browse the repository at this point in the history
  243. build: include src\tracing when linting on win

    This commit excludes src\tracing\trace_event.h and
    src\tracing\trace_event_common.h from the linter but allows the
    rest of the files in src\tracing to be examined by the linter
    which is similar to what the Makefile does.
    
    Refs: #16720
    Backport-PR-URL: #17172
    PR-URL: #16720
    Reviewed-By: James M Snell <jasnell@gmail.com>
    danbev authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    c287f12 View commit details
    Browse the repository at this point in the history
  244. src: remove unused includes from node_wrap.h

    I cannot find any usages of these includes and think they can be
    removed.
    
    Backport-PR-URL: #17092
    PR-URL: #16179
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    danbev authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    ae3ad55 View commit details
    Browse the repository at this point in the history
  245. deps: backport 4af8029 from upstream V8

    Original commit message:
    
        [turbofan] Fix missing lazy deopt in object literals.
    
        This adds a missing lazy bailout point when defining data properties
        with computed property names in object literals. The runtime call to
        Runtime::kDefineDataPropertyInLiteral can trigger deopts. The necessary
        bailout ID already exists and is now properly used.
    
        R=jarin@chromium.org
        TEST=mjsunit/regress/regress-crbug-621816
        BUG=chromium:621816
    
        Review-Url: https://codereview.chromium.org/2099133003
        Cr-Commit-Position: refs/heads/master@{#37294}
    
    Refs: v8/v8@4af8029
    PR-URL: #17290
    Fixes: #14326
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    targos authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    50c3dab View commit details
    Browse the repository at this point in the history
  246. build: remove cctest extension

    cctest has `so.59` extension when building node shared library in linux.
    The appending is defined in node.gypi and the cctest target in node.gyp
    includes node.gypi. Moving the appending from node.gypi to node target
    in node.gyp fixes the issue.
    
    Signed-off-by: Yihong Wang <yh.wang@ibm.com>
    
    Backport-PR-URL: #17255
    PR-URL: #16680
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    yhwang authored and MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    a0c1d10 View commit details
    Browse the repository at this point in the history
  247. 2017-12-05, Version 6.12.1 'Boron' (LTS)

    Notable Changes:
    
    * build:
      - fix npm install with --shared (Ben Noordhuis)
        #16438
    * build:
      - building with python 3 is now supported (Emily Marigold Klassen)
        #16058
    * src:
      - v8 options can be specified with either '\_' or '-' in NODE_OPTIONS
        (Sam Roberts) #14093
    
    PR-URL: #17180
    MylesBorins committed Nov 28, 2017
    Configuration menu
    Copy the full SHA
    4a99c2b View commit details
    Browse the repository at this point in the history