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

Release v12.6.0 proposal #28508

Merged
merged 144 commits into from Jul 3, 2019
Merged

Release v12.6.0 proposal #28508

merged 144 commits into from Jul 3, 2019

Commits on Jul 2, 2019

  1. test: make sure test function resolves in test-worker-debug

    Use the common `.then(common.mustCall())` check to verify that.
    Also, we should not use `process.abort()` in `test/parallel`; if
    the test fails, that leaves core dumps lying around on POSIX systems.
    
    PR-URL: #28155
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    addaleax authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    993c0db View commit details
    Browse the repository at this point in the history
  2. process: hide NodeEnvironmentFlagsSet's add function

    This makes sure that the `add` function is not visible by default
    when inspecting `process.allowedNodeEnvironmentFlags`.
    
    PR-URL: #28206
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    BridgeAR authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    e517b03 View commit details
    Browse the repository at this point in the history
  3. http2: refactor ping + settings object lifetime management

    Have clearer ownership relations between the `Http2Ping`,
    `Http2Settings` and `Http2Session` objects.
    
    Ping and Settings objects are now owned by the `Http2Session`
    instance, and deleted along with it, so neither type of object
    refers to the session after it is gone.
    In the case of `Http2Ping`s, that deletion is slightly delayed,
    so we explicitly reset its `session_` property.
    
    Fixes: #28088
    
    PR-URL: #28150
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    addaleax authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    d0de204 View commit details
    Browse the repository at this point in the history
  4. Revert "build: remove mips support"

    This reverts commit 9334e45.
    
    PR-URL: #27992
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Rod Vagg <rod@vagg.org>
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    mutao-loongson authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    2cf37f5 View commit details
    Browse the repository at this point in the history
  5. build: enable openssl support for mips64el

    V8 now resume supporting for mipsel/mips64el.
    This commit add linux64-mips64 platform dependent
    files in 'deps/openssl/config/archs/linux64-mips64',
    and update the corresponding gypi files and header
    files.
    
    Refs: https://groups.google.com/forum/#!topic/v8-dev/oXkv5OVCXyc
    
    PR-URL: #27992
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Rod Vagg <rod@vagg.org>
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    mutao-loongson authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    cfb5ca3 View commit details
    Browse the repository at this point in the history
  6. doc: remove instructions to post CI links

    Remove instructions (in the Collaborator Guide) to post CI links. The
    bot does that now.
    
    PR-URL: #28248
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    17efd93 View commit details
    Browse the repository at this point in the history
  7. crypto: fix crash when calling digest after piping

    When piping data into an SHA3 hash, EVP_DigestFinal_ex is called in
    hash._flush, bypassing safeguards in the JavaScript layer. Calling
    hash.digest causes EVP_DigestFinal_ex to be called again, resulting
    in a segmentation fault in the SHA3 implementation of OpenSSL.
    
    A relatively easy solution is to cache the result of calling
    EVP_DigestFinal_ex until the Hash object is garbage collected.
    
    PR-URL: #28251
    Fixes: #28245
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    tniessen authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    990feaf View commit details
    Browse the repository at this point in the history
  8. test: check custom inspection truncation in assert

    The assert module has some truncation logic in a custom inspect
    function. This was not covered in tests. Add tests to cover it.
    
    PR-URL: #28234
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    d949ead View commit details
    Browse the repository at this point in the history
  9. doc: tidy AssertionError text

    Several minor improvements to text. Remove some repetition.
    
    PR-URL: #28255
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    168c127 View commit details
    Browse the repository at this point in the history
  10. src: save exec path when initializing Environment

    PR-URL: #28252
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    joyeecheung authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    040b9db View commit details
    Browse the repository at this point in the history
  11. src: fall back to env->exec_path() for default profile directory

    When the current working directory is deleted, fall back to
    exec_path as the default profile directory.
    
    PR-URL: #28252
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    joyeecheung authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    c491e4d View commit details
    Browse the repository at this point in the history
  12. meta: update LICENSE

    A few dependencies have been updated or added without running
    license_builder.sh. This updates based on current master branch.
    
    PR-URL: #28260
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    d95d610 View commit details
    Browse the repository at this point in the history
  13. test: do not spawn rmdir in test-statwatcher

    PR-URL: #28276
    Refs: #21425
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    joaocgreis authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    3a2e67b View commit details
    Browse the repository at this point in the history
  14. lib: refactor unhandled rejection deprecation warning emission

    Emit the deprecation warning in the `kDefaultUnhandledRejections`
    case to reduce the number of branches on unhandled rejection mode -
    there is now only one switch case on it.
    
    Also rename `emitWarning()` to `emitUnhandledRejectionWarning()`
    to avoid ambiguity with `process.emitWarning()`
    
    PR-URL: #28258
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    joyeecheung authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    b6a7052 View commit details
    Browse the repository at this point in the history
  15. src: refactor uncaught exception handling

    The C++ land `node::FatalException()` is not in fact fatal anymore.
    It gives the user a chance to handle the uncaught exception
    globally by listening to the `uncaughtException` event. This patch
    renames it to `TriggerUncaughtException` in C++ to avoid the confusion.
    
    In addition rename the JS land handler to `onGlobalUncaughtException`
    to reflect its purpose - we have to keep the alias
    `process._fatalException` and use that for now since it has been
    monkey-patchable in the user land.
    
    This patch also
    
    - Adds more comments to the global uncaught exception handling routine
    - Puts a few other C++ error handling functions into the `errors`
      namespace
    - Moves error-handling-related bindings to the `errors` binding.
    
    Refs: 2b252ac
    
    PR-URL: #28257
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    joyeecheung authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    5b92eb4 View commit details
    Browse the repository at this point in the history
  16. test: add Worker + uncaughtException + process.exit() test

    PR-URL: #28259
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    addaleax authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    72f52a3 View commit details
    Browse the repository at this point in the history
  17. doc: clarify when http emits aborted event

    PR-URL: #28262
    Refs: #28172
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    ronag authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    359e20f View commit details
    Browse the repository at this point in the history
  18. test: add logging to statwatcher test

    Refs: #21425 (comment)
    
    PR-URL: #28270
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Refael Ackermann (רפאל פלחי) <refack@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    424d91a View commit details
    Browse the repository at this point in the history
  19. tools: update babel-eslint to 10.0.2

    PR-URL: #28266
    Refs: https://github.com/babel/babel-eslint/releases/tag/v10.0.2
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    ZYSzys authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    dd53e6a View commit details
    Browse the repository at this point in the history
  20. test: fix flaky test-worker-debug

    Address a race condition in the test; the Worker’s exit events
    may have been not recorded because the Worker exited before
    the listeners were attached.
    
    Fix the by attaching the event listeners before telling the Worker
    to exit.
    
    PR-URL: #28307
    Fixes: #28299
    Fixes: #28106
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    addaleax authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    c44db7f View commit details
    Browse the repository at this point in the history
  21. doc: add gengjiawen to collaborators

    PR-URL: #28322
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    gengjiawen authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    0856a4d View commit details
    Browse the repository at this point in the history
  22. test: use .code for error in setgid

    When the 'nobody' user is missing use .code to detect this, its more
    robust than than the .message string.
    
    Refs: #19594
    
    PR-URL: #28219
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@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: Yuta Hiroto <hello@hiroppy.me>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
    = authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    c14e4d5 View commit details
    Browse the repository at this point in the history
  23. worker: only unref port for stdin if we ref’ed it before

    We set the `kStartedReading` flag from `_read()` for Worker stdio,
    and then `ref()` the port.
    
    However, the `.on('end')` handler is also attached when `._read()`
    is not called, e.g. when `process.stdin` inside a Worker is prematurely
    ended because stdin was not enabled by the parent thread.
    
    In that case, we should not call `.unref()` for stdin if we did not
    also call `.ref()` for it before.
    
    Fixes: #28144
    PR-URL: #28153
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    addaleax authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    2053dd0 View commit details
    Browse the repository at this point in the history
  24. test: normalize location test-worker-process-cwd.js runs tests

    This change sets the process' directory to __dirname in order to
    normalize where the test is ran.  This addresses the situation that
    occurs when node is located in the root, and moving up a directory
    results in the same directory.  In that case, an error was thrown
    because the test interpreted this as a failed directory change.
    
    Fixes: #28193
    PR-URL: #28271
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    ssample812 authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    337aef0 View commit details
    Browse the repository at this point in the history
  25. benchmark: refactor buffer benchmarks

    Currently the buffer benchmarks take significantly too long to
    complete. This drastically reduces the overall runtime by removing
    obsolete checked variations and reducing the iteration count.
    
    It also improves the benchmarks by removing the deprecated
    `new Buffer(size)` usage and some other small improvements.
    
    PR-URL: #26418
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Peter Marshall <petermarshall@chromium.org>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    BridgeAR authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    db65594 View commit details
    Browse the repository at this point in the history
  26. report: add report versioning

    This commit adds a version to the diagnostic report feature.
    
    PR-URL: #28121
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    cjihrig authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    c4a357d View commit details
    Browse the repository at this point in the history
  27. doc: revise strict mode text in assert

    Revise the text describing `strict` mode.
    
    PR-URL: #28285
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    1f2b8c8 View commit details
    Browse the repository at this point in the history
  28. doc: document PerformanceNodeTiming.environment field

    PR-URL: #28280
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Yuriy Vasiyarov authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    57ac661 View commit details
    Browse the repository at this point in the history
  29. src: add error codes to errors thrown in node_i18n.cc

    PR-URL: #28221
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    yanivfriedensohn authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    0044fd2 View commit details
    Browse the repository at this point in the history
  30. build: link libatomic on mac and linux

    Fixes #28231
    
    PR-URL: #28232
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    devsnek authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    4d12cef View commit details
    Browse the repository at this point in the history
  31. n-api: make func argument of napi_create_threadsafe_function optional

    PR-URL: #27791
    Refs: #27592
    Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com>
    legendecas authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    53297e6 View commit details
    Browse the repository at this point in the history
  32. test: permit test-graph.signal to work without test runner

    test/async-hooks/test-graph.signal.js passes with the test.py test
    runner but fails if run directly with the `node` executable. Modify
    the test so it passes in both cases.
    
    PR-URL: #28305
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    8346596 View commit details
    Browse the repository at this point in the history
  33. test: remove test-ttywrap.writestream.js

    The test is never run in CI and may have never worked.
    
    Refs: #28304
    PR-URL: #28316
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    b448db3 View commit details
    Browse the repository at this point in the history
  34. doc: revise assert legacy mode text

    Revise the text for the `assert` module's legacy mode to make it simpler
    and more scannable.
    
    PR-URL: #28315
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    51742b8 View commit details
    Browse the repository at this point in the history
  35. doc: format ECMA-262 with a hyphen

    PR-URL: #28309
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    cjihrig authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    6063ceb View commit details
    Browse the repository at this point in the history
  36. doc: make multipleResolves docs less opinionated

    The 'multipleResolves' event does not necessarily indicate an
    error. This commit makes the documentation less opinionated, and
    includes potential caveats.
    
    PR-URL: #28314
    Refs: #24321
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    cjihrig authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    632fc1f View commit details
    Browse the repository at this point in the history
  37. child_process: attach child in promisification

    This commit updates the custom exec() and execFile()
    promisification to attach the ChildProcess instance to the
    returned Promise.
    
    PR-URL: #28325
    Fixes: #28244
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Wyatt Preul <wpreul@gmail.com>
    cjihrig authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    dd5e07f View commit details
    Browse the repository at this point in the history
  38. doc: remove obsolete external link

    The addons documentation links to an external node-qt repo as
    a production example. That repo hasn't been updated in over
    five years. This commit removes the link.
    
    PR-URL: #28326
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    cjihrig authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    a213eb7 View commit details
    Browse the repository at this point in the history
  39. doc: drop 'Note that' in addons docs

    This commit removes the usage of 'Note that' in the addons
    documentation. Note that this phrase was not adding anything
    meaningful to the docs.
    
    PR-URL: #28327
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    cjihrig authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    c9226f5 View commit details
    Browse the repository at this point in the history
  40. doc: fix typo in process.disconnect() docs

    "that" should be "the" in this sentence. This commit also
    restructures the sentence to avoid the word "process's"
    
    PR-URL: #28328
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    cjihrig authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    64f8530 View commit details
    Browse the repository at this point in the history
  41. bootstrap: --frozen-intrinsics override problem workaround

    PR-URL: #28254
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    guybedford authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    e607055 View commit details
    Browse the repository at this point in the history
  42. doc: remote "note that" from BUILDING.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    3d6ae65 View commit details
    Browse the repository at this point in the history
  43. doc: remove "note that" from CPP_STYLE_GUIDE.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    71cf558 View commit details
    Browse the repository at this point in the history
  44. doc: remove "note that" from releases.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    79f23b5 View commit details
    Browse the repository at this point in the history
  45. doc: remove "make that" from onboarding.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    3daced7 View commit details
    Browse the repository at this point in the history
  46. doc: remove "note that" from writing-tests.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    1591309 View commit details
    Browse the repository at this point in the history
  47. doc: remove "note that" from writing-and-running-benchmarks.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    ffba80b View commit details
    Browse the repository at this point in the history
  48. doc: remove "note that" from using-symbols.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    9461ef8 View commit details
    Browse the repository at this point in the history
  49. doc: remove "note that" from maintaining-the-build-files.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    a67afc8 View commit details
    Browse the repository at this point in the history
  50. doc: remove "note that" from maintaining-V8.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    9ac3a55 View commit details
    Browse the repository at this point in the history
  51. doc: remove "note that" from pull-requests.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    651ab3f View commit details
    Browse the repository at this point in the history
  52. doc: remove "note that" from zlib.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    6d94620 View commit details
    Browse the repository at this point in the history
  53. doc: remove "note that" from util.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    c3c86b6 View commit details
    Browse the repository at this point in the history
  54. doc: remove "note that" from url.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    5e979bf View commit details
    Browse the repository at this point in the history
  55. doc: remove "note that" from tty.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    204c9d8 View commit details
    Browse the repository at this point in the history
  56. doc: remove "note that" from tls.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    7bd2cae View commit details
    Browse the repository at this point in the history
  57. doc: remove "note that" from stream.md

    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    eba2e3c View commit details
    Browse the repository at this point in the history
  58. doc: remove "note that" from process.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    b0a6da7 View commit details
    Browse the repository at this point in the history
  59. doc: remove "note that" from net.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    f299c44 View commit details
    Browse the repository at this point in the history
  60. doc: remove "note that" from modules.md

    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    f4c6f7a View commit details
    Browse the repository at this point in the history
  61. doc: remove "note that" from http2.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    f0a857f View commit details
    Browse the repository at this point in the history
  62. doc: remove "note that" from http.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    3174bc1 View commit details
    Browse the repository at this point in the history
  63. doc: remove "note that" from fs.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    d65c90b View commit details
    Browse the repository at this point in the history
  64. doc: remove "note that" from events.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    520ef83 View commit details
    Browse the repository at this point in the history
  65. doc: remove "note that" from errors.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    7595486 View commit details
    Browse the repository at this point in the history
  66. doc: remove "note that" from domain.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    f3b4449 View commit details
    Browse the repository at this point in the history
  67. doc: remove "note that" from dns.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    33d9cf5 View commit details
    Browse the repository at this point in the history
  68. doc: remove "note that" from dgram.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    c41dbf5 View commit details
    Browse the repository at this point in the history
  69. doc: remove "note that" from crypto.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    898b69c View commit details
    Browse the repository at this point in the history
  70. doc: remove "note that" from console.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    af05ad1 View commit details
    Browse the repository at this point in the history
  71. doc: remove "note that" from cluster.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    cb89b3b View commit details
    Browse the repository at this point in the history
  72. doc: remove "note that" from cli.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    658c758 View commit details
    Browse the repository at this point in the history
  73. doc: remove "note that" from buffer.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    9ca7c86 View commit details
    Browse the repository at this point in the history
  74. doc: remove "note that" from async_hooks.md

    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    d384911 View commit details
    Browse the repository at this point in the history
  75. doc: remove "note that" from assert.md

    Refs: nodejs/remark-preset-lint-node#16
    
    PR-URL: #28329
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    d759e0f View commit details
    Browse the repository at this point in the history
  76. n-api: add error message for date expected

    PR-URL: #28303
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Gabriel Schulhof authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    ed8cee6 View commit details
    Browse the repository at this point in the history
  77. crypto: move _scrypt call out of handleError funct

    This commit moves the _scrypt function call out of the handleError
    function, which now only takes in an error object as its parameter.
    
    The motivation for this is to hopefully improve readability as it was
    not clear to me the first time I stepped through the code where the
    actual call to _scrypt was.
    
    PR-URL: #28318
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    danbev authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    def96ae View commit details
    Browse the repository at this point in the history
  78. crypto: move _randomBytes call out of handleError funct

    This commit moves the _randomBytes function call out of the handleError
    function, which now it takes in an error and a buf object as its
    parameters.
    
    PR-URL: #28318
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    danbev authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    47b230a View commit details
    Browse the repository at this point in the history
  79. crypto: move _pbkdf2 call out of handleError funct

    This commit moves the _pbkdf2 function call out of the handleError
    function, which now only takes in an error and a digest object as
    its parameters.
    
    PR-URL: #28318
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    danbev authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    558e9cf View commit details
    Browse the repository at this point in the history
  80. crypto: move _impl call out of handleError funct

    This commit moves the _impl function call out of the handleError
    function, which now only takes in an object as its parameter.
    
    PR-URL: #28318
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    danbev authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    f21ddb2 View commit details
    Browse the repository at this point in the history
  81. test: use regex for OpenSSL function name

    This commit modifies test-crypt-scrypt.js to use a regular expression
    for the function name in the error message, similar to what is done for
    the error code.
    
    The motivation for this change comes from a case where we (Red Hat)
    patch OpenSSL and the memory limit checking is done in a different
    function, meaning that the function name from which this error
    originates differs from that when linking to the OpenSSL version shipped
    with Node.js.
    
    PR-URL: #28289
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    danbev authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    5047006 View commit details
    Browse the repository at this point in the history
  82. doc: add example code for fs.existsSync()

    PR-URL: #28354
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    nicolasrestrepo authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    818f084 View commit details
    Browse the repository at this point in the history
  83. doc: add example for Buffer.isEncoding()

    PR-URL: #28360
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Meyito authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    4762399 View commit details
    Browse the repository at this point in the history
  84. doc: fix sentence about Http2Stream destruction

    PR-URL: #28336
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    cjihrig authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    d25d40e View commit details
    Browse the repository at this point in the history
  85. test: fix assertion argument order in test-buffer-failed-alloc-type

    PR-URL: #28349
    Reviewed-By: Rich Trott <rtrott@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: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    RamirezAlex authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    758a003 View commit details
    Browse the repository at this point in the history
  86. doc: add missing word in frameError event docs

    PR-URL: #28387
    Reviewed-By: Luigi Pinca <luigipinca@gmail.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: Rich Trott <rtrott@gmail.com>
    cjihrig authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    0e6196c View commit details
    Browse the repository at this point in the history
  87. doc,n-api: fix metadata for napi_create_threadsafe_function

    PR-URL: #28410
    Refs: #27791
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    richardlau authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    91d5a4d View commit details
    Browse the repository at this point in the history
  88. test: duplicated buffer in test-stream2-writable.js

    PR-URL: #28380
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Adrian Estrada <edsadr@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@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>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    duvanmonsa authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    16926a8 View commit details
    Browse the repository at this point in the history
  89. test: move non-pummel crypto DH tests to parallel

    Some parts of pummel/test-crypto-dh.js will be just fine in
    parallel/test-crypto-dh.js. Move them there.
    
    PR-URL: #28390
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    e161744 View commit details
    Browse the repository at this point in the history
  90. test: split pummel crypto dh test into two separate tests

    Split test-crypto-dh into two tests so that it does not time out in CI.
    With a recent OpenSSL upgrade, getDiffieHellman() is much slower than
    before.
    
    PR-URL: #28390
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    9f508e3 View commit details
    Browse the repository at this point in the history
  91. test: make test-dh-regr more efficient where possible

    test-dh-regr is timing out in CI because crypto.createDiffieHellman() is
    considerably slower after an OpenSSL upgrade. This PR modifies the
    change from 11ad744 which made the test
    FIPS-compatible. When not in FIPS mode, the test will use a shorter key
    which will enable it to run much faster.
    
    PR-URL: #28390
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    69f17f1 View commit details
    Browse the repository at this point in the history
  92. doc: add example code for worker.isDead() to cluster.md

    PR-URL: #28362
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    jessecogollo authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    b6d0cbc View commit details
    Browse the repository at this point in the history
  93. doc: cleanup pendingSettingsAck docs

    This commit rephrases the first sentence of the http2 session
    pendingSettingsAck property docs. It also formats SETTINGS
    consistently.
    
    PR-URL: #28388
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    cjihrig authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    3d693c5 View commit details
    Browse the repository at this point in the history
  94. doc: fix nits regarding stream utilities

    * Unify headings.
    * Conform method mentions with the style guide.
    * Fix links.
    
    PR-URL: #28385
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    vsemozhetbyt authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    e3dd4d5 View commit details
    Browse the repository at this point in the history
  95. test: fix order of assertion arguments in test-event-emitter-num-args

    PR-URL: #28368
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@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>
    luisgallon authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    4973f21 View commit details
    Browse the repository at this point in the history
  96. vm: increase code coverage of source_text_module.js

    PR-URL: #28363
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    kball authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    e6c7ebe View commit details
    Browse the repository at this point in the history
  97. test: change order of arguments

    PR-URL: #28359
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    MistyBlunch authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    4bca4a5 View commit details
    Browse the repository at this point in the history
  98. test: tls switch arguments order for the assertion

    PR-URL: #28340
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@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>
    ltciro authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    ecf4494 View commit details
    Browse the repository at this point in the history
  99. test: switch assertion order

    PR-URL: #28339
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    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: Yongsheng Zhang <zyszys98@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>
    yomarguti authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    3bc62b9 View commit details
    Browse the repository at this point in the history
  100. doc: remove N-API version for Experimental APIs

    Experimental APIs should not have an N-API version
    specified. Remove cases were one had been added
    incorrectly.
    
    PR-URL: #28330
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    mhdawson authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    e55d0ef View commit details
    Browse the repository at this point in the history
  101. stream: add writableFinished

    add a new getter to duplex stream to replace the property `this
    .writableState.finished` of the object that inherited duplex.
    
    Refs: #445
    
    PR-URL: #28007
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    zero1five authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    1650bcf View commit details
    Browse the repository at this point in the history
  102. http2: use writableFinished instead of _writableState

    PR-URL: #28007
    Refs: #445
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    zero1five authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    d8942f8 View commit details
    Browse the repository at this point in the history
  103. tools: fix typo in cache_builder.cc

    PR-URL: #28418
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    danbev authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    619eb93 View commit details
    Browse the repository at this point in the history
  104. doc: replace version with REPLACEME

    Node 12.4.0 has already been released. Replace the version with
    REPLACEME so that the proper version gets inserted at release
    time.
    
    PR-URL: #28431
    Refs: #28007
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    cjihrig authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    5367d02 View commit details
    Browse the repository at this point in the history
  105. test: switch the param order in the assertion

    Switch the param order in the assertion at line 140
    so that they are in the correct order (actual, expected)
    
    PR-URL: #28341
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@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>
    raveneyex authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    b822545 View commit details
    Browse the repository at this point in the history
  106. test: eliminate duplicate statements

    PR-URL: #28342
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@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>
    khriztianmoreno authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    e63990e View commit details
    Browse the repository at this point in the history
  107. test: refactoring test, reordering arguments

    Refactors the test-buffer-inheritance.js test, switches the order of the
    arguments to be: 'actual', 'expected'
    
    PR-URL: #28343
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@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>
    d4vsanchez authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    d88c697 View commit details
    Browse the repository at this point in the history
  108. test: fixing broken test

    test didn't throw the error, it was just returning it. So I removed
    the try/catch and assigned the error to a variable
    
    PR-URL: #28345
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    MelinaMejia95 authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    cd78c5e View commit details
    Browse the repository at this point in the history
  109. net: replace _writableState.finished with writableFinished

    Replace usage of quasi-private _writableState.finished with public
    writableFinished property.
    
    PR-URL: #27974
    Refs: #445
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    8ad880f View commit details
    Browse the repository at this point in the history
  110. tools: update remark-preset-lint-node to 1.7.0

    This update enables linting for "note that" in our docs. That phrase is
    almost always superfluous. Sentences are almost always clearer and
    stronger without it.
    
    PR-URL: #28393
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    03e3ccd View commit details
    Browse the repository at this point in the history
  111. doc: clarify response.finished

    PR-URL: #28411
    Refs: jshttp/on-finished#30
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    ronag authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    3c047b3 View commit details
    Browse the repository at this point in the history
  112. tools: update eslint

    This updates eslint from v6.0.0-alpha.2 to v6.0.1
    
    This also removes eslint-disable comments about `bigint` typeof
    checks. Those would otherwise have caused linting errors now that
    `bigint` is accepted as valid entry.
    
    PR-URL: #28173
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    BridgeAR authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    b744bd9 View commit details
    Browse the repository at this point in the history
  113. process: split routines used to enhance fatal exception stack traces

    Previously the enhancement were done right after emitting
    `'uncaughtException'`, which meant by the time we knew the
    exception was fatal in C++, the error.stack had already been
    patched.
    
    This patch moves those routines to be called later during the
    fatal exception handling, and split them into two stages:
    before and after the inspector is notified by the invocation of
    `V8Inspector::exceptionThrown`. We now expand the stack to include
    additional informations about unhandled 'error' events before
    the inspector is notified, but delay the highlighting of the
    frames until after the inspector is notified, so that the
    ANSI escape sequences won't show up in the inspector console.
    
    PR-URL: #28308
    Fixes: #28287
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    joyeecheung authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    0fd6524 View commit details
    Browse the repository at this point in the history
  114. doc: clean up isDead() example

    This commit removes extra whitespace and some awkward text
    containing typos from the cluster worker.isDead() code
    sample.
    
    PR-URL: #28421
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    cjihrig authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    96e8b98 View commit details
    Browse the repository at this point in the history
  115. doc: add links to 12.5.0 changelog notable changes

    PR-URL: #28450
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    devsnek authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    0d2d116 View commit details
    Browse the repository at this point in the history
  116. doc: update readline asyncIterator docs

    This commit:
    - Removes an unnecessary stability index entry. These generally
      are not included for Stable entries.
    - Remove mention of experimental status that is not true anymore.
    - Remove use of "we"
    - Remove use of relative time phrasing.
    - Misc cleanup.
    
    PR-URL: #28425
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    cjihrig authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    3fea2e4 View commit details
    Browse the repository at this point in the history
  117. doc: reformat for-await-of

    Instead of `for`-`await`-`of`, prefer `for await...of`.
    
    PR-URL: #28425
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    cjihrig authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    14f6cee View commit details
    Browse the repository at this point in the history
  118. test: use assert() in N-API async test

    The `Execute()` callback is not allowed to call into JS, so
    we should use `assert()` instead of potentially throwing JS errors.
    
    PR-URL: #28423
    Fixes: nodejs/help#1998
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    addaleax authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    79b1bf5 View commit details
    Browse the repository at this point in the history
  119. tools: fix typo in js2c.py

    PR-URL: #28417
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    danbev authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    60cf911 View commit details
    Browse the repository at this point in the history
  120. tools: remove out-of-date code-cache-path comment

    This commit removes the comment in cache_builder.cc regarding the usage
    of --code-cache-path with configure.
    
    Commit 14df42f ("build: run
    `mkcodecache` as an action") deprecated this option and it is always
    set to yes (unless cross compiling).
    
    PR-URL: #28419
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    danbev authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    3d014e1 View commit details
    Browse the repository at this point in the history
  121. tools: remove unused using declarations

    PR-URL: #28422
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    danbev authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    21d2bdd View commit details
    Browse the repository at this point in the history
  122. test: do not use fixed port in async-hooks/test-httparser-reuse

    Otherwise this was failing on machines which already had a service
    running on port 3000.
    
    PR-URL: #28312
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    addaleax authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    dce4947 View commit details
    Browse the repository at this point in the history
  123. http2: propagate session destroy code to streams

    Currently, when an HTTP2 session is destroyed with a code, that
    code is not propagated to the destroy() call of the session's
    streams. This commit forwards any code used to destroy a session
    to its corresponding streams.
    
    PR-URL: #28435
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    cjihrig authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    d8d4f9b View commit details
    Browse the repository at this point in the history
  124. test: reset validity dates of expired certs

    PR-URL: #28473
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    sam-github authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    82b80e0 View commit details
    Browse the repository at this point in the history
  125. deps: upgrade to libuv 1.30.0

    Notable changes:
    
    - Support for the Haiku platform has been added.
    - The maximum UV_THREADPOOL_SIZE has been increased from
      128 to 1024.
    - uv_fs_copyfile() now works properly when the source and
      destination files are the same.
    
    PR-URL: #28449
    Fixes: #27746
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    cjihrig authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    4367732 View commit details
    Browse the repository at this point in the history
  126. tools: change editorconfig's 'ignore' to 'unset'

    According to https://editorconfig.org/#supported-properties the
    canonical way to disable a property is to set it to 'unset'. We did use
    'ignore' and this generally works because tools ignore unknown values
    but some of them like `eclint` are picky on it.
    
    PR-URL: #28440
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    silverwind authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    b808484 View commit details
    Browse the repository at this point in the history
  127. esm: ensure cwd-relative imports for module --eval

    PR-URL: #28389
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    guybedford authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    c9a96ae View commit details
    Browse the repository at this point in the history
  128. src: fix small memory leak

    PR-URL: #28452
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    devnexen authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    624fd17 View commit details
    Browse the repository at this point in the history
  129. process: expose uv_rusage on process.resourcesUsage()

    As discussed in nodejs/diagnostics#161,
    the core should expose important metrics about the runtime, this PR's
    goal is to let user get the number of io request made, and lower level
    mertrics like the page faults and context switches.
    
    PR-URL: #28018
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    vmarchaud authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    19f9281 View commit details
    Browse the repository at this point in the history
  130. doc: fix swapedOut typo

    This corrects a typo in the process.resourceUsage() docs. The
    field is named swappedOut, not swapedOut.
    
    PR-URL: #28497
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    cjihrig authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    0111c61 View commit details
    Browse the repository at this point in the history
  131. http2: remove square brackets from parsed hostname

    Make `http2.connect()` work when using URLs with literal IPv6
    addresses.
    
    Fixes: #28216
    
    PR-URL: #28406
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    lpinca authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    fd4d1e2 View commit details
    Browse the repository at this point in the history
  132. test: add tests to assert.ok and improve coverage

    Refs: https://coverage.nodejs.org/coverage-1a4f27ae21698d0c/lib/assert.js.html#L364
    
    PR-URL: #28355
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    estrada9166 authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    004d26d View commit details
    Browse the repository at this point in the history
  133. test: add test to doesNotThrow; validate if actual with regex

    Refs: https://coverage.nodejs.org/coverage-1a4f27ae21698d0c/lib/assert.js.html#L736
    
    PR-URL: #28355
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    estrada9166 authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    937afcc View commit details
    Browse the repository at this point in the history
  134. lib: fix stack overflow check to not break on primitives

    PR-URL: #28338
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    kball authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    5f9ee9f View commit details
    Browse the repository at this point in the history
  135. src: don't abort on EIO when restoring tty

    EIO has been observed to be returned by the Linux kernel under some
    circumstances. Reading through drivers/tty/tty_io*.c, it seems to
    indicate the tty went away. Of course none of this is documented.
    
    Fixes: #28479
    
    PR-URL: #28490
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gus Caplan <me@gus.host>
    bnoordhuis authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    035b613 View commit details
    Browse the repository at this point in the history
  136. doc: merge bootstrap/README.md into BUILDING.md

    plus some minor tweaks
    
    PR-URL: #28465
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com>
    rvagg authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    eee66c5 View commit details
    Browse the repository at this point in the history
  137. tools: fix v8 testing with devtoolset on ppcle

    The devtoolset doesn't use or set the CXX, etc, env vars, so ignore them
    if not present.
    
    PR-URL: #28458
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    sam-github authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    d38b985 View commit details
    Browse the repository at this point in the history
  138. tools: move python code out of jenkins shell

    https://ci.nodejs.org/job/node-test-commit-v8-linux/configure echoes
    python code into tools and runs it. Move these scripts into tools for
    better maintainability.
    
    Once this lands and is back-ported into LTS branches a bunch of shell
    code can be deleted from the job.
    
    PR-URL: #28458
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    sam-github authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    40ae2a6 View commit details
    Browse the repository at this point in the history
  139. tools: update unified-args to 7.0.0 for md-lint CLI

    Update unified-args from 6.0.0 to 7.0.0 for
    tools/node-lint-md-cli-rollup. This removes a vulnerable package
    (set-value@0.4.3) from the dependencies.
    
    Refs: https://app.snyk.io/vuln/SNYK-JS-SETVALUE-450213
    
    PR-URL: #28434
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    1b4a7fb View commit details
    Browse the repository at this point in the history
  140. test: skip tests related to CI failures on AIX

    These tests seem to trigger failures in the entire CI job (not just the
    test) on AIX. Skip them to see if that helps alleviate spurious failures
    in node-test-commit-aix (and the upstream PR and commit test jobs).
    
    See:
    - nodejs/build#1820 (comment)
    - nodejs/build#1847 (comment)
    
    PR-URL: #28469
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    sam-github authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    3f6f968 View commit details
    Browse the repository at this point in the history
  141. test: fix flaky test-vm-timeout-escape-nexttick

    PR-URL: #28461
    Fixes: #24120
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Trott authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    8a64b70 View commit details
    Browse the repository at this point in the history
  142. build: expose napi_build_version variable

    Expose `napi_build_version` to allow `node-gyp` to make it
    available for building native addons.
    
    Fixes: nodejs/node-gyp#1745
    Refs: nodejs/abi-stable-node#371
    PR-URL: #27835
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    NickNaso authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    cd71aad View commit details
    Browse the repository at this point in the history
  143. deps: upgrade to libuv 1.30.1

    This upgrade is a small patch release, fixing compilation
    errors on Android, Cygwin, and uClibc - none of which are
    tested in the CI.
    
    PR-URL: #28511
    Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    cjihrig authored and targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    3a493b8 View commit details
    Browse the repository at this point in the history
  144. 2019-07-03, Version 12.6.0 (Current)

    Notable changes:
    
    * build:
      * Experimental support for building Node.js on MIPS architecture
        is back. #27992
    * child_process:
      * The promisified versions of `child_process.exec` and
        `child_process.execFile` now both return a `Promise` which has the
    	child instance attached to their `child` property.
    	#28325
    * deps:
      * Updated libuv to 1.30.1. #28449,
        #28511
        * Support for the Haiku platform has been added.
        * The maximum `UV_THREADPOOL_SIZE` has been increased from 128 to
    	  1024.
        * `uv_fs_copyfile()` now works properly when the source and
    	  destination files are the same.
    * process:
      * A new method, `process.resourceUsage()` was added. It returns
        resource usage for the current process, such as CPU time.
    	#28018
    * src:
      * Fixed an issue related to stdio that could lead to a crash of the
        process in some circumstances.
    	#28490
    * stream:
      * Added a `writableFinished` property to writable streams. It
        indicates that all the data has been flushed to the underlying
    	system. #28007
    * worker:
      * Fixed an issue that prevented worker threads to listen for data on
        stdin. #28153
    * meta:
      * Added Jiawen Geng (https://github.com/gengjiawen) to collaborators.
        #28322
    
    PR-URL: #28508
    targos committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    e71a0f4 View commit details
    Browse the repository at this point in the history