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

v8.9.2 proposal #17204

Merged
merged 110 commits into from
Dec 5, 2017
Merged

v8.9.2 proposal #17204

merged 110 commits into from
Dec 5, 2017

Commits on Nov 8, 2017

  1. console: avoid adding infinite error listeners

    If the console destination is a unix pipe (net.Socket), write() is
    async. If the destination is broken, we are adding an 'error' event
    listener to avoid a process crash. This PR makes sure that we are adding
    that listener only once.
    
    Fixes: #16767
    
    PR-URL: #16770
    Fixes: #16767
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    mcollina authored and gibfahn committed Nov 8, 2017
    Configuration menu
    Copy the full SHA
    9df1e8f View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2017

  1. test: add test for WrapStream readStop

    PR-URL: #16356
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    akaila authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    47b1c3b View commit details
    Browse the repository at this point in the history
  2. src: do not include x.h if x-inl.h is included

    Fixes: #16519
    PR-URL: #16548
    Backport-PR-URL: #16609
    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 gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    255fffb View commit details
    Browse the repository at this point in the history
  3. doc: add *-inl.h include rule to C++ style guide

    PR-URL: #16548
    Backport-PR-URL: #16609
    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 gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    a2fd9a3 View commit details
    Browse the repository at this point in the history
  4. src: fix etw provider include on Windows

    PR-URL: #16639
    Backport-PR-URL: #16609
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    joyeecheung authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    cecd1e3 View commit details
    Browse the repository at this point in the history
  5. test: use ES6 classes instead of util.inherits

    PR-URL: #16938
    Backport-PR-URL: #16946
    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 gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    981a1ef View commit details
    Browse the repository at this point in the history
  6. repl: avoid crashing from null and undefined errors

    When `throw undefined` or `throw null` is executed, the REPL crashes.
    This change does a check for `null|undefined` before accessing an
    error's properties to prevent crashing.
    
    Fixes: #16545
    Fixes: #16607
    
    PR-URL: #16574
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Lance Ball <lball@redhat.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    priyank-p authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    d27ec13 View commit details
    Browse the repository at this point in the history
  7. doc: howto decode buffers extending from Writable

    Improved stream documentation with an example of how to decode buffers
    to strings within a custom Writable.
    
    Fixes: #15369
    PR-URL: #16403
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    dicearr authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    d2e4a87 View commit details
    Browse the repository at this point in the history
  8. test: use fixtures module in test-https-pfx

    PR-URL: #15895
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    t-k-g authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    2f66faf View commit details
    Browse the repository at this point in the history
  9. src: remove unused includes in string_bytes.h

    PR-URL: #16606
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: XadillaX <admin@xcoder.in>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    danbev authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    79e1d77 View commit details
    Browse the repository at this point in the history
  10. build: add missing comma in sources list

    This commit adds a missing comma in the sources list. This effects at
    least window which produces the following warning where trace_event.h
    and src/util.h are concatenated:
    
    Warning: Missing input files:
    src\tracing\trace_event.hsrc\util.h
    
    PR-URL: #16613
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Minwoo Jung <minwoo@nodesource.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    danbev authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    4e848d4 View commit details
    Browse the repository at this point in the history
  11. test: increase coverage for ModuleMap

    Add test for ModuleMap set with ModuleJob but bad url.
    
    PR-URL: #16045
    Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
    Reviewed-By: Bradley Farias <bradley.meck@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    robtpaton authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    b3032d2 View commit details
    Browse the repository at this point in the history
  12. test,net: remove scatological terminology

    PR-URL: #16599
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Trott authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    72c34cf View commit details
    Browse the repository at this point in the history
  13. src: pass context to Get() operations for cares_wrap

    Using Get() without the context argument will soon be deprecated.
    This also passed context to Int32Value() operations as well.
    
    PR-URL: #16641
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    evanlucas authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    82076ed View commit details
    Browse the repository at this point in the history
  14. doc: add windowsVerbatimArguments docs

    doc: Add windowsVerbatimArguments docs for
    child_process spawn, spawnSync, execFile, and fork
    
    PR-URL: #16299
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Andrew Stucki authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    13866b8 View commit details
    Browse the repository at this point in the history
  15. doc: add details about rss on process.memoryUsage

    1. `process.memoryUsage()` returns an object with 4 keys: `rss,
    heapTotal, headUsed, external`. There were brief explanations for
    the rest except `rss`. This commit adds this on the docs.
    
    2. A little more clarity on `rss` to help people disambiguate it from
    the virtual memory size.
    
    PR-URL: #16566
    Refs: #16566 (comment)
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@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>
    profnandaa authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    542f3b9 View commit details
    Browse the repository at this point in the history
  16. doc : mention constant-time in crypto doc

    Included reference to 'constant time' in
    crypto.timingSafeEqual description.
    
    The Node website would score higher on a Google search
    and the API would be more discoverable if it used the words
    "constant time" in its description.
    
    PR-URL: #16604
    Fixes: #16504
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    mithunsasidharan authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    1bf6250 View commit details
    Browse the repository at this point in the history
  17. test: pause child until parent is ready

    Pause child on startup using inspect-brk=0 until the parent debugger
    is ready.
    
    PR-URL: #15774
    Fixes: #14897
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    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: Michael Dawson <michael_dawson@ca.ibm.com>
    jBarz authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    1e8a421 View commit details
    Browse the repository at this point in the history
  18. test: fix flaky test-http2-server-rst-stream.js

    PR-URL: #16690
    Fixes: #16688
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    apapirovski authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    a41cc02 View commit details
    Browse the repository at this point in the history
  19. build: suppress lint-md output

    We don't need to print out the output if we've already installed it, at
    the same time we do want to see some output when we haven't installed.
    
    PR-URL: #16551
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Khaidi Chu <i@2333.moe>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    d9a18be View commit details
    Browse the repository at this point in the history
  20. doc: add nodejs/gyp team for GYP related issues

    PR-URL: #16638
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    2cc05e0 View commit details
    Browse the repository at this point in the history
  21. src: improve module loader readability

    Various improvements on readability, performance and
    conformity to the Node core coding style in the ESM loader C++ code:
    
    - `isolate` for the `Isolate*`, `context` for the `Local<Context>`
    - Less reliance on `auto` where it’s unnecessary/increases cognitive
      overhead
    - Shorter paths to failure via `.ToLocal()` & co
    - Do not keep pending exceptions around e.g. for failed `JSON` parsing
    - Use `Maybe` types to get explicit error status forwarding
    - Remove an unnecessary handle scope
    - Add `nullptr` checks for unwrapped host objects
    - Remove unused code
    - Use `CamelCase` for function names
    - Use `const Foo&` instead of copying values whenever possible
    - Pass along the `Environment*` explicitly
    
    PR-URL: #16536
    Reviewed-By: Stephen Belanger <admin@stephenbelanger.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>
    addaleax authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    57b377e View commit details
    Browse the repository at this point in the history
  22. test: fix malformed parallel.status line

    PR-URL: #16702
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Trott authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    c52ac92 View commit details
    Browse the repository at this point in the history
  23. doc: add docs for Zlib#close()

    PR-URL: #16592
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    lpinca authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    7618567 View commit details
    Browse the repository at this point in the history
  24. http2: refactor settings handling

    Add `Http2Seettings` utility class for handling settings
    logic and reducing code duplication.
    
    PR-URL: #16668
    Reviewed-By: Sebastiaan Deckers <sebdeckers83@gmail.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Khaidi Chu <i@2333.moe>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    jasnell authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    8cf8a32 View commit details
    Browse the repository at this point in the history
  25. http2: improve errors thrown in header validation

    PR-URL: #16718
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    joyeecheung authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    6583016 View commit details
    Browse the repository at this point in the history
  26. http: use arrow fns for lexical this in Agent

    PR-URL: #16475
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    bengl authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    9b8e2a6 View commit details
    Browse the repository at this point in the history
  27. doc: update license to include node-inspect

    This also updates the license builder.
    
    PR-URL: #16659
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    MylesBorins authored and gibfahn committed Nov 14, 2017
    Configuration menu
    Copy the full SHA
    3319b20 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2017

  1. 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 16, 2017
    Configuration menu
    Copy the full SHA
    480f14a View commit details
    Browse the repository at this point in the history
  2. test: replace common.fixturesDir usage

    Use `common/fixtures` module instead in test-http2-client-upload.js
    
    PR-URL: #16800
    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>
    sastan authored and MylesBorins committed Nov 16, 2017
    Configuration menu
    Copy the full SHA
    7b14917 View commit details
    Browse the repository at this point in the history
  3. 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 16, 2017
    Configuration menu
    Copy the full SHA
    40fa970 View commit details
    Browse the repository at this point in the history
  4. 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 16, 2017
    Configuration menu
    Copy the full SHA
    1e6845d View commit details
    Browse the repository at this point in the history
  5. 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 16, 2017
    Configuration menu
    Copy the full SHA
    0fa659c View commit details
    Browse the repository at this point in the history
  6. 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 16, 2017
    Configuration menu
    Copy the full SHA
    aaf7e83 View commit details
    Browse the repository at this point in the history
  7. test: clarified assert message for test-require-json.js

    PR-URL: #16807
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    matthias-reis authored and MylesBorins committed Nov 16, 2017
    Configuration menu
    Copy the full SHA
    af13678 View commit details
    Browse the repository at this point in the history
  8. test: replace fixturesDir with usage of fixtures module

    Repalce common.fixturesDir with usage of the fixtures module in
    test-tls-ecdh-disable.
    
    Add a comment explaining the test.
    
    PR-URL: #16810
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    itavy authored and MylesBorins committed Nov 16, 2017
    Configuration menu
    Copy the full SHA
    c4176eb View commit details
    Browse the repository at this point in the history
  9. 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 16, 2017
    Configuration menu
    Copy the full SHA
    60c918a View commit details
    Browse the repository at this point in the history
  10. 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 16, 2017
    Configuration menu
    Copy the full SHA
    b166b6b View commit details
    Browse the repository at this point in the history
  11. 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 16, 2017
    Configuration menu
    Copy the full SHA
    cb08f5d View commit details
    Browse the repository at this point in the history
  12. 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 16, 2017
    Configuration menu
    Copy the full SHA
    5719bea View commit details
    Browse the repository at this point in the history
  13. 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 16, 2017
    Configuration menu
    Copy the full SHA
    b307582 View commit details
    Browse the repository at this point in the history
  14. 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 16, 2017
    Configuration menu
    Copy the full SHA
    33f2fff View commit details
    Browse the repository at this point in the history
  15. doc: fix json generator warnings

    - Fix `console.countReset()` signature
    - Fix `console.group()` arguments list
    
    PR-URL: #16742
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    lpinca authored and MylesBorins committed Nov 16, 2017
    Configuration menu
    Copy the full SHA
    f2a9c02 View commit details
    Browse the repository at this point in the history
  16. 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 16, 2017
    Configuration menu
    Copy the full SHA
    2bbc76e View commit details
    Browse the repository at this point in the history
  17. test: show incorrect value on test failure

    PR-URL: #16818
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Khaidi Chu <i@2333.moe>
    Sean Karson authored and MylesBorins committed Nov 16, 2017
    Configuration menu
    Copy the full SHA
    0ebded4 View commit details
    Browse the repository at this point in the history
  18. test: remove custom message from assertion

    The custom message means that the values involved are not reported.
    Remove the custom message for a more detailed error message.
    
    PR-URL: #16824
    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>
    Marsup authored and MylesBorins committed Nov 16, 2017
    Configuration menu
    Copy the full SHA
    562d8fc View commit details
    Browse the repository at this point in the history
  19. test: improve message in test-fs-readfile-pipe-large

    Improve assertion message by including expected and actual values.
    
    PR-URL: #16840
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    keldorus authored and MylesBorins committed Nov 16, 2017
    Configuration menu
    Copy the full SHA
    ec4c3f5 View commit details
    Browse the repository at this point in the history
  20. doc: add isTTY property documentation

    PR-URL: #16828
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    sonaysevik authored and MylesBorins committed Nov 16, 2017
    Configuration menu
    Copy the full SHA
    fab5598 View commit details
    Browse the repository at this point in the history
  21. 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 16, 2017
    Configuration menu
    Copy the full SHA
    ca27880 View commit details
    Browse the repository at this point in the history
  22. doc: fix a link in dgram.md

    PR-URL: #16854
    Reviewed-By: Khaidi Chu <i@2333.moe>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    vsemozhetbyt authored and MylesBorins committed Nov 16, 2017
    Configuration menu
    Copy the full SHA
    eafc0a1 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2017

  1. test: improve assert messages in test-global

    PR-URL: #16843
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    markmcnelis authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    71c11d6 View commit details
    Browse the repository at this point in the history
  2. 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 17, 2017
    Configuration menu
    Copy the full SHA
    4fcb03c View commit details
    Browse the repository at this point in the history
  3. test: check session timeout in http2

    Two instances of a similar test exist, with both testing the timeout on
    the stream and neither on the session. Adjust one of them to test the
    session timeout instead.
    
    PR-URL: #16754
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    apapirovski authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    d64fe48 View commit details
    Browse the repository at this point in the history
  4. 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 17, 2017
    Configuration menu
    Copy the full SHA
    2f1f7e1 View commit details
    Browse the repository at this point in the history
  5. 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 17, 2017
    Configuration menu
    Copy the full SHA
    8d31294 View commit details
    Browse the repository at this point in the history
  6. 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 17, 2017
    Configuration menu
    Copy the full SHA
    c4634bf View commit details
    Browse the repository at this point in the history
  7. doc: fix typo in assert.md

    PR-URL: #16866
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: Bryan English <bryan@bryanenglish.com>
    mjomble authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    360f403 View commit details
    Browse the repository at this point in the history
  8. test: use tmpDir in test-fs-utimes

    test-fs-utimes was doing some tests against __filename. This made the
    test unreliable when multiple copies were run simultaneously. In
    general, tests should use files in either the tmp directory or else
    fixtures, so change to using `common.tmpDir` instead. Each copy of the
    test (if using `test.py` harness for parallel runs) will use its own
    directory, making the test robust again.
    
    PR-URL: #16774
    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>
    Trott authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    c1309d6 View commit details
    Browse the repository at this point in the history
  9. tools: don't lint files that have not changed

    PR-URL: #16581
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    joyeecheung authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    79006da View commit details
    Browse the repository at this point in the history
  10. 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 17, 2017
    Configuration menu
    Copy the full SHA
    e66a7ae View commit details
    Browse the repository at this point in the history
  11. 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 17, 2017
    Configuration menu
    Copy the full SHA
    1b1bd26 View commit details
    Browse the repository at this point in the history
  12. tools: add direct anchors for error codes

    This adds direct anchors for the error codes in errors.html.
    For example, previously the anchor for ERR_ASSERTION
    is #errors_err_assertion, now there is also #ERR_ASSERTION.
    
    PR-URL: #16779
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    joyeecheung authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    8538354 View commit details
    Browse the repository at this point in the history
  13. 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 17, 2017
    Configuration menu
    Copy the full SHA
    7c9aee3 View commit details
    Browse the repository at this point in the history
  14. 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 17, 2017
    Configuration menu
    Copy the full SHA
    0bc16cd View commit details
    Browse the repository at this point in the history
  15. 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.
    
    PR-URL: #16720
    Reviewed-By: James M Snell <jasnell@gmail.com>
    danbev authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    585f869 View commit details
    Browse the repository at this point in the history
  16. 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 17, 2017
    Configuration menu
    Copy the full SHA
    d721c0b View commit details
    Browse the repository at this point in the history
  17. test: pass process.env to child processes

    For variables such as LD_LIBRARY_PATH and DYLD_LIBRARY_PATH that are
    needed for dynamically linked binaries
    
    PR-URL: #16405
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    rvagg authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    1522562 View commit details
    Browse the repository at this point in the history
  18. doc: fix a typo in the documentation

    PR-URL: #16909
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    mamatha-jv authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    adb8f08 View commit details
    Browse the repository at this point in the history
  19. deps: cherry-pick cc55747 from V8 upstream

    This fixes the flaky message/console test on our CI.
    
    Original commit message:
      [test/message] Allow numbers to have more than one leading digit.
    
      The {NUMBER} regexp only allowed one, leading to occasional test
      failures such as:
      https://build.chromium.org/p/client.v8/builders/V8%20Mac%20-%20debug/builds/17156
    
      Bug:
      Change-Id: I25a08b80640d9af19ba70c61c846163685f1cb82
      Reviewed-on: https://chromium-review.googlesource.com/753322
      Reviewed-by: Franziska Hinkelmann <franzih@chromium.org>
      Commit-Queue: Georg Neis <neis@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#49109}
    
    PR-URL: #16890
    Ref: nodejs/build#936
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    fhinkel authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    7ba0375 View commit details
    Browse the repository at this point in the history
  20. 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 17, 2017
    Configuration menu
    Copy the full SHA
    6c57399 View commit details
    Browse the repository at this point in the history
  21. 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 17, 2017
    Configuration menu
    Copy the full SHA
    26d529e View commit details
    Browse the repository at this point in the history
  22. tools,build: allow build without remark-cli

    PR-URL: #16893
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    refack authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    0d4f62c View commit details
    Browse the repository at this point in the history
  23. 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 17, 2017
    Configuration menu
    Copy the full SHA
    f7411b5 View commit details
    Browse the repository at this point in the history
  24. doc: correct the spelling of omitting in dgram.md

    PR-URL: #16910
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.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>
    vidyasubramanyam authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    0b8a400 View commit details
    Browse the repository at this point in the history
  25. 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 17, 2017
    Configuration menu
    Copy the full SHA
    be920aa View commit details
    Browse the repository at this point in the history
  26. test: replace string concatenation with template

    PR-URL: #16914
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.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>
    Sabari Lakshmi Krishnamoorthy authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    41f905b View commit details
    Browse the repository at this point in the history
  27. 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 17, 2017
    Configuration menu
    Copy the full SHA
    81a6c4f View commit details
    Browse the repository at this point in the history
  28. 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 17, 2017
    Configuration menu
    Copy the full SHA
    ae7106c View commit details
    Browse the repository at this point in the history
  29. lib: replace string concatenation with template

    PR-URL: #16917
    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>
    subbachari authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    134c2f3 View commit details
    Browse the repository at this point in the history
  30. test: use template string for concatenation

    PR-URL: #16918
    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: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    vipinmenon authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    7164d9a View commit details
    Browse the repository at this point in the history
  31. 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 17, 2017
    Configuration menu
    Copy the full SHA
    febd1bf View commit details
    Browse the repository at this point in the history
  32. doc: remove duplicate 'the' from http2 API doc

    PR-URL: #16924
    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: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    vipinmenon authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    6eb550d View commit details
    Browse the repository at this point in the history
  33. lib: change concatenated string to template

    PR-URL: #16925
    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: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Nayanadask authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    28f0360 View commit details
    Browse the repository at this point in the history
  34. 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 17, 2017
    Configuration menu
    Copy the full SHA
    7168a7e View commit details
    Browse the repository at this point in the history
  35. doc: outline commit message for breaking changes

    Add informations to CONTRIBUTING.md requesting the committers
    and especially the one working on breaking changes to write
    proper commits messages containing the reason behind the
    breaking changes, the case during which it can be triggered,
    and a description of the breaking change in itself.
    
    PR-URL: #16846
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    MatonAnthony authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    6e7a444 View commit details
    Browse the repository at this point in the history
  36. 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 17, 2017
    Configuration menu
    Copy the full SHA
    bf9eb04 View commit details
    Browse the repository at this point in the history
  37. lib: change concatenated string to template

    PR-URL: #16930
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    pajangid authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    2ad051d View commit details
    Browse the repository at this point in the history
  38. doc: clarify the prerequisites for building with VS2017

    * "Edition" is ambiguous. For example, Visual Studio Team Explorer 2017
      is listed under "Visual Studio 2017", but Build Tools for Visual
      Studio 2017 is listed under "Other Tools and Frameworks".
    * The listed required components are insufficient. VS2017 also needs
      "Visual Studio C++ core features", and Build Tools also needs
      "Visual C++ Build Tools core features".
    * Installing the workload with the default optional components takes up
      only about 1GB more space than the minimal set of components, but
      saves scrolling through the long list of individual components.
    
    PR-URL: #16903
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: João Reis <reis@janeasystems.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    seishun authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    8f0793f View commit details
    Browse the repository at this point in the history
  39. src: use unrefed async for GC tracking

    Do not let an internal handle keep the event loop alive.
    
    PR-URL: #16758
    Fixes: https://github.com/node/issues/16210
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    addaleax authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    4088089 View commit details
    Browse the repository at this point in the history
  40. test: unmark flaky test

    This effectively reverts 5c475a7 and
    75095d7.
    
    PR-URL: #16758
    Fixes: https://github.com/node/issues/16210
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    addaleax authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    c3e6491 View commit details
    Browse the repository at this point in the history
  41. 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 17, 2017
    Configuration menu
    Copy the full SHA
    3a3792b View commit details
    Browse the repository at this point in the history
  42. 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 17, 2017
    Configuration menu
    Copy the full SHA
    af8b17a View commit details
    Browse the repository at this point in the history
  43. loader: test search module

    PR-URL: #16795
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    clakech authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    dc14c25 View commit details
    Browse the repository at this point in the history
  44. http2: multiple smaller code cleanups

    * Add Http2Priority utility class
    * Reduces some code duplication
    * Other small minor cleanups
    
    PR-URL: #16764
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    jasnell authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    29efb02 View commit details
    Browse the repository at this point in the history
  45. 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 17, 2017
    Configuration menu
    Copy the full SHA
    ccd3646 View commit details
    Browse the repository at this point in the history
  46. 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 17, 2017
    Configuration menu
    Copy the full SHA
    4f587e5 View commit details
    Browse the repository at this point in the history
  47. test: refactor fs.write() test

    PR-URL: #16827
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Patrick Heneise authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    5c8fb6a View commit details
    Browse the repository at this point in the history
  48. tools: fix inspector-check reporting

    Currently the inspector-check rule does not store the node when the
    usage of a require('inspector') is done. This means that it is not
    possible to disable this rule. For example, if you add the following to
    a test that uses the inspector module:
    //common.skipIfInspectorDisabled();
    /* eslint-disable inspector-check */
    
    This will not disable the check and there will still be a lint error
    reported.
    
    This commit stores the node where the require statement is done which
    allows for the rule to also be disabled.
    
    PR-URL: #16902
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    danbev authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    85fd7bb View commit details
    Browse the repository at this point in the history
  49. lib: guard inspector console using process var

    Currently the inspector module is always loaded and if it does not
    return anything the inspector console setup is skipped.
    
    This commit uses the process.config.variables.v8_enable_inspector
    variable to only load the inspector module if it is enabled.
    
    PR-URL: #15008
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    danbev authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    14f8cee View commit details
    Browse the repository at this point in the history
  50. lib: replace string concatenation with template

    PR-URL: #16933
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    narkedi authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    4faf2ec View commit details
    Browse the repository at this point in the history
  51. 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 17, 2017
    Configuration menu
    Copy the full SHA
    315fba8 View commit details
    Browse the repository at this point in the history
  52. doc: fix typo in http2 doc

    `Sesssion` -> `Session`
    
    PR-URL: #16993
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    devsnek authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    891ddad View commit details
    Browse the repository at this point in the history
  53. 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 17, 2017
    Configuration menu
    Copy the full SHA
    c3c9a8d View commit details
    Browse the repository at this point in the history
  54. tools: remove unused trailing function arguments

    Update tools/doc/html.js and tools/eslint-rules/crypto-check.js to
    remove unused trailing function arguments in preparation for enabling a
    lint rule to enforce that practice.
    
    PR-URL: #16953
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Trott authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    57937e5 View commit details
    Browse the repository at this point in the history
  55. tools: enforce no unused trailing arguments tools directory

    Use linting to enforce that the final argument for a function must be
    used.
    
    PR-URL: #16953
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Trott authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    2b903bf View commit details
    Browse the repository at this point in the history
  56. 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 17, 2017
    Configuration menu
    Copy the full SHA
    6ab706d View commit details
    Browse the repository at this point in the history
  57. test: use fixtures module for path resolve

    PR-URL: #16842
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    sercanyersen authored and MylesBorins committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    375bec0 View commit details
    Browse the repository at this point in the history
  58. 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 17, 2017
    Configuration menu
    Copy the full SHA
    efdd7c8 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2017

  1. 2017-12-05, Version 8.9.2 'Carbon' (LTS)

    Notable Changes:
    
    - **console**:
      - avoid adding infinite error listeners (Matteo Collina) [#16770](https://github.com/nodejs/n
    de/pull/16770)
    - **http2**:
      - improve errors thrown in header validation (Joyee Cheung) [#16718](https://github.com/nodej
    s/node/pull/16718)
    
    PR-URL: #17204
    gibfahn committed Dec 5, 2017
    Configuration menu
    Copy the full SHA
    dcb2644 View commit details
    Browse the repository at this point in the history
  2. Working on v8.9.3

    PR-URL: #17204
    gibfahn committed Dec 5, 2017
    Configuration menu
    Copy the full SHA
    cf9b557 View commit details
    Browse the repository at this point in the history