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

v12.14.1 proposal #31069

Merged
merged 224 commits into from Jan 7, 2020
Merged

v12.14.1 proposal #31069

merged 224 commits into from Jan 7, 2020

Commits on Dec 17, 2019

  1. tools: check-imports using utf-8

    PR-URL: #30220
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    cclauss authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d9e5b72 View commit details
    Browse the repository at this point in the history
  2. tools: update certdata.txt

    This is the certdata.txt[0] from NSS 3.47, released on 2019-10-21.
    
    This is the version of NSS that will ship in Firefox 71 on
    2019-12-10.
    
    [0] https://hg.mozilla.org/projects/nss/raw-file/NSS_3_47_RTM/lib/ckfw/builtins/certdata.txt
    
    PR-URL: #30195
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    AshCripps authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    05290fd View commit details
    Browse the repository at this point in the history
  3. crypto: update root certificates

    Update the list of root certificates in src/node_root_certs.h with
    tools/mk-ca-bundle.pl.
    
    Certificates added:
    
    Certificates removed:
    - Certplus Class 2 Primary CA
    - Deutsche Telekom Root CA 2
    
    PR-URL: #30195
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    AshCripps authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    74dd216 View commit details
    Browse the repository at this point in the history
  4. v8: inspect unserializable objects

    This would otherwise sometimes just print relatively useless
    information about the value in question, such as `[object Object]`.
    
    PR-URL: #30167
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    2994976 View commit details
    Browse the repository at this point in the history
  5. encoding: make TextDecoder handle BOM correctly

    Do not accept the BOM if it comes from a different encoding, and
    only discard the BOM after it has actually been read (including
    when it is spread over multiple chunks in streaming mode).
    
    Fixes: #25315
    
    PR-URL: #30132
    Reviewed-By: Gus Caplan <me@gus.host>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    c80a4d8 View commit details
    Browse the repository at this point in the history
  6. src: remove unimplemented method from node.h

    This function was not actually available during any part
    of the Node 12 release line because it had been removed
    earlier (likely accidentally).
    
    Refs: #27220
    
    PR-URL: #30098
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    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: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    569f797 View commit details
    Browse the repository at this point in the history
  7. src: make AtExit() callbacks run in reverse order

    This makes the actual behaviour match the documented (and arguably
    the correct) behaviour.
    
    PR-URL: #30230
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    2e729f2 View commit details
    Browse the repository at this point in the history
  8. process: make source map getter resistant against prototype tampering

    Since this code runs during process and Worker shutdown, it should not
    call user-provided code and thereby e.g. provide a way to break out of
    `worker.terminate()`.
    
    PR-URL: #30228
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Ben Coe <bencoe@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    56b3edc View commit details
    Browse the repository at this point in the history
  9. doc: update examples in writing-tests.md

    `writing-tests.md` states to use arrow functions when appropriate.
    This updates the examples to do that.
    
    Further, this syncs the docs with what's found in
    [`test/parallel/test-http-agent-null.js`](https://github.com/nodejs/node/blob/master/test/parallel/test-http-agent-null.js)
    
    PR-URL: #30126
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    GaryGSC authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    fd16e9f View commit details
    Browse the repository at this point in the history
  10. v8: mark serdes API as stable

    This has been around for a long time, and the underlying V8 API has
    become stable as well a while ago.
    
    PR-URL: #30234
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    3f24a87 View commit details
    Browse the repository at this point in the history
  11. tools: make doctool work if no internet available

    Allow doctool to fallback to use local files if not building a release
    build.
    
    PR-URL: #30214
    Fixes: #29918
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    richardlau authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    5e8b2a8 View commit details
    Browse the repository at this point in the history
  12. doc: move inactive Collaborators to emeriti

    Move a handful of inactive Collaborators to emeriti.
    
    PR-URL: #30243
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    f66f28e View commit details
    Browse the repository at this point in the history
  13. http,async_hooks: keep resource object alive from socket

    If `asyncReset()` is used to specify an alternative resource object
    to mark a re-used socket in the HTTP Agent implementation,
    store that object and keep it alive, because domains rely on GC tracking
    for resource objects to manage their own lifetimes, and previously that
    resource object might have been garbage-collected too early, leading to
    crashes.
    
    Fixes: #30122
    
    PR-URL: #30196
    Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    6525142 View commit details
    Browse the repository at this point in the history
  14. src: track no of active JS signal handlers

    This makes it possible to tell whether a signal is being tracked in JS.
    
    PR-URL: #30229
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Shelley Vohr <codebytere@gmail.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    eb8beb5 View commit details
    Browse the repository at this point in the history
  15. src: make EndStartedProfilers an exit hook

    Run `EndStartedProfilers` on Environment teardown.
    
    This is part of a series of changes to make embedding easier, by
    requiring fewer internal methods to build a fully functioning
    Node.js instance.
    
    PR-URL: #30229
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Shelley Vohr <codebytere@gmail.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d14d9e8 View commit details
    Browse the repository at this point in the history
  16. src: make WaitForInspectorDisconnect an exit hook

    Run inspector cleanup code on Environment teardown.
    
    This is part of a series of changes to make embedding easier, by
    requiring fewer internal methods to build a fully functioning
    Node.js instance.
    
    PR-URL: #30229
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Shelley Vohr <codebytere@gmail.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    fc9e708 View commit details
    Browse the repository at this point in the history
  17. src: use unique_ptr for InitializeInspector()

    This makes more sense than releasing and re-wrapping the raw pointer.
    
    PR-URL: #30229
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Shelley Vohr <codebytere@gmail.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    da8ceb9 View commit details
    Browse the repository at this point in the history
  18. src: run RunBeforeExitCallbacks as part of EmitBeforeExit

    This is part of a series of changes to make embedding easier, by
    requiring fewer internal methods to build a fully functioning
    Node.js instance.
    
    This also aligns the worker_threads code with the main thread code.
    
    PR-URL: #30229
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Shelley Vohr <codebytere@gmail.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    e1a1244 View commit details
    Browse the repository at this point in the history
  19. dgram: reset bind state before emitting error

    This was previously done inconsistently, sometimes before, sometimes
    after emitting the event.
    
    PR-URL: #30210
    Fixes: #30209
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    fd5fed1 View commit details
    Browse the repository at this point in the history
  20. dgram: remove listeners on bind error

    This avoids piling up `'listening'` event listeners if
    `.bind()` fails repeatedly.
    
    Fixes: #30209
    
    PR-URL: #30210
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    3d39be7 View commit details
    Browse the repository at this point in the history
  21. doc: update GOVERNANCE.md

    This consists of some hopefully-uncontroversial
    simplifications/clarifications to the text. The one substantial change
    is to update Node.js Board of Directors to be the OpenJS Board of
    Directors.
    
    PR-URL: #30259
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Christian Clauss <cclauss@me.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d713e5a View commit details
    Browse the repository at this point in the history
  22. test: deflake test-tls-close-notify.js

    This test occasionally fails on macOS with the following error
    
    ```
    events.js:187
          throw er; // Unhandled 'error' event
          ^
    
    Error: read ECONNRESET
        at TLSWrap.onStreamRead (internal/stream_base_commons.js:201:27)
    Emitted 'error' event on TLSSocket instance at:
        at emitErrorNT (internal/streams/destroy.js:84:8)
        at processTicksAndRejections (internal/process/task_queues.js:80:21) {
      errno: -54,
      code: 'ECONNRESET',
      syscall: 'read'
    }
    ```
    
    Fix it by making the client send the close_notify alert instead of the
    server.
    
    PR-URL: #30202
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    lpinca authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    342031e View commit details
    Browse the repository at this point in the history
  23. tls: refactor tls_wrap.cc

    Store the result of excetuting the function in variable. Instead of
    excetuting it for multiple times.
    
    PR-URL: #30303
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    artmaks authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    634aac5 View commit details
    Browse the repository at this point in the history
  24. module: fix for empty object in InternalModuleReadJSON

    Fixes: #30245
    PR-URL: #30256
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Jan Krems <jan.krems@gmail.com>
    guybedford authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    b141556 View commit details
    Browse the repository at this point in the history
  25. tls: replace var with let and const

    PR-URL: #30299
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Nolik authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d59df36 View commit details
    Browse the repository at this point in the history
  26. http: replace vars with lets and consts in lib/_http_agent.js

    PR-URL: #30301
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    palmires authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    b0816c2 View commit details
    Browse the repository at this point in the history
  27. src: persist strings that are used multiple times in the environment

    PR-URL: #30321
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    bmsdave authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d8046fc View commit details
    Browse the repository at this point in the history
  28. https: change var to let in lib/https.js

    Changed a variable declaration.
    
    PR-URL: #30320
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    galinaprokofeva authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    eceeed7 View commit details
    Browse the repository at this point in the history
  29. fs: change var to let

    PR-URL: #30318
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    nadinTs authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d7c2911 View commit details
    Browse the repository at this point in the history
  30. assert: replace var with let in lib/assert.js

    Refs: nodejs/code-and-learn#97
    
    PR-URL: #30261
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    PerfectPan authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    ddbe982 View commit details
    Browse the repository at this point in the history
  31. cluster: destruct primordials in lib/internal/cluster/worker.js

    Refs: nodejs/code-and-learn#97
    
    PR-URL: #30246
    Refs: nodejs/code-and-learn#97
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Khaidi Chu <i@2333.moe>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    peze authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    2938fe3 View commit details
    Browse the repository at this point in the history
  32. buffer: change var to let

    PR-URL: #30292
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    darky authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    58fca40 View commit details
    Browse the repository at this point in the history
  33. lib: change var to let in lib/_stream_duplex.js

    PR-URL: #30297
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    vabole authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    bcc00e1 View commit details
    Browse the repository at this point in the history
  34. dns: switch var to const/let

    Simple exchange var to const/let.
    
    PR-URL: #30302
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Dmitriy Kikinskiy authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    7cf19ab View commit details
    Browse the repository at this point in the history
  35. process: add coverage tests for sourceMapFromDataUrl method

    PR-URL: #30319
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ben Coe <bencoe@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Masashi Hirano <shisama07@gmail.com>
    Nolik authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    02f606d View commit details
    Browse the repository at this point in the history
  36. path: replace var with let in lib/path.js

    PR-URL: #30260
    Refs: nodejs/code-and-learn#97
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    peze authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    f874aa1 View commit details
    Browse the repository at this point in the history
  37. test: fix test-benchmark-cluster

    test-benchmark-cluster needs to account for an option added in 973f324.
    
    PR-URL: #30342
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    5b42857 View commit details
    Browse the repository at this point in the history
  38. doc,meta: remove wait period for npm pull requests

    Treat npm pull requests like all other pull requests. Remove special
    extended wait period for landing.
    
    PR-URL: #30329
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d32cd85 View commit details
    Browse the repository at this point in the history
  39. doc,meta: allow Travis results for doc/comment changes

    Permit the use of Travis CI results for pull requests that only change
    documentation or comments. This also removes
    node-test-pull-request-lite-pipeline from the documentation. Efforts to
    move all CI jobs to pipelines have stalled and it's not clear that our
    current Jenkins admins are enthusiastic about pipelines.
    
    PR-URL: #30330
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    fe1296e View commit details
    Browse the repository at this point in the history
  40. test: mark test-http-dump-req-when-res-ends as flaky on windows

    PR-URL: #30316
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    AshCripps authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    5e2848d View commit details
    Browse the repository at this point in the history
  41. test: fix Python unittests in ./test and ./tools

    Co-authored-by: @patrickhousley
    
    Fixes to Python tests to ensure that the following all pass:
    1. __python2 -m pytest ./test ./tools__  # 30 tests pass
    2. __python3 -m pytest ./test ./tools__  # 30 tests pass
    3. __python2 -m unittest discover -s ./test/tools__  # 1 test passes
    4. __python3 -m unittest discover -s ./test/tools__  # 1 test passes
    5. __PYTHON=python2 make tooltest__   # 1 test passes
    6. __PYTHON=python3 make tooltest__   # 1 test passes
    
    This is a subset of #30033
    
    PR-URL: #30340
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    cclauss authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d148330 View commit details
    Browse the repository at this point in the history
  42. doc: add link to node-code-ide-configs in testing

    Refs: https://github.com/orgs/nodejs/teams/collaborators/discussions/58
    
    This config will help contributors to run/debug tests on VSCode
    
    PR-URL: #24012
    Reviewed-By: James M Snell <jasnell@gmail.com>
    trivikr authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    3710068 View commit details
    Browse the repository at this point in the history
  43. stream: increase MAX_HWM

    MAX_HWM was added in 9208c89 where the highwatermark was changed to
    always increase in steps of highest power of 2 to prevent increasing
    hwm excessivly in tiny amounts.
    
    Why a limit was added on the highwatermark is unclear but breaks
    existing usage where a larger read size is used. The invariant for
    read(n) is that a buffer of size n is always returned. Considering
    a maximum ceiling on the buffer size breaks this invariant.
    
    This PR significantly increases the limit to make it less likely to
    break the previous invariant and also documents the limit.
    
    Fixes: #29933
    
    PR-URL: #29938
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    ronag authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    88adad2 View commit details
    Browse the repository at this point in the history
  44. http: http_incoming rename var to let and const

    PR-URL: #30285
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@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>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    telenord authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    5727bc3 View commit details
    Browse the repository at this point in the history
  45. net: replaced vars to lets and consts

    PR-URL: #30287
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.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: Trivikram Kamat <trivikr.dev@gmail.com>
    alexahdp authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    1597626 View commit details
    Browse the repository at this point in the history
  46. http: http_common rename var to let and const

    PR-URL: #30288
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@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>
    telenord authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    5b8c481 View commit details
    Browse the repository at this point in the history
  47. lib: replaced var to let in lib/v8.js

    PR-URL: #30305
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    bmsdave authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    8725a5c View commit details
    Browse the repository at this point in the history
  48. tls: replace var with let

    PR-URL: #30308
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    dividead authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    6fe2c7a View commit details
    Browse the repository at this point in the history
  49. doc: fix up N-API doc

    * Add missing N-API version info
    * Fix N-API version info for napi_extended_error_info
    
    PR-URL: #30254
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    mhdawson authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    b8b6f25 View commit details
    Browse the repository at this point in the history
  50. test: replace Object.assign with object spread

    Replaces Object.assign with spread where object is simply cloned
    
    PR-URL: #30306
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Grigoriy Levanov authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    aaedc06 View commit details
    Browse the repository at this point in the history
  51. doc, console: remove non-existant methods from docs

    PR-URL: #30346
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    SimonSchick authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    17963bb View commit details
    Browse the repository at this point in the history
  52. doc: add lookup to http.request() options

    Add documentation for the `lookup` option.
    
    PR-URL: #30353
    Fixes: #30171
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    lpinca authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d2c85f3 View commit details
    Browse the repository at this point in the history
  53. crypto: fix key requirements in asymmetric cipher

    PR-URL: #30249
    Fixes: #30237
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    tniessen authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    bb7e78a View commit details
    Browse the repository at this point in the history
  54. doc: remove "maintenance is supported by" text in BUILDING.md

    The "maintenance is supported by" stuff in BUILDING.md is unclear. It
    seems unnecessary so I propose removing it.
    
    I don't understand what it means to, in this context, support
    maintenance. Does it mean that you simply do the maintenance? Does that
    mean it really just means "maintain"? Do we really mean that we mantain
    support, rather than support maintenance?
    
    That information does not seem necessary to include. I'm not sure it's
    meaningful. With (for example) Windows, is it accurate to say that the
    Node.js core team maintains support for it? Or is it accurate to say
    that support is maintaned by smaller groups or individuals within the
    Node.js core team?  Both could be considered accurate. So is the
    difference meaningful?
    
    I think the more important elements of determinig tier support are the
    other listed elements.
    
    PR-URL: #30365
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    0c68515 View commit details
    Browse the repository at this point in the history
  55. doc: remove "multiple variants" from BUILDING.md

    The statement that tests for tier 1 platforms are run on multiple
    variants is not true. We usually only run on one variant of macOS.
    Remove "multiple", which simplifies and clarifies the statements anyway.
    
    PR-URL: #30366
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    11d0170 View commit details
    Browse the repository at this point in the history
  56. doc: simplify text in pull-requests.md

    Mostly, this replaces "It is recommended to do X" with "Do X."
    
    PR-URL: #30458
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    2e0ef36 View commit details
    Browse the repository at this point in the history
  57. test: change var to const in parallel/test-stream-transform-final*

    PR-URL: #30448
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    khoumani authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    2e6b3be View commit details
    Browse the repository at this point in the history
  58. doc: add entry to url.parse() changes metadata

    Document that returned `pathname` is now `/` when the URL to parse has
    no path and the protocol scheme is`ws:` or `wss:`.
    
    PR-URL: #30348
    Fixes: #30154
    Refs: #26941
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Masashi Hirano <shisama07@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@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: Ruben Bridgewater <ruben@bridgewater.de>
    lpinca authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d979a9d View commit details
    Browse the repository at this point in the history
  59. test: deflake test-http-dump-req-when-res-ends.js

    On some platforms the `'end'` event might not be emitted because the
    socket could be destroyed by the other peer while the client is still
    sending the data triggering an error. Use the `'close'` event instead.
    
    PR-URL: #30360
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    lpinca authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    b49e63d View commit details
    Browse the repository at this point in the history
  60. lib: change var to let in string_decoder

    PR-URL: #30393
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    mkdorff authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    45e9c31 View commit details
    Browse the repository at this point in the history
  61. doc: createRequire can take import.meta.url directly

    PR-URL: #30495
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Guy Bedford <guybedford@gmail.com>
    GeoffreyBooth authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    25c8a13 View commit details
    Browse the repository at this point in the history
  62. url: replace var with let in lib/url.js

    PR-URL: #30281
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    xefimx authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    f2f4529 View commit details
    Browse the repository at this point in the history
  63. doc: update 8.x to 10.x in backporting guide

    PR-URL: #30481
    Refs: #22879
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    GaryGSC authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    793d360 View commit details
    Browse the repository at this point in the history
  64. lib: replace var with let/const

    PR-URL: #30440
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    khoumani authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    bd853cc View commit details
    Browse the repository at this point in the history
  65. util: replace var with let

    PR-URL: #30439
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    ssncferreira authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    ec49ea7 View commit details
    Browse the repository at this point in the history
  66. benchmark: use let instead of var in assert

    PR-URL: #30450
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    dnlup authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    351ee64 View commit details
    Browse the repository at this point in the history
  67. tls: change loop var to let

    PR-URL: #30445
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Xavier-Redondo authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    0f7281a View commit details
    Browse the repository at this point in the history
  68. doc: replace const / var with let

    PR-URL: #30446
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    duncanhealy authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    2e70ad3 View commit details
    Browse the repository at this point in the history
  69. test: var to const in test-repl-multiline.js

    PR-URL: #30433
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    soulmonk authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    cf9da71 View commit details
    Browse the repository at this point in the history
  70. test: changed var to const in test

    Changed outdated var to const in the test file
    repl-unexpected-token-recoverable.js
    
    PR-URL: #30434
    Reviewed-By: James M Snell <jasnell@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>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    bassgeta authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    df1d735 View commit details
    Browse the repository at this point in the history
  71. test: change var to let

    PR-URL: #30444
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    nath1as authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    f0b6a23 View commit details
    Browse the repository at this point in the history
  72. src: lib/internal/timers.js var -> let/const

    PR-URL: #30314
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    nikolaykrashnikov authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    3d7882e View commit details
    Browse the repository at this point in the history
  73. test: improve test-fs-open

    If there is a file 'path' in the root dir, the test
    will fail with the 'ENOTDIR' instead of 'ENOENT'.
    Change path to something more unlikely.
    
    PR-URL: #30280
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.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: Trivikram Kamat <trivikr.dev@gmail.com>
    artmaks authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    4dfcc12 View commit details
    Browse the repository at this point in the history
  74. build: store cache on timed out builds on Travis

    Building Node.js without a ccache cache takes longer than the 50 minute
    Travis time limit for jobs for public repositories. To mitigate this we
    added a job to compile V8 on the basis that in the worst case it would
    complete within 50 minutes and provide a cache that could be used by a
    restarted `Compile Node.js` job.
    
    Recent PRs have exceeded the 50 minute time limit for the `Compile V8`
    job. When Travis times out a build the cache is not stored.
    
    This commit drops the `Compile V8` job and adds a manual timeout to the
    `Compile Node.js` job which will allow the cache to be stored and used
    in restarts of the job.
    
    PR-URL: #30469
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    richardlau authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    cc93a37 View commit details
    Browse the repository at this point in the history
  75. doc: document timed out Travis CI builds

    PR-URL: #30469
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    richardlau authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    4b716a6 View commit details
    Browse the repository at this point in the history
  76. src: enhance feature access CHECKs during bootstrap

    This adds `CHECK`s verifying that bootstrapping has finished
    before environment variables are accessed or handles/requests
    are created. The latter complements a pair of existent checks,
    but fails earlier and thus gives information about the call
    site, effectively addressing the TODO comment there.
    
    PR-URL: #30452
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    2f4069a View commit details
    Browse the repository at this point in the history
  77. stream: replace var with let

    PR-URL: #30379
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    daern91 authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    8792147 View commit details
    Browse the repository at this point in the history
  78. test: changed var to let in test-repl-editor

    PR-URL: #30443
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    jlPhillips-rms authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    91c6fe4 View commit details
    Browse the repository at this point in the history
  79. test: Change from var to const

    PR-URL: #30431
    Reviewed-By: James M Snell <jasnell@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>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Jure Stepisnik authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    c0d9a54 View commit details
    Browse the repository at this point in the history
  80. querystring: replace var with let/const

    PR-URL: #30429
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Raoul Jaeckel authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    cbb2f81 View commit details
    Browse the repository at this point in the history
  81. lib: change var to let in internal/streams

    PR-URL: #30430
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    marquicodes authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    df2dce0 View commit details
    Browse the repository at this point in the history
  82. benchmark: use let instead of var in async_hooks

    PR-URL: #30470
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    dnlup authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    33e0bd6 View commit details
    Browse the repository at this point in the history
  83. deps: update nghttp2 to 1.40.0

    PR-URL: #30493
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    gengjiawen authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d2e32ab View commit details
    Browse the repository at this point in the history
  84. doc: adds NO_COLOR to assert doc page

    Co-Authored-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    
    PR-URL: #30483
    Refs: #30484
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    shobhitchittora authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    ec5fe99 View commit details
    Browse the repository at this point in the history
  85. test: handle undefined default_configuration

    PR-URL: #30465
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    codebytere authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    e4a1cff View commit details
    Browse the repository at this point in the history
  86. http: revise _http_server.js

    * replace var with const
    * eliminate unnecessary bytesParsed variable
    
    http: remove bytesParsed var
    
    PR-URL: #30279
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Yorkie Liu <yorkiefixer@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    telenord authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    71e3c48 View commit details
    Browse the repository at this point in the history
  87. tools: fix build at non-English windows

    PR-URL: #30492
    Fixes: #25885
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    pd4d10 authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    0797cc7 View commit details
    Browse the repository at this point in the history
  88. lib: change var to let/const in internal/querystring.js

    PR-URL: #30286
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    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>
    artmaks authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    4834a31 View commit details
    Browse the repository at this point in the history
  89. net: destructure primordials

    Refs: #29766
    PR-URL: #30447
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Guilherme Goncalves authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    0ae1d17 View commit details
    Browse the repository at this point in the history
  90. src: add file name to 'Module did not self-register' error

    PR-URL: #30125
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    nornagon authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    12d7d64 View commit details
    Browse the repository at this point in the history
  91. lib: replace var with let and const in readline.js

    PR-URL: #30377
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    VinceOPS authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    614949d View commit details
    Browse the repository at this point in the history
  92. lib: replace var with let

    PR-URL: #30381
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    David OLIVIER authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    80bfc08 View commit details
    Browse the repository at this point in the history
  93. test: clean up http-set-trailers

    * remove shared state of request counting from each listener by using
      callbacks to report test finish. This also fixes slight race condition
      where one of the request could finish before the other was taken into
      account resulting in ECONNREFUSED due to premature server.close()
    * slightly move code for better cohesion
    * fix error comment in testHttp10 'Trailer ...' -> 'No trailer ...'
    
    PR-URL: #30522
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    lundibundi authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    3fb0f7e View commit details
    Browse the repository at this point in the history
  94. doc: fix overriding of prefix option

    Make the example in the "Building a debug build" section work as
    intended.
    
    Fixes: #30477
    
    PR-URL: #30518
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    lpinca authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    a836ac1 View commit details
    Browse the repository at this point in the history
  95. doc: explain GIT_REMOTE_REF in COLLABORATOR_GUIDE

    PR-URL: #30371
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    lundibundi authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    768bac5 View commit details
    Browse the repository at this point in the history
  96. doc: add mention for using promisify on class methods

    Fixes: #30344
    
    PR-URL: #30355
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    lundibundi authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    e10f922 View commit details
    Browse the repository at this point in the history
  97. test: add test for options validation of createServer

    PR-URL: #30541
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    ZYSzys authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    6da56e9 View commit details
    Browse the repository at this point in the history
  98. http2: remove duplicated assertIsObject

    PR-URL: #30541
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    ZYSzys authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    13f65d1 View commit details
    Browse the repository at this point in the history
  99. domain: rename var to let and const

    PR-URL: #30312
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@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>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    marystogova authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    574b0f2 View commit details
    Browse the repository at this point in the history
  100. test: improve assertion message in internet dgram test

    When an error occurs unexpectedly, let the user know what the error is.
    
    PR-URL: #30545
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d802393 View commit details
    Browse the repository at this point in the history
  101. test: use reserved .invalid TLD for invalid address in test

    RFC 2606 reserves ithe .invalid top-level-domain for use in "domain
    names that are sure to be invalid and which it is obvious at a glance
    are invalid." Replace `dne.example.com` which actually isn't guaranteed
    to not exist. (example.com is for examples, but at least one address
    does in fact exist in that TLD.)
    
    PR-URL: #30545
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    9869aaa View commit details
    Browse the repository at this point in the history
  102. test: move test not requiring internet from internet to parallel

    test-dgram-send-cb-quelches-error works with or without a network. Move
    to `parallel` directory.
    
    PR-URL: #30545
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    0d26263 View commit details
    Browse the repository at this point in the history
  103. crypto: remove redundant validateUint32 argument

    The third parameter should be a boolean indicating whether the number
    must be positive. Passing zero works, but is unnecessary, misleading
    and inconsistent with other uses of the same function.
    
    PR-URL: #30579
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    tniessen authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    c1cb639 View commit details
    Browse the repository at this point in the history
  104. test: refactor test-dgram-multicast-set-interface-lo.js

    Convert functions to arrow functions. Remove unused param('signal') from
    function.
    
    PR-URL: #30536
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Taylor Gagne authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    cd5076e View commit details
    Browse the repository at this point in the history
  105. src: fix signal handler crash on close

    PR-URL: #30582
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    codebytere authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    8af3311 View commit details
    Browse the repository at this point in the history
  106. test: replace setTimeout with setImmediate in stream test

    Replace setTimeout() with setImmediate() in
    test-stream-writable-clear-buffer. The test still fails in Node.js 8.6.0
    (if you comment out the `common` module, since it uses BigInts and those
    aren't supported in 8.6.0).
    
    PR-URL: #30561
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    4a5f00c View commit details
    Browse the repository at this point in the history
  107. test: use arrow function for callback in stream test

    PR-URL: #30561
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    59c9592 View commit details
    Browse the repository at this point in the history
  108. test: remove string literal as message in strictEqual() in stream test

    This reveals the values that cause the assertion error, should it
    happen.
    
    PR-URL: #30561
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    0903f67 View commit details
    Browse the repository at this point in the history
  109. test: move stream test to parallel

    I don't believe there's a reason test-stream-writable-clear-buffer needs
    to be in sequential. Move it to parallel.
    
    PR-URL: #30561
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    8e36901 View commit details
    Browse the repository at this point in the history
  110. test: move explanatory comment to expected location in file

    Refs: #30561 (review)
    
    PR-URL: #30561
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    516bdaf View commit details
    Browse the repository at this point in the history
  111. test: add common.mustCall() to stream test

    Refs: https://github.com/nodejs/node/pull/30561/files#r348667256
    
    PR-URL: #30561
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    88bca0f View commit details
    Browse the repository at this point in the history
  112. src,doc: add C++ internals documentation

    This aims to help explain some of the internal patterns and utilities
    that we use. It is by no means exhaustive, and suggestions for
    additions are welcome.
    
    Some of this is based on the existing work from #26929.
    
    Refs: #26929
    
    PR-URL: #30552
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    a621ab8 View commit details
    Browse the repository at this point in the history
  113. http: destructure primordials in lib/_http_server.js

    PR-URL: #30315
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    artmaks authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    fdfcf68 View commit details
    Browse the repository at this point in the history
  114. repl: change var to let

    PR-URL: #30428
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    obelaifa authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    cc84dbf View commit details
    Browse the repository at this point in the history
  115. events: improve performance caused by primordials

    PR-URL: #30577
    Refs: nodejs/code-and-learn#97
    Refs: #29766
    Refs: #29633
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    antimonyGu authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    217cc13 View commit details
    Browse the repository at this point in the history
  116. fs: cover fs.opendir ERR_INVALID_CALLBACK

    PR-URL: #30307
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    darky authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    7ba8037 View commit details
    Browse the repository at this point in the history
  117. readline: change var to let

    PR-URL: #30435
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    dnlup authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    b21f46d View commit details
    Browse the repository at this point in the history
  118. http2: replace var with let/const

    PR-URL: #30417
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    pc3b3r authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    bccef49 View commit details
    Browse the repository at this point in the history
  119. test: switch to object spread in common/benchmark.js

    PR-URL: #30309
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    palmires authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    984c406 View commit details
    Browse the repository at this point in the history
  120. lib: replace var to let in cli_table.js

    PR-URL: #30400
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Jing19 authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    ff4f236 View commit details
    Browse the repository at this point in the history
  121. net: replaced vars to lets and consts

    PR-URL: #30401
    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: Trivikram Kamat <trivikr.dev@gmail.com>
    nath1as authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    21be4b1 View commit details
    Browse the repository at this point in the history
  122. test: test cover cases when trace is empty

    cover prepare_stack_trace in case when trace is empty
    PR-URL: #30311
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    telenord authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    0a068db View commit details
    Browse the repository at this point in the history
  123. cluster: replace var by let in shared_handle.js

    PR-URL: #30402
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    putxe authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    daa5932 View commit details
    Browse the repository at this point in the history
  124. test: dns utils replace var

    PR-URL: #30405
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    ovhemert authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    7f0e7fd View commit details
    Browse the repository at this point in the history
  125. lib: replace var with let/const

    PR-URL: #30404
    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: Trivikram Kamat <trivikr.dev@gmail.com>
    Tembrechts authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    0c4bb4a View commit details
    Browse the repository at this point in the history
  126. test: change var to let in test-trace-events

    PR-URL: #30406
    Reviewed-By: James M Snell <jasnell@gmail.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: Trivikram Kamat <trivikr.dev@gmail.com>
    jonchurch authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d077550 View commit details
    Browse the repository at this point in the history
  127. fs: change var to let

    PR-URL: #30407
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@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>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    alvarp authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    1a83c65 View commit details
    Browse the repository at this point in the history
  128. http2: core.js replace var with let

    const has to be used in for in loop
    
    PR-URL: #30403
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    DanielSchuech authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    68f3dde View commit details
    Browse the repository at this point in the history
  129. lib: change var to let

    change var to let in test-tick-processor-unknown.js
    PR-URL: #30408
    Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    dktistakis authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    7eafe8a View commit details
    Browse the repository at this point in the history
  130. lib: replace var with let/const

    PR-URL: #30409
    Reviewed-By: James M Snell <jasnell@gmail.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: Trivikram Kamat <trivikr.dev@gmail.com>
    Driesss authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    03e6d0d View commit details
    Browse the repository at this point in the history
  131. test: replace var with let in pre_execution.js

    PR-URL: #30411
    Reviewed-By: James M Snell <jasnell@gmail.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: Trivikram Kamat <trivikr.dev@gmail.com>
    Vunovati authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    e7f1d57 View commit details
    Browse the repository at this point in the history
  132. test: use spread instead of object.assign

    PR-URL: #30412
    Reviewed-By: James M Snell <jasnell@gmail.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: Trivikram Kamat <trivikr.dev@gmail.com>
    19shubham11 authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    78c7118 View commit details
    Browse the repository at this point in the history
  133. test: changed var to let in module-errors

    PR-URL: #30413
    Reviewed-By: James M Snell <jasnell@gmail.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: Trivikram Kamat <trivikr.dev@gmail.com>
    jrizza88 authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    46f698f View commit details
    Browse the repository at this point in the history
  134. child_process: replace var with const/let in internal/child_process.js

    PR-URL: #30414
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    lcamargof authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    6974f26 View commit details
    Browse the repository at this point in the history
  135. lib: changed var to let

    PR-URL: #30427
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Michaël Zasso <targos@protonmail.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: Trivikram Kamat <trivikr.dev@gmail.com>
    obelaifa authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    96c0615 View commit details
    Browse the repository at this point in the history
  136. test: use spread instead of Object.assign

    PR-URL: #30419
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    dnlup authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d708887 View commit details
    Browse the repository at this point in the history
  137. http: replace var with let

    PR-URL: #30421
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Guilherme Goncalves authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    175b8fe View commit details
    Browse the repository at this point in the history
  138. test: change object assign to spread object

    change object assign to spread object in test-npm-install.js
    PR-URL: #30422
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.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: Trivikram Kamat <trivikr.dev@gmail.com>
    putxe authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    01da702 View commit details
    Browse the repository at this point in the history
  139. doc: add note about debugging worker_threads

    PR-URL: #30594
    Fixes: #30197
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    lundibundi authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    7ebafda View commit details
    Browse the repository at this point in the history
  140. cluster: replace var with let

    replace var with let in lib/internal/cluster/utils.js
    PR-URL: #30425
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Herrmann, Rene R. (656) authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    9832144 View commit details
    Browse the repository at this point in the history
  141. lib: use let instead of var

    use let instead of var for lib/internal/policy/manifest.js
    PR-URL: #30424
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    edspace authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    e72be52 View commit details
    Browse the repository at this point in the history
  142. lib: change var to let in stream_base_commons

    PR-URL: #30426
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    marquicodes authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    dc786c3 View commit details
    Browse the repository at this point in the history
  143. lib: main_thread_only change var to let

    PR-URL: #30398
    Reviewed-By: James M Snell <jasnell@gmail.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: Trivikram Kamat <trivikr.dev@gmail.com>
    matijagaspar authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    c4fcd5b View commit details
    Browse the repository at this point in the history
  144. src: replaced var with let

    replaced var with let in lib/internal/cluter/master.js
    PR-URL: #30397
    Reviewed-By: James M Snell <jasnell@gmail.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: Trivikram Kamat <trivikr.dev@gmail.com>
    Aldo Ambrosioni authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    df4dddb View commit details
    Browse the repository at this point in the history
  145. test: code&learn var to let update

    PR-URL: #30436
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Nazaroni authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    2e37828 View commit details
    Browse the repository at this point in the history
  146. lib: replace var with let

    PR-URL: #30396
    Reviewed-By: James M Snell <jasnell@gmail.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: Trivikram Kamat <trivikr.dev@gmail.com>
    Dennis Saenger authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    1cfaccd View commit details
    Browse the repository at this point in the history
  147. tools: update ESLint to 6.7.1

    Update ESLint to 6.7.1
    
    PR-URL: #30598
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    cjihrig authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    bce0880 View commit details
    Browse the repository at this point in the history
  148. tools: enable more eslint rules

    This commit enables these new in ESLint 6.7.0 rules:
    
    - no-constructor-return
    - no-dupe-else-if
    - no-setter-return
    
    PR-URL: #30598
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    cjihrig authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    df91d5f View commit details
    Browse the repository at this point in the history
  149. doc: add note of caution about non-conforming streams

    PR-URL: #29895
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Yorkie Liu <yorkiefixer@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    ronag authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    0d6fbe8 View commit details
    Browse the repository at this point in the history
  150. doc: document "Resume Build" limitation

    Compiled binaries for fanned CI builds on Windows and ARM are only kept
    for seven days.
    
    PR-URL: #30604
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    richardlau authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    a493feb View commit details
    Browse the repository at this point in the history
  151. test: test for minimum ICU version consistency

    The minimum ICU version for Node.js must be at least the minimum ICU
    version for V8.
    
    PR-URL: #30608
    Refs: #30607
    Reviewed-By: Steven R Loomis <srloomis@us.ibm.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    richardlau authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    1c9ba2c View commit details
    Browse the repository at this point in the history
  152. test: use useful message argument in test function

    The message argument of two test functions in
    test-inspector-async-call-stack is useful but unused. Use it!
    
    PR-URL: #30618
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    e52237d View commit details
    Browse the repository at this point in the history
  153. lib: adding perf notes js_stream_socket.js

    Leaving var in place of let for performance optimization
    in short loops in hot paths. Added comments explaining why.
    
    PR-URL: #30415
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    ryanj authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    7d0631a View commit details
    Browse the repository at this point in the history
  154. test: change object assign by spread operator

    change object assign by spread operator in test-require-symlink.js
    PR-URL: #30438
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    putxe authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    2f8dcef View commit details
    Browse the repository at this point in the history
  155. http2: change var to let compact.js

    PR-URL: #30392
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    MariaEmma authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    cb3e008 View commit details
    Browse the repository at this point in the history
  156. lib: replace var with let/const

    PR-URL: #30390
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Tijl5 authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    a6625dd View commit details
    Browse the repository at this point in the history
  157. child_process: replace var with let/const

    PR-URL: #30389
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    dnlup authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    8d3e023 View commit details
    Browse the repository at this point in the history
  158. process: replace vars in per_thread.js

    PR-URL: #30385
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    EmaSuriano authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    db02965 View commit details
    Browse the repository at this point in the history
  159. lib: replace var w/ let

    replace var w/ let in lib/internal/error-serdes.js
    
    PR-URL: #30386
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    IAmEddieDean authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    f963409 View commit details
    Browse the repository at this point in the history
  160. cluster: replace vars in child.js

    PR-URL: #30383
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    EmaSuriano authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d70ec60 View commit details
    Browse the repository at this point in the history
  161. process: replace var with let/const

    PR-URL: #30382
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    deadbeef84 authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    956207f View commit details
    Browse the repository at this point in the history
  162. util: use let instead of var for util/inspect.js

    PR-URL: #30399
    Reviewed-By: James M Snell <jasnell@gmail.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: Trivikram Kamat <trivikr.dev@gmail.com>
    lmammino authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    7421cc8 View commit details
    Browse the repository at this point in the history
  163. lib: replace var with let/const

    PR-URL: #30391
    Reviewed-By: James M Snell <jasnell@gmail.com>
    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: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    jens-cappelle authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d951209 View commit details
    Browse the repository at this point in the history
  164. lib: use let instead of var

    this commit uses let instead of var for util.js & warning.js
    PR-URL: #30375
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    19shubham11 authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d138e2d View commit details
    Browse the repository at this point in the history
  165. doc: add explanation why keep var with for loop

    This comment will help contributors to understand why keeping var
    PR-URL: #30380
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    lrecknagel authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    c705a8e View commit details
    Browse the repository at this point in the history
  166. test: dir class initialisation w/o handler

    Covering the case when init Dir class without passing
    handle paramd to constructor.
    
    PR-URL: #30313
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Dmitriy Kikinskiy authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    12ef7d9 View commit details
    Browse the repository at this point in the history
  167. test: move test-worker-prof to sequential

    Refs: #26401 (comment)
    
    PR-URL: #30628
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    825b305 View commit details
    Browse the repository at this point in the history
  168. doc: update AUTHORS list

    PR-URL: #30672
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    devsnek authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    16a8daa View commit details
    Browse the repository at this point in the history
  169. doc: add 13 and 12 to previous versions

    Remove Node.js 6 and add Node.js 12 and Node.js 13 to the previous
    versions of this document section
    
    PR-URL: #30590
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    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: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    andrewhughes101 authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    8b60065 View commit details
    Browse the repository at this point in the history
  170. doc: minor updates to releases.md

    PR-URL: #30636
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
    Reviewed-By: Yorkie Liu <yorkiefixer@gmail.com>
    BethGriggs authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    2532bf3 View commit details
    Browse the repository at this point in the history
  171. doc: remove "this API is unstable" note for v8 serdes API

    As #30234 marked this as stable I think this line
    should be removed as well?
    
    Refs: #30234
    PR-URL: #30631
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
    bruce-one authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    bea2069 View commit details
    Browse the repository at this point in the history
  172. tty: truecolor check moved before 256 check

    256 color would be return instead of 16m if both env variables were set
    
    * tty: improve color check order highest spec first
    * tty: add test for TERM and COLORTERM set
    * tty: move COLORTERM check outside TERM closure
    * tty: remove extra if check for COLORTERM
    
    Refs: #27609
    
    PR-URL: #30474
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    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: Luigi Pinca <luigipinca@gmail.com>
    duncanhealy authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    0e68f55 View commit details
    Browse the repository at this point in the history
  173. n-api: add missed nullptr check in napi_has_own_property

    PR-URL: #30626
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    lundibundi authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    4d396fd View commit details
    Browse the repository at this point in the history
  174. test: add regression test for signal handler removal in exit

    Refs: #30581
    Refs: #30582
    
    PR-URL: #30589
    Refs: #30581
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    f5ac4ec View commit details
    Browse the repository at this point in the history
  175. test: add mustCall() to test-inspector-contexts

    In test-inspector-contexts, if mainContextPromise is modified such that
    the `method` argument is changed to something invalid, the test still
    passes and the second part of the test never runs. Use
    `common.mustCall()` to cause the test to fail if the second part of the
    test does not run.
    
    Refs: #30519 (comment)
    
    PR-URL: #30649
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    c3ad977 View commit details
    Browse the repository at this point in the history
  176. test: check for session.post() errors in test-insepctor-context

    If session.post() generates an error, it is currently ignored. Add check
    for error by adding a callback to session.post() invocation.
    
    PR-URL: #30649
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    ece08a5 View commit details
    Browse the repository at this point in the history
  177. test: remove destructuring from test-inspector-contexts

    As I'm working with this test, I'm finding the destructuring of assert
    and vm to make this test harder to read/understand. So I'm taking the
    liberty of removing them.
    
    PR-URL: #30649
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    196e08d View commit details
    Browse the repository at this point in the history
  178. test: add logging in case of infinite loop

    test-inspector-contexts may be entering an infinite loop (or very
    long-running loop) in CI, resulting in flakiness. Or maybe not. Add
    logging to find out.
    
    PR-URL: #30649
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    648318d View commit details
    Browse the repository at this point in the history
  179. src,doc: fix broken links

    PR-URL: #30662
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    cjihrig authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    f6360c1 View commit details
    Browse the repository at this point in the history
  180. src: cleanup unused headers

    Node codebase has evolved a lot in the more than 10 years of its
    existence. As more features (and code) have been added, changed,
    removed, it's sometimes hard to keep track of what gets used and what
    not.
    
    This commits attempts to clean some of those potentially left-over
    headers using suggestions from  include-what-you-use
    
    Refs: #27531
    
    PR-URL: #30328
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    alferpal authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    3bb085d View commit details
    Browse the repository at this point in the history
  181. inspector: properly shut down uv_async_t

    Closing in the Agent destructor is too late, because that happens
    when the Environment is destroyed, not when libuv handles are closed.
    
    This fixes a situation in which the same libuv loop is re-used for
    multiple Environment instances sequentially, e.g. in our cctest.
    
    PR-URL: #30612
    Reviewed-By: Eugene Ostroukhov <eostroukhov@google.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    55e94cb View commit details
    Browse the repository at this point in the history
  182. tls: allow empty subject even with altNames defined

    Behavior described in #11771
    is still true even though the issue is closed.
    
    This PR is to allow DNS and URI names, even when there is not a subject.
    
    Refs: #11771
    
    PR-URL: #22906
    Reviewed-By: James M Snell <jasnell@gmail.com>
    jasonmacgowan authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    43cec65 View commit details
    Browse the repository at this point in the history
  183. test: remove unused function argument from http test

    Remove unused `res` from test-http-server-consumed-timeout.
    
    PR-URL: #30677
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d378594 View commit details
    Browse the repository at this point in the history
  184. test: do not skip test-http-server-consumed-timeout

    test-http-server-consumed-timeout has code to that causes it to be
    skipped on busy machines. Instead, use an exponential backoff for the
    timeout if the machine is busy.
    
    PR-URL: #30677
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    564e477 View commit details
    Browse the repository at this point in the history
  185. test: remove unnecessary common.platformTimeout() call

    Applying platformTimeout() to the interval is counterproductive. It
    should be applied to the request timeout duration only.
    
    PR-URL: #30677
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    d3bac60 View commit details
    Browse the repository at this point in the history
  186. test: move test-https-server-consumed-timeout to parallel

    Change the test to be robust in slow environments and move to parallel.
    The previous version of the test failed for me in parallel with just two
    or four simultaneous versions running. This version passes 96
    simultaneous versions running, but still fails as designed if the
    request writes fail to prevent the request timeout from occurring.
    
    PR-URL: #30677
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    8554ff2 View commit details
    Browse the repository at this point in the history
  187. deps: update llhttp to 2.0.1

    Changelog:
    
    * Optional SSE4.2 support (at compile time)
    * Lenient mode of operation
    
    PR-URL: #30553
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    indutny authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    7589486 View commit details
    Browse the repository at this point in the history
  188. http: set socket.server unconditionally

    This is useful for situations in which the socket was not
    created for HTTP, e.g. when using arbitrary `Duplex` streams.
    
    (The added test fails because previously, `socket.server.emit()`
    would not work for emitting the `clientError` event, as
    `socket.server` was `undefined`.)
    
    PR-URL: #30571
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    6b380cc View commit details
    Browse the repository at this point in the history
  189. child_process: document kill() return value

    This commit documents the return value from subprocess.kill().
    
    PR-URL: #30669
    Refs: #30668
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    cjihrig authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    f9f3ab2 View commit details
    Browse the repository at this point in the history
  190. doc: revise socket.connect() note

    Edit note in about `onread` option to `socket.connect()` for clarity.
    
    PR-URL: #30691
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    6fc562c View commit details
    Browse the repository at this point in the history
  191. doc: address nits for src/README.md

    Refs: #30552 (review)
    
    PR-URL: #30693
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    670e4b5 View commit details
    Browse the repository at this point in the history
  192. doc: add missing 'added' versions to module.builtinModules

    PR-URL: #30562
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    watson authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    42cb92f View commit details
    Browse the repository at this point in the history
  193. n-api: detach external ArrayBuffers on env exit

    Make sure that `ArrayBuffer`s created using
    `napi_create_external_arraybuffer` are rendered unusable
    after its memory has been released.
    
    PR-URL: #30551
    Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    dc9c770 View commit details
    Browse the repository at this point in the history
  194. test: port worker + buffer test to N-API

    This ports `test/addons/worker-buffer-callback` to N-API,
    with the small exception of using external `ArrayBuffer`s rather
    than external Node.js `Buffer`s.
    
    PR-URL: #30551
    Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    646b81c View commit details
    Browse the repository at this point in the history
  195. dns: use length for building TXT string

    Rely on the length reported by C-Ares rather than `\0`-termination
    for creating the JS string for a dns TXT response.
    
    Fixes: #30688
    
    PR-URL: #30690
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    ded0748 View commit details
    Browse the repository at this point in the history
  196. buffer: fix 6-byte writeUIntBE() range check

    Fixes: #30420
    
    PR-URL: #30459
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    mscdex authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    719e33f View commit details
    Browse the repository at this point in the history
  197. test:refactor createHook test

    PR-URL: #30568
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    JenyMzo authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    9f49b97 View commit details
    Browse the repository at this point in the history
  198. src: remove unused variable in node_dir.cc

    PR-URL: #30267
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@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>
    gengjiawen authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    4b1f730 View commit details
    Browse the repository at this point in the history
  199. http2: fix session memory accounting after pausing

    The ability to pause input processing was added in 8a4a193 but
    introduced a session memory accounting mismatch leading to potential
    NGHTTP2_ENHANCE_YOUR_CALM errors.
    
    After pausing
    (https://github.com/nodejs/node/blob/f36331c1bfa4c4c202346b05dc3bd672f653e4df/src/node_http2.cc#L871),
    the early return on line 873 skips the
    DecrementCurrentSessionMemory(stream_buf_.len) call below (line 878).
    
    When we later finished processing the input chunk
    (https://github.com/nodejs/node/blob/f36331c1bfa4c4c202346b05dc3bd672f653e4df/src/node_http2.cc#L1858),
    we were calling DecrementCurrentSessionMemory(stream_buf_offset_) [line
    1875] which was a no-op since we just set stream_buf_offset_ to 0 [line
    1873].
    
    The correct amount to decrement by is still stream_buf_.len, since
    that's the amount we skipped previously (line 878).
    
    Fixes: #29223
    Refs: 164ac5b
    
    PR-URL: #30684
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Michael Lehenbauer authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    9fd6b5e View commit details
    Browse the repository at this point in the history
  200. doc: documenting a bit more FreeBSD case

    FreeBSD provides more up to date compilers than
    the one provided by the system.
    
    PR-URL: #30325
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Rod Vagg <rod@vagg.org>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    devnexen authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    efbe0a2 View commit details
    Browse the repository at this point in the history
  201. doc: fixed a typo in process.md

    If the process was not spawned with an IPC channel, `process.send`
    will be undefined and calling it as `process.send()` would throw error
    
    PR-URL: #30277
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Harendra Singh authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    ca96061 View commit details
    Browse the repository at this point in the history
  202. doc: clarify IncomingMessage.destroy() description

    State that the 'error' event is emitted on the underlying socket, not
    the IncomingMessage object.
    
    PR-URL: #30255
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    XMB5 authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    7bc8c85 View commit details
    Browse the repository at this point in the history
  203. tools: add unified plugin changing links for html docs

    This commit introduces additional stage in the process of generating
    html docs from markdown files. Plugin transforms links to *.md files
    in the respository to links to *.html files in the online documentation.
    
    Fixes: #28689
    
    PR-URL: #29946
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Marek Łabuz authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    da1e5ae View commit details
    Browse the repository at this point in the history
  204. doc: note that buf.buffer's contents might differ

    This bit me in a personal project since I had no reason to read the
    `buf.byteOffset` docs, so point readers there explicitly.
    
    PR-URL: #29651
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    strugee authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    5334f59 View commit details
    Browse the repository at this point in the history
  205. benchmark,doc,lib,test: prepare for padding lint rule

    Upcoming lint rule will require a blank line between consecutive
    functions. Add it in the places where we don't have it already.
    
    PR-URL: #30696
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    da0c673 View commit details
    Browse the repository at this point in the history
  206. tools: enforce blank line between functions

    Refs: #21128 (comment)
    
    PR-URL: #30696
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    a715c25 View commit details
    Browse the repository at this point in the history
  207. test: increase coverage for trace_events.js

    Add a test case to increase the test coverage for lib/trace_events.js.
    
    Refs: https://codecov.io/gh/nodejs/node/src/ea7a6f9dbd05654fff3f8c474ac0f5126bc87376/lib/trace_events.js#L70...75
    
    PR-URL: #30705
    Refs: https://coverage.nodejs.org/coverage-ea7a6f9dbd05654f/lib/trace_events.js.html#L70
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    e624bb5 View commit details
    Browse the repository at this point in the history
  208. stream: improve performance for sync write finishes

    Improve performance and reduce memory usage when a writable stream
    is written to with the same callback (which is the most common case)
    and when the write operation finishes synchronously (which is also
    often the case).
    
                                                             confidence improvement accuracy (*)    (**)   (***)
        streams/writable-manywrites.js sync='no' n=2000000                  0.99 %       ±3.20%  ±4.28%  ±5.61%
        streams/writable-manywrites.js sync='yes' n=2000000        ***    710.69 %      ±19.65% ±26.47% ±35.09%
    
    Refs: #18013
    Refs: #18367
    
    PR-URL: #30710
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    addaleax authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    ce6a865 View commit details
    Browse the repository at this point in the history
  209. test: remove unused callback argument

    PR-URL: #30712
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    276741a View commit details
    Browse the repository at this point in the history
  210. test: simplify forEach() usage

    Use an array literal instead of using split() on a very short string.
    
    PR-URL: #30712
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    5bb7bf3 View commit details
    Browse the repository at this point in the history
  211. test: remove unused callback argument

    PR-URL: #30712
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Copy the full SHA
    b37609d View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2019

  1. doc: update socket.bufferSize text

    Edit text for clarity and readability.
    
    PR-URL: #30723
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Trott authored and BethGriggs committed Dec 31, 2019
    Copy the full SHA
    2afe757 View commit details
    Browse the repository at this point in the history
  2. doc: update README.md to fix active/maint times

    Update REAMDE.md to be consistent with the
    active/maintenance times (12/18) outlined in
    https://github.com/nodejs/Release#release-plan. This was missed
    when the times were swapped in the Node.js 12 timeframe.
    
    PR-URL: #30707
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    mhdawson authored and BethGriggs committed Dec 31, 2019
    Copy the full SHA
    0e76b75 View commit details
    Browse the repository at this point in the history
  3. doc: update signature algorithm in release doc

    Updated doc to reflect what is now done in tools/release.sh
    
    PR-URL: #30673
    Reviewed-By: Rod Vagg <rod@vagg.org>
    MylesBorins authored and BethGriggs committed Dec 31, 2019
    Copy the full SHA
    a8b004b View commit details
    Browse the repository at this point in the history
  4. doc: revise REPL uncaught exception text

    Simplify the text about uncaught exceptions in the REPL.
    
    PR-URL: #30729
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Trott authored and BethGriggs committed Dec 31, 2019
    Copy the full SHA
    616927f View commit details
    Browse the repository at this point in the history
  5. test: fix test-benchmark-streams

    test-benchmark-streams is currently failing because the `sync` option is
    not specified in the test, resulting in too many benchmarks running.
    
    PR-URL: #30757
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and BethGriggs committed Dec 31, 2019
    Copy the full SHA
    295b9d0 View commit details
    Browse the repository at this point in the history
  6. test: use arrow functions in async-hooks tests

    Convert all anonymous callback functions in `test/async-hooks/*.js`
    to use arrow functions.
    
    `writing-tests.md` states to use arrow functions when appropriate.
    
    PR-URL: #30137
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    GaryGSC authored and BethGriggs committed Dec 31, 2019
    Copy the full SHA
    5414047 View commit details
    Browse the repository at this point in the history
  7. doc: fix typographical error

    Insert missing word.
    
    PR-URL: #30735
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Trott authored and BethGriggs committed Dec 31, 2019
    Copy the full SHA
    cef6c48 View commit details
    Browse the repository at this point in the history
  8. build,win: propagate error codes in vcbuild

    Don't exit vcbuild with error code 0 when cctest fails.
    
    PR-URL: #30724
    Refs: nodejs/build#1996
    Reviewed-By: Rod Vagg <rod@vagg.org>
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    joaocgreis authored and BethGriggs committed Dec 31, 2019
    Copy the full SHA
    dc52988 View commit details
    Browse the repository at this point in the history
  9. test: add an indicator isIBMi

    We have to skip some test cases on IBM i.
    On IBM i, process.platform and os.platform() both return aix,
    It is not enough to differentiate between IBM i and real AIX system.
    Also updated parallel/test-cluster-bind-privileged-port.js for test.
    
    PR-URL: #30714
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    dmabupt authored and BethGriggs committed Dec 31, 2019
    Copy the full SHA
    6105a41 View commit details
    Browse the repository at this point in the history
  10. test: add coverage for ERR_TLS_INVALID_PROTOCOL_VERSION

    There is currently no test that confirms that an invalid TLS protocol
    results in ERR_TLS_INVALID_PROTOCOL_VERSION. Add tests to check this for
    the `minVersion` and `maxVersion` options in `createSecureContext()`.
    
    Refs: https://codecov.io/gh/nodejs/node/src/c14c476614e3134867ddb997bdfe5a41ba668175/lib/_tls_common.js#L56
    Refs: https://coverage.nodejs.org/coverage-c14c476614e31348/lib/_tls_common.js.html#L56
    
    PR-URL: #30741
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Trott authored and BethGriggs committed Dec 31, 2019
    Copy the full SHA
    ca878f7 View commit details
    Browse the repository at this point in the history
  11. test: skip test-domain-error-types in debug mode temporariliy

    Until #30498 is resolved, skip
    test-domain-error-types on debug builds.
    
    PR-URL: #30629
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and BethGriggs committed Dec 31, 2019
    Copy the full SHA
    49c6c37 View commit details
    Browse the repository at this point in the history
  12. util: fix inspection of errors with tampered name or stack property

    This makes sure that `util.inspect()` does not throw while inspecting
    errors that have the name or stack property set to a different type
    than string.
    
    Fixes: #30572
    
    PR-URL: #30576
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    BridgeAR authored and BethGriggs committed Dec 31, 2019
    Copy the full SHA
    b08601b View commit details
    Browse the repository at this point in the history
  13. 2020-01-07, Version 12.14.1 'Erbium' (LTS)

    Notable changes:
    
    - crypto: fix key requirements in asymmetric cipher (Tobias Nießen)
      #30249
    - deps:
        - update llhttp to 2.0.1 (Fedor Indutny)
          #30553
        - update nghttp2 to 1.40.0 (gengjiawen)
          #30493
    - v8: mark serdes API as stable (Anna Henningsen)
      #30234
    
    PR-URL: #31069
    BethGriggs committed Dec 31, 2019
    Copy the full SHA
    9622fed View commit details
    Browse the repository at this point in the history