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

v15.1.0 release proposal #35948

Merged
merged 115 commits into from Nov 4, 2020
Merged

v15.1.0 release proposal #35948

merged 115 commits into from Nov 4, 2020

Commits on Nov 3, 2020

  1. src: add --heapsnapshot-near-heap-limit option

    This patch adds a --heapsnapshot-near-heap-limit CLI option
    that takes heap snapshots when the V8 heap is approaching
    the heap size limit. It will try to write the snapshots
    to disk before the program crashes due to OOM.
    
    PR-URL: #33010
    Refs: #27552
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    joyeecheung authored and targos committed Nov 3, 2020
    Copy the full SHA
    a7f37bc View commit details
    Browse the repository at this point in the history
  2. deps: V8: backport 4263f8a5e8e0

    Original commit message:
    
        parser: better error message for await+tla
    
        Bug: v8:9344, v8:6513
        Change-Id: I1854e483515e7da99192367b6764a0ec7c8b41d9
        Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2411687
        Reviewed-by: Marja Hölttä <marja@chromium.org>
        Commit-Queue: Gus Caplan <snek@chromium.org>
        Cr-Commit-Position: refs/heads/master@{#70099}
    
    Refs: v8/v8@4263f8a
    
    PR-URL: #35650
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    bdougie authored and targos committed Nov 3, 2020
    Copy the full SHA
    894419c View commit details
    Browse the repository at this point in the history
  3. test: add windows and C++ coverage

    Collect Windows and C++ coverage. Configure codecov so that
    comments are more concise and are only left when coverage
    varies.
    
    PR-URL: #35670
    Fixes: #35696
    Refs: #35653
    Refs: #35646
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    bcoe authored and targos committed Nov 3, 2020
    Copy the full SHA
    11eca36 View commit details
    Browse the repository at this point in the history
  4. v8: implement v8.takeCoverage()

    Add an v8.takeCoverage() API that allows the user to write the
    coverage started by NODE_V8_COVERAGE to disk on demand.
    The coverage can be written multiple times during the lifetime
    of the process, each time the execution counter will be reset.
    When the process is about to exit, one last coverage will
    still be written to disk.
    
    Also refactors the internal profiler connection code
    so that we use the inspector response id to identify
    the profile response instead of using an ad-hoc flag in C++.
    
    PR-URL: #33807
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Ben Coe <bencoe@gmail.com>
    joyeecheung authored and targos committed Nov 3, 2020
    Copy the full SHA
    15ffed5 View commit details
    Browse the repository at this point in the history
  5. v8: implement v8.stopCoverage()

    Add a v8.stopCoverage() API to stop the coverage collection
    started by NODE_V8_COVERAGE - this would be useful in
    conjunction with v8.takeCoverage() if the user don't want
    to emit the coverage at the process exit but still want
    to collect it on demand at some point.
    
    PR-URL: #33807
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Ben Coe <bencoe@gmail.com>
    joyeecheung authored and targos committed Nov 3, 2020
    Copy the full SHA
    7bfa872 View commit details
    Browse the repository at this point in the history
  6. build: add license-builder GitHub Action

    PR-URL: #35712
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    bnb authored and targos committed Nov 3, 2020
    Copy the full SHA
    a9c0924 View commit details
    Browse the repository at this point in the history
  7. doc: add Installing Node.js header in BUILDING.md

    PR-URL: #35710
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    PoojaDurgad authored and targos committed Nov 3, 2020
    Copy the full SHA
    f269c6c View commit details
    Browse the repository at this point in the history
  8. doc,esm: document experimental warning removal

    PR-URL: #35750
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Guy Bedford <guybedford@gmail.com>
    aduh95 authored and targos committed Nov 3, 2020
    Copy the full SHA
    05a888a View commit details
    Browse the repository at this point in the history
  9. doc,src,test: revise C++ code for linter update

    PR-URL: #35719
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Trott authored and targos committed Nov 3, 2020
    Copy the full SHA
    564aade View commit details
    Browse the repository at this point in the history
  10. tools: bump cpplint to 1.5.0

    https://github.com/cpplint/cpplint/releases/tag/1.5.0
    
    PR-URL: #35719
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Trott authored and targos committed Nov 3, 2020
    Copy the full SHA
    042d4dd View commit details
    Browse the repository at this point in the history
  11. tools: refloat 7 Node.js patches to cpplint.py

    Cherry-pick 12c8b4d
    Original commit message:
        This commit is a suggestion for adding a rule for NULL usages in the
        code base. This will currently report a number of errors which could be
        ignored using // NOLINT (readability/null_usage)
    
        PR-URL: #17373
        Reviewed-By: Jon Moss <me@jonathanmoss.me>
        Reviewed-By: Anna Henningsen <anna@addaleax.net>
        Reviewed-By: Timothy Gu <timothygu99@gmail.com>
        Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
        Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
        Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
        Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    
    Refs: 12c8b4d
    
    Cherry-pick fc81e80
    Original commit message:
    
        Update cpplint.py to check for inline headers when the corresponding
        header is already included.
    
        PR-URL: #21521
        Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
        Reviewed-By: James M Snell <jasnell@gmail.com>
    
    Refs: fc81e80
    
    Cherry-pick cbc3dd9
    Original commit message:
    
        src, tools: add check for left leaning pointers
    
        This commit adds a rule to cpplint to check that pointers in the code
        base lean to the left and not right, and also fixes the violations
        reported.
    
        PR-URL: #21010
        Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
        Reviewed-By: Anna Henningsen <anna@addaleax.net>
        Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
        Reviewed-By: James M Snell <jasnell@gmail.com>
    
    Refs: cbc3dd9
    
    Cherry-pick 9029981
    Original commit message:
    
        tools: fix cpplint.py header rules
    
        THIS COMMIT SHOULD GO WITH THE NEXT. IT WILL FIND NEW LINT.
    
        PR-URL: #26306
        Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    
    Refs: 9029981
    
    Cherry-pick 0a25ace
    Original commit message:
    
        tools: move cpplint configuration to .cpplint
    
        PR-URL: #27098
        Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
        Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    
    Refs: 0a25ace
    
    Cherry-pick afa9a72
    Original commit message:
    
        tools: refloat update link to google styleguide for cpplint
    
        This commit updates two old links to Google's C++ styleguide which
        currently result in a 404 when accessed.
    
        PR-URL: #30876
        Reviewed-By: Michaël Zasso <targos@protonmail.com>
        Reviewed-By: David Carlier <devnexen@gmail.com>
        Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
        Reviewed-By: Richard Lau <riclau@uk.ibm.com>
        Reviewed-By: Rich Trott <rtrott@gmail.com>
    
    Refs: afa9a72
    
    Cherry-pick e23bf8f
    Original commit message:
    
        tools,src: refloat forbid usage of v8::Persistent
    
        `v8::Persistent` comes with the surprising catch that it requires
        manual cleanup. `v8::Global` doesn’t, making it easier to use,
        and additionally provides move semantics. New code should always
        use `v8::Global`.
    
        PR-URL: #31018
        Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
        Reviewed-By: Richard Lau <riclau@uk.ibm.com>
        Reviewed-By: James M Snell <jasnell@gmail.com>
        Reviewed-By: David Carlier <devnexen@gmail.com>
        Reviewed-By: Rich Trott <rtrott@gmail.com>
        Reviewed-By: Gus Caplan <me@gus.host>
        Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
        Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
        Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
    
    PR-URL: #35569
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    
    PR-URL: #35719
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Trott authored and targos committed Nov 3, 2020
    Copy the full SHA
    66da122 View commit details
    Browse the repository at this point in the history
  12. doc: update package.json field definitions

    Only imports has the experimental status right now but technically all
    ESM related features are currently experimental. The list also doesn't
    appear to be in any specific order so I've grouped the experimental
    features together.
    
    PR-URL: #35741
    Reviewed-By: Guy Bedford <guybedford@gmail.com>
    Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Ujjwal Sharma <ryzokuken@disroot.org>
    MylesBorins authored and targos committed Nov 3, 2020
    Copy the full SHA
    6590f8c View commit details
    Browse the repository at this point in the history
  13. deps: update to cjs-module-lexer@0.4.3

    PR-URL: #35745
    Reviewed-By: Jan Krems <jan.krems@gmail.com>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Ujjwal Sharma <ryzokuken@disroot.org>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    guybedford authored and targos committed Nov 3, 2020
    Copy the full SHA
    e0a1541 View commit details
    Browse the repository at this point in the history
  14. stream: fix duplicate logic in stream destroy

    Fix duplicate logic in stream destroy as the same logic is being shared
    across methods and thus can be encapsulated into a single method.
    
    PR-URL: #35727
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Robert Nagy <ronagy@icloud.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
    yashLadha authored and targos committed Nov 3, 2020
    Copy the full SHA
    88eb619 View commit details
    Browse the repository at this point in the history
  15. doc: this prints replaced with this is printed

    PR-URL: #35515
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Christian Clauss <cclauss@me.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    PoojaDurgad authored and targos committed Nov 3, 2020
    Copy the full SHA
    1892532 View commit details
    Browse the repository at this point in the history
  16. doc: improve text for breakOnSigint

    * Make the 7 instances of breakOnSigint text blocks consistent.
    * Use present tense.
    * Use kbd element for keystrokes.
    * Minor style edits.
    
    PR-URL: #35692
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and targos committed Nov 3, 2020
    Copy the full SHA
    890b03e View commit details
    Browse the repository at this point in the history
  17. doc: add missing link in Node.js 14 Changelog

    Refs: #35525
    
    PR-URL: #35782
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    aduh95 authored and targos committed Nov 3, 2020
    Copy the full SHA
    292b529 View commit details
    Browse the repository at this point in the history
  18. doc: update console.error example

    Signed-off-by: Lee, Bonggi <iyabong@gmail.com>
    
    PR-URL: #34964
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    iyabong authored and targos committed Nov 3, 2020
    Copy the full SHA
    4b7708a View commit details
    Browse the repository at this point in the history
  19. test: add additional deprecation warning tests for rmdir recursive

    PR-URL: #35683
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Ben Coe <bencoe@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    iansu authored and targos committed Nov 3, 2020
    Copy the full SHA
    0c5e8ed View commit details
    Browse the repository at this point in the history
  20. http2: remove unsupported %.* specifier

    The debug sprintf doesn't support %.* specifiers
    
    Fixes: #35688
    
    PR-URL: #35694
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Momtchil Momtchev authored and targos committed Nov 3, 2020
    Copy the full SHA
    cfe61b8 View commit details
    Browse the repository at this point in the history
  21. dns: add setLocalAddress to Resolver

    Fixes: #34818
    
    PR-URL: #34824
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Roman Reiss <me@silverwind.io>
    daguej authored and targos committed Nov 3, 2020
    Copy the full SHA
    548f91a View commit details
    Browse the repository at this point in the history
  22. doc: document changes for */promises alias modules

    Fixes: #35740
    
    Refs: #31553
    Refs: #32953
    Refs: #33991
    Refs: #34001
    Refs: #34055
    Refs: #34962
    
    Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Co-authored-by: Trivikram Kamat <trivikr.dev@gmail.com>
    Co-authored-by: Rich Trott <rtrott@gmail.com>
    
    PR-URL: #34002
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Masashi Hirano <shisama07@gmail.com>
    Reviewed-By: Pranshu Srivastava <rexagod@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    ExE-Boss authored and targos committed Nov 3, 2020
    Copy the full SHA
    55b7a6c View commit details
    Browse the repository at this point in the history
  23. http2: add updateSettings to both http2 servers

    Allow the user to update the server settings
    after using http2.createSecureServer() or
    after using http2.createServer().
    
    Fixes: #35353
    
    PR-URL: #35383
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
    Vincent Boivin authored and targos committed Nov 3, 2020
    Copy the full SHA
    883ed4b View commit details
    Browse the repository at this point in the history
  24. http2: reinject data received before http2 is attached

    Reinject the data already received from the TLS
    socket when the HTTP2 client is attached with a
    delay
    
    Fixes: #35475
    
    PR-URL: #35678
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Alba Mendez <me@alba.sh>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
    Momtchil Momtchev authored and targos committed Nov 3, 2020
    Copy the full SHA
    5833007 View commit details
    Browse the repository at this point in the history
  25. http2: fix reinjection check

    We reinject when the sockets has already waiting
    data, remarked by @mildsunrise
    
    Co-authored-by: Alba Mendez <me@alba.sh>
    
    PR-URL: #35678
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Alba Mendez <me@alba.sh>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
    Momtchil Momtchev authored and targos committed Nov 3, 2020
    Copy the full SHA
    86ed87b View commit details
    Browse the repository at this point in the history
  26. doc: add a example code to API doc property

    example code added to the process.setgroups() API
    doc property in process.md
    
    PR-URL: #35738
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    PoojaDurgad authored and targos committed Nov 3, 2020
    Copy the full SHA
    f6aa7c8 View commit details
    Browse the repository at this point in the history
  27. timers: correct explanation in comment

    PR-URL: #35437
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    wjabbour authored and targos committed Nov 3, 2020
    Copy the full SHA
    a41e3eb View commit details
    Browse the repository at this point in the history
  28. stream: remove redundant context from comments

    Using the variable name in the comment and justifying the type seems
    redundant to me and instead it should defined the entity which it is
    acting, like in our case it is acting as a flag to control the flow in
    streams.
    
    PR-URL: #35728
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Robert Nagy <ronagy@icloud.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
    yashLadha authored and targos committed Nov 3, 2020
    Copy the full SHA
    70c41a8 View commit details
    Browse the repository at this point in the history
  29. doc: mark optional parameters in timers.md

    PR-URL: #35764
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    vsemozhetbyt authored and targos committed Nov 3, 2020
    Copy the full SHA
    368ae95 View commit details
    Browse the repository at this point in the history
  30. doc: remove stability warning in v8 module doc

    Remove note indicating that the APIs can change at any time. This module
    migrated from Experimental to Stable 6 years ago (in io.js 1.4.2).
    
    PR-URL: #35774
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Trott authored and targos committed Nov 3, 2020
    Copy the full SHA
    f49afb5 View commit details
    Browse the repository at this point in the history
  31. doc: fix header level in fs.md

    Indentation for #fs_fs_promises_api is level 2 but it should be level 3.
    
    PR-URL: #35771
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    ax1 authored and targos committed Nov 3, 2020
    Copy the full SHA
    0e9acf8 View commit details
    Browse the repository at this point in the history
  32. test: refactor coverage logic

    Cleanup logic in Makefile for coverage. Update BUILDING.md
    accordingly.
    
    PR-URL: #35767
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    bcoe authored and targos committed Nov 3, 2020
    Copy the full SHA
    110ef8a View commit details
    Browse the repository at this point in the history
  33. doc: fix a typo in CHANGELOG_V12

    PR-URL: #35786
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
    iShibi authored and targos committed Nov 3, 2020
    Copy the full SHA
    c0a4fac View commit details
    Browse the repository at this point in the history
  34. doc: use kbd element in readline doc prose

    The kbd element has already been added in the keybindings table, but we
    missed it in one line in the prose.
    
    PR-URL: #35737
    Reviewed-By: Roman Reiss <me@silverwind.io>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Trott authored and targos committed Nov 3, 2020
    Copy the full SHA
    afbe23d View commit details
    Browse the repository at this point in the history
  35. build: turn off Codecov comments

    Turns off coverage comments for the time being, until we can sort out
    issues.
    
    PR-URL: #35800
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    bcoe authored and targos committed Nov 3, 2020
    Copy the full SHA
    34281cd View commit details
    Browse the repository at this point in the history
  36. doc: modified memory set statement set size

    PR-URL: #35517
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    PoojaDurgad authored and targos committed Nov 3, 2020
    Copy the full SHA
    7b3743d View commit details
    Browse the repository at this point in the history
  37. doc: add require statement in the example

    PR-URL: #35554
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Harshitha K P <harshitha014@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    PoojaDurgad authored and targos committed Nov 3, 2020
    Copy the full SHA
    6211ffd View commit details
    Browse the repository at this point in the history
  38. Revert "src: ignore GCC -Wcast-function-type for v8.h"

    This reverts commit f21cf45 as this has
    now been included in the V8 version being used.
    
    PR-URL: #35758
    Refs: v8/v8@f08cbfd
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    danbev authored and targos committed Nov 3, 2020
    Copy the full SHA
    01d7c46 View commit details
    Browse the repository at this point in the history
  39. src: use MaybeLocal.ToLocal instead of IsEmpty

    PR-URL: #35716
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    danbev authored and targos committed Nov 3, 2020
    Copy the full SHA
    4b8b5fe View commit details
    Browse the repository at this point in the history
  40. src: remove ignore GCC -Wcast-function-type for v8

    This reverts Commit 3ff2aec ("src:
    ignore GCC -Wcast-function-type for v8.h") and Commit
    2462a2c ("src: fix ignore GCC
    -Wcast-function-type for older compilers") as this has
    now been included in the V8 version being used.
    
    PR-URL: #35768
    Refs: v8/v8@f08cbfd
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
    Reviewed-By: David Carlier <devnexen@gmail.com>
    danbev authored and targos committed Nov 3, 2020
    Copy the full SHA
    4128eef View commit details
    Browse the repository at this point in the history
  41. doc: fix typo in BUILDING.md

    PR-URL: #35807
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    RaisinTen authored and targos committed Nov 3, 2020
    Copy the full SHA
    c365867 View commit details
    Browse the repository at this point in the history
  42. deps: update acorn to v8.0.4

    This adds support for nullish coalescing, optional chaining and
    numeric separators.
    The acorn-numeric-separator plugin can be removed.
    
    PR-URL: #35791
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Shelley Vohr <codebytere@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    targos committed Nov 3, 2020
    Copy the full SHA
    52a77db View commit details
    Browse the repository at this point in the history
  43. doc: add a subsystems header in pull-requests.md

    PR-URL: #35718
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    PoojaDurgad authored and targos committed Nov 3, 2020
    Copy the full SHA
    6513a58 View commit details
    Browse the repository at this point in the history
  44. doc: fix _construct example params order

    PR-URL: #35790
    Reviewed-By: Robert Nagy <ronagy@icloud.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    a0viedo authored and targos committed Nov 3, 2020
    Copy the full SHA
    c2e6a4b View commit details
    Browse the repository at this point in the history
  45. http: lazy create IncomingMessage.headers

    When rawHeaders is enough don't create the headers object.
    
    PR-URL: #35281
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    ronag authored and targos committed Nov 3, 2020
    Copy the full SHA
    b6b7a3b View commit details
    Browse the repository at this point in the history
  46. worker: add eventLoopUtilization()

    Allow calling eventLoopUtilization() directly on a worker thread:
    
        const worker = new Worker('./foo.js');
        const elu = worker.performance.eventLoopUtilization();
        setTimeout(() => {
          worker.performance.eventLoopUtilization(elu);
        }, 10);
    
    Add a new performance object on the Worker instance that will hopefully
    one day hold all the other performance metrics, such as nodeTiming.
    
    Include benchmarks and tests.
    
    PR-URL: #35664
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    trevnorris authored and targos committed Nov 3, 2020
    Copy the full SHA
    221e283 View commit details
    Browse the repository at this point in the history
  47. n-api: revert change to finalization

    Fixes: #35620
    
    This reverts commit a6b6556 which
    changed finalization behavior related to N-API. We will investigate
    the original issue with the test separately.
    
    PR-URL: #35777
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
    mhdawson authored and targos committed Nov 3, 2020
    Copy the full SHA
    0c17dbd View commit details
    Browse the repository at this point in the history
  48. doc: consolidate and clarify breakOnSigInt text

    PR-URL: #35787
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Trott authored and targos committed Nov 3, 2020
    Copy the full SHA
    b07f4a3 View commit details
    Browse the repository at this point in the history
  49. doc,test: update v8 method doc and comment

    Update documentation and test comment for v8.cachedDataVersionTag().
    
    PR-URL: #35795
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Trott authored and targos committed Nov 3, 2020
    Copy the full SHA
    092c6c4 View commit details
    Browse the repository at this point in the history
  50. test: add upstream test cases to urlsearchparam

    Refs: web-platform-tests/wpt#26126
    
    PR-URL: #35792
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    watilde authored and targos committed Nov 3, 2020
    Copy the full SHA
    76991c0 View commit details
    Browse the repository at this point in the history
  51. doc: use case-sensitive in the example

    PR-URL: #35624
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    PoojaDurgad authored and targos committed Nov 3, 2020
    Copy the full SHA
    3db4354 View commit details
    Browse the repository at this point in the history
  52. src: remove ERR prefix in WebCryptoKeyExportStatus

    This commit suggests removing the ERR prefix in the
    WebCryptoKeyExportStatus enum.
    
    The motivation for this is that I think it improves the readability of
    the code. For example, the following line had me look twice to see what
    was going on:
    
      case WebCryptoKeyExportStatus::ERR_OK:
      // Success!
    
    PR-URL: #35639
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    danbev authored and targos committed Nov 3, 2020
    Copy the full SHA
    c922578 View commit details
    Browse the repository at this point in the history
  53. child_process: add ChildProcess 'spawn' event

    The new event signals that the subprocess has spawned successfully and
    no 'error' event will be emitted from failing to spawn.
    
    Fixes: #35288
    PR-URL: #35369
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    zenflow authored and targos committed Nov 3, 2020
    Copy the full SHA
    8169902 View commit details
    Browse the repository at this point in the history
  54. doc: update MessagePort documentation for EventTarget inheritance

    Refs: #34057
    Refs: #35835
    
    PR-URL: #35839
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    addaleax authored and targos committed Nov 3, 2020
    Copy the full SHA
    4e76a3c View commit details
    Browse the repository at this point in the history
  55. tls: allow reading data into a static buffer

    Refs: #25436
    
    PR-URL: #35753
    Refs: #25436
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
    puzpuzpuz authored and targos committed Nov 3, 2020
    Copy the full SHA
    ee15142 View commit details
    Browse the repository at this point in the history
  56. doc: make small improvements to REPL doc

    * button -> key
    * apply missing kbd element
    * revise "Recoverable errors" text for brevity and clarity
    
    PR-URL: #35808
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and targos committed Nov 3, 2020
    Copy the full SHA
    8074f69 View commit details
    Browse the repository at this point in the history
  57. events: make eventTarget.removeAllListeners() return this

    Fixes: #35762
    
    PR-URL: #35805
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    lpinca authored and targos committed Nov 3, 2020
    Copy the full SHA
    438d9de View commit details
    Browse the repository at this point in the history
  58. events: make abort_controller event trusted

    The AbortController abort event is trusted, currently we fire all
    events with isTrusted: false. Allow dispatching events
    internally with `isTrusted: true` and add a test for it.
    
    Co-Authored-By: ExE Boss <3889017+ExE-Boss@users.noreply.github.com>
    Fixes: #35748
    
    PR-URL: #35811
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    benjamingr authored and targos committed Nov 3, 2020
    Copy the full SHA
    f08e2c0 View commit details
    Browse the repository at this point in the history
  59. test: add upstream test cases to encoding

    Refs: web-platform-tests/wpt#25988
    Refs: web-platform-tests/wpt#26158
    
    PR-URL: #35794
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    watilde authored and targos committed Nov 3, 2020
    Copy the full SHA
    dd3cbb4 View commit details
    Browse the repository at this point in the history
  60. doc: add conditional example for setBreakpoint()

    The `node-inspect` debugging client supports passing an optional third
    parameter as a string to be evaluated when the breakpoint is hit. If the
    condition evaluates to `true` in the current context, the breakpoint
    pauses execution; otherwise the execution continues.
    
    This was raised as an issue in
    nodejs/node-inspect#68, but the client already
    supports that functionality, so I thought it'd be helpful to add it to
    the node documentation.
    
    PR-URL: #35823
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Jan Krems <jan.krems@gmail.com>
    copperwall authored and targos committed Nov 3, 2020
    Copy the full SHA
    5e8d821 View commit details
    Browse the repository at this point in the history
  61. tools: add update-npm script

    I've had to update this one too many times, and much of it can be
    automated, so let's do that!
    
    The maintenance instructions have also been updated.
    
    PR-URL: #35822
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    MylesBorins authored and targos committed Nov 3, 2020
    Copy the full SHA
    afb3e24 View commit details
    Browse the repository at this point in the history
  62. doc: stabilize packages features

    These features are being used in production and are ready to be
    considered stable.
    
    Refs: nodejs/modules#564
    
    PR-URL: #35742
    Reviewed-By: Guy Bedford <guybedford@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Ujjwal Sharma <ryzokuken@disroot.org>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Geoffrey Booth <webmaster@geoffreybooth.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    MylesBorins authored and targos committed Nov 3, 2020
    Copy the full SHA
    d291e3a View commit details
    Browse the repository at this point in the history
  63. test: add onerror test cases to policy

    Increase test coverage of lib/internal/policy/manifest.js
    
    PR-URL: #35797
    Refs: https://coverage.nodejs.org/coverage-642f2064c06793b7/lib/internal/policy/manifest.js.html#L60
    Refs: https://coverage.nodejs.org/coverage-642f2064c06793b7/lib/internal/policy/manifest.js.html#L146
    Reviewed-By: Ben Coe <bencoe@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    watilde authored and targos committed Nov 3, 2020
    Copy the full SHA
    8958af4 View commit details
    Browse the repository at this point in the history
  64. deps: upgrade to cjs-module-lexer@0.5.0

    PR-URL: #35871
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Jan Krems <jan.krems@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Bradley Farias <bradley.meck@gmail.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    guybedford authored and targos committed Nov 3, 2020
    Copy the full SHA
    20accb0 View commit details
    Browse the repository at this point in the history
  65. tools: add msvc /P output to .gitignore

    PR-URL: #35735
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    gengjiawen authored and targos committed Nov 3, 2020
    Copy the full SHA
    31753ec View commit details
    Browse the repository at this point in the history
  66. doc: fix reference to googletest test fixture

    PR-URL: #35813
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    tniessen authored and targos committed Nov 3, 2020
    Copy the full SHA
    0580258 View commit details
    Browse the repository at this point in the history
  67. crypto: fix webcrypto ECDH JWK import

    This fixes the importKey operation when importing a JWK for the ECDH
    algorithm. As per the Web Crypto API specification the JWK `alg`
    property is not checked (as opposed to ECDSA).
    
    PR-URL: #35855
    Fixes: #35812
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    panva authored and targos committed Nov 3, 2020
    Copy the full SHA
    abd7c94 View commit details
    Browse the repository at this point in the history
  68. build,tools: add lint-js-doc target

    Add a build target to lint JS code in Markdown files only.
    
    PR-URL: #35708
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    aduh95 authored and targos committed Nov 3, 2020
    Copy the full SHA
    273e147 View commit details
    Browse the repository at this point in the history
  69. build: add vcbuilt test-doc target

    PR-URL: #35708
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    aduh95 authored and targos committed Nov 3, 2020
    Copy the full SHA
    a5fa849 View commit details
    Browse the repository at this point in the history
  70. doc: recommend test-doc instead of lint-md

    The documentation style guide used to recommend checking changes in the
    docs by running `make lint-md`. This leaves out some important checks
    which are contained in the `test-doc` build target. This commit also
    replaces `lint` by `lint-md` in the list of `test-doc`'s prerequisites.
    
    PR-URL: #35708
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    aduh95 authored and targos committed Nov 3, 2020
    Copy the full SHA
    8c2b179 View commit details
    Browse the repository at this point in the history
  71. crypto: fixup scrypt regressions

    Fixes a handful of regressions in scrypt support following
    the refactor.
    
    Fixes: #35815
    
    PR-URL: #35821
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    jasnell authored and targos committed Nov 3, 2020
    Copy the full SHA
    79a8fb6 View commit details
    Browse the repository at this point in the history
  72. lib: use primordials when calling methods of Error

    This is to unsure that code using those methods won't crash if the
    methods are deleted in userland.
    
    PR-URL: #35837
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Shingo Inoue <leko.noor@gmail.com>
    aduh95 authored and targos committed Nov 3, 2020
    Copy the full SHA
    b1e531a View commit details
    Browse the repository at this point in the history
  73. build,tools: gitHub Actions: use Node.js Fermium

    PR-URL: #35840
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    aduh95 authored and targos committed Nov 3, 2020
    Copy the full SHA
    4447ff1 View commit details
    Browse the repository at this point in the history
  74. doc: move ronkorving to emeritus

    In email, ronkorving indicated that he could/should be moved to emeritus
    at this time.
    
    PR-URL: #35828
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Ron Korving <ron@ronkorving.nl>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Yuta Hiroto <hello@hiroppy.me>
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Trott authored and targos committed Nov 3, 2020
    Copy the full SHA
    c14889b View commit details
    Browse the repository at this point in the history
  75. doc: fix a typo in CHANGELOG_V15

    Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
    
    PR-URL: #35804
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    tnir authored and targos committed Nov 3, 2020
    Copy the full SHA
    9703219 View commit details
    Browse the repository at this point in the history
  76. test: fix reference to WPT testharness.js

    The W3C testharness.js was moved to the `web-platform-tests/wpt`
    repository a while ago.
    
    PR-URL: #35814
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    tniessen authored and targos committed Nov 3, 2020
    Copy the full SHA
    de3dcd7 View commit details
    Browse the repository at this point in the history
  77. assert,repl: enable ecmaVersion 2021 in acorn parser

    This adds support for the new logical assignment operators.
    
    PR-URL: #35827
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    targos committed Nov 3, 2020
    Copy the full SHA
    d95013f View commit details
    Browse the repository at this point in the history
  78. module: runtime deprecate subpath folder mappings

    PR-URL: #35747
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Bradley Farias <bradley.meck@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    guybedford authored and targos committed Nov 3, 2020
    Copy the full SHA
    0f5a8c5 View commit details
    Browse the repository at this point in the history
  79. test: mark test-http2-respond-file-error-pipe-offset flaky

    This is now failing inconsistently across many platforms. This
    appears to be the result of the addition of mustSucceed being
    added to the test during testing refactoring.
    
    We should mark flaky until we have figured out what the issue
    is.
    
    Refs: #35881
    
    PR-URL: #35883
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    MylesBorins authored and targos committed Nov 3, 2020
    Copy the full SHA
    7691b67 View commit details
    Browse the repository at this point in the history
  80. n-api: napi_make_callback emit async init with resource of async_context

    instead of emit async init with receiver of the callback.
    
    PR-URL: #32930
    Fixes: #32898
    Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
    legendecas authored and targos committed Nov 3, 2020
    Copy the full SHA
    d16e2fa View commit details
    Browse the repository at this point in the history
  81. zlib: test BrotliCompress throws invalid arg value

    PR-URL: #35830
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
    RaisinTen authored and targos committed Nov 3, 2020
    Copy the full SHA
    102d7df View commit details
    Browse the repository at this point in the history
  82. test: mark test-worker-eventlooputil flaky

    This is consistently failing in CI right now. Lets mark it flaky
    while we figure out what is going on.
    
    Refs: #35844
    
    PR-URL: #35886
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
    MylesBorins authored and targos committed Nov 3, 2020
    Copy the full SHA
    830b789 View commit details
    Browse the repository at this point in the history
  83. doc: add on statement in the APIs docs

    PR-URL: #35610
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    PoojaDurgad authored and targos committed Nov 3, 2020
    Copy the full SHA
    337bfcf View commit details
    Browse the repository at this point in the history
  84. crypto: rename check to createJob

    This commit renames the check function to createJob which seems to be
    more descriptive of what this function does.
    
    PR-URL: #35858
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    danbev authored and targos committed Nov 3, 2020
    Copy the full SHA
    644c416 View commit details
    Browse the repository at this point in the history
  85. test: add test to fs/promises setImmediate

    Add test pattern to setImmediate when ref's type is not boolean
    
    PR-URL: #35852
    Reviewed-By: Yosuke Furukawa <yosuke.furukawa@gmail.com>
    Reviewed-By: Masashi Hirano <shisama07@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Shingo Inoue <leko.noor@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    tyankatsu0105 authored and targos committed Nov 3, 2020
    Copy the full SHA
    66ad4be View commit details
    Browse the repository at this point in the history
  86. lib: create diagnostics_channel module

    PR-URL: #34895
    Reviewed-By: Bryan English <bryan@bryanenglish.com>
    Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
    Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    Qard authored and targos committed Nov 3, 2020
    Copy the full SHA
    b38a43d View commit details
    Browse the repository at this point in the history
  87. http: report request start and end with diagnostics_channel

    PR-URL: #34895
    Reviewed-By: Bryan English <bryan@bryanenglish.com>
    Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
    Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    Qard authored and targos committed Nov 3, 2020
    Copy the full SHA
    f861733 View commit details
    Browse the repository at this point in the history
  88. tools: update ESLint to 7.12.0

    Update ESLint to 7.12.0
    
    PR-URL: #35799
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    cjihrig authored and targos committed Nov 3, 2020
    Copy the full SHA
    d20b318 View commit details
    Browse the repository at this point in the history
  89. tools: update ESLint to 7.12.1

    Update ESLint to 7.12.1
    
    PR-URL: #35799
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    cjihrig authored and targos committed Nov 3, 2020
    Copy the full SHA
    a07d1af View commit details
    Browse the repository at this point in the history
  90. deps: update to cjs-module-lexer@0.5.2

    PR-URL: #35901
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    guybedford authored and targos committed Nov 3, 2020
    Copy the full SHA
    1303a1f View commit details
    Browse the repository at this point in the history
  91. lib: let abort_controller target be EventTarget

    The AbortController abort event should have EventTarget as a target
    property of the argument event.
    
    PR-URL: #35869
    Refs: https://github.com/web-platform-tests/wpt/blob/master/dom/abort/event.any.js
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    watilde authored and targos committed Nov 3, 2020
    Copy the full SHA
    d2f574b View commit details
    Browse the repository at this point in the history
  92. test: integrate abort_controller tests from wpt

    Refs: web-platform-tests/wpt#9361
    
    PR-URL: #35869
    Refs: https://github.com/web-platform-tests/wpt/blob/master/dom/abort/event.any.js
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    watilde authored and targos committed Nov 3, 2020
    Copy the full SHA
    da612df View commit details
    Browse the repository at this point in the history
  93. doc: move bnoordhuis to emeritus

    It's been ten years and it's time for a change. September 30 was my
    last day at IBM and my last day as a full-time Node.js maintainer.
    
    I feel Deno is the future and that's why I'm joining that scrappy
    startup, Deno Land Inc., to make that future happen.
    
    PR-URL: #35865
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    bnoordhuis authored and targos committed Nov 3, 2020
    Copy the full SHA
    4899998 View commit details
    Browse the repository at this point in the history
  94. doc: update crypto.createSecretKey history

    Passing strings to `crypto.createSecretKey` was not added until v15.0.0
    (specifically with commit dae283d). The existing documentation implies
    its availability in prior versions which may cause confusion.
    
    PR-URL: #35874
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    ben-turner authored and targos committed Nov 3, 2020
    Copy the full SHA
    0ac4a6a View commit details
    Browse the repository at this point in the history
  95. tools: bump cpplint to 1.5.1

    https://github.com/cpplint/cpplint/releases/tag/1.5.1
    
    PR-URL: #35866
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Trott authored and targos committed Nov 3, 2020
    Copy the full SHA
    3955ccd View commit details
    Browse the repository at this point in the history
  96. tools: refloat 7 Node.js patches to cpplint.py

    Cherry-pick 12c8b4d
    Original commit message:
        This commit is a suggestion for adding a rule for NULL usages in the
        code base. This will currently report a number of errors which could be
        ignored using // NOLINT (readability/null_usage)
    
        PR-URL: #17373
        Reviewed-By: Jon Moss <me@jonathanmoss.me>
        Reviewed-By: Anna Henningsen <anna@addaleax.net>
        Reviewed-By: Timothy Gu <timothygu99@gmail.com>
        Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
        Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
        Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
        Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    
    Refs: 12c8b4d
    
    Cherry-pick fc81e80
    Original commit message:
    
        Update cpplint.py to check for inline headers when the corresponding
        header is already included.
    
        PR-URL: #21521
        Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
        Reviewed-By: James M Snell <jasnell@gmail.com>
    
    Refs: fc81e80
    
    Cherry-pick cbc3dd9
    Original commit message:
    
        src, tools: add check for left leaning pointers
    
        This commit adds a rule to cpplint to check that pointers in the code
        base lean to the left and not right, and also fixes the violations
        reported.
    
        PR-URL: #21010
        Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
        Reviewed-By: Anna Henningsen <anna@addaleax.net>
        Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
        Reviewed-By: James M Snell <jasnell@gmail.com>
    
    Refs: cbc3dd9
    
    Cherry-pick 9029981
    Original commit message:
    
        tools: fix cpplint.py header rules
    
        THIS COMMIT SHOULD GO WITH THE NEXT. IT WILL FIND NEW LINT.
    
        PR-URL: #26306
        Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    
    Refs: 9029981
    
    Cherry-pick 0a25ace
    Original commit message:
    
        tools: move cpplint configuration to .cpplint
    
        PR-URL: #27098
        Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
        Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    
    Refs: 0a25ace
    
    Cherry-pick afa9a72
    Original commit message:
    
        tools: refloat update link to google styleguide for cpplint
    
        This commit updates two old links to Google's C++ styleguide which
        currently result in a 404 when accessed.
    
        PR-URL: #30876
        Reviewed-By: Michaël Zasso <targos@protonmail.com>
        Reviewed-By: David Carlier <devnexen@gmail.com>
        Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
        Reviewed-By: Richard Lau <riclau@uk.ibm.com>
        Reviewed-By: Rich Trott <rtrott@gmail.com>
    
    Refs: afa9a72
    
    Cherry-pick e23bf8f
    Original commit message:
    
        tools,src: refloat forbid usage of v8::Persistent
    
        `v8::Persistent` comes with the surprising catch that it requires
        manual cleanup. `v8::Global` doesn’t, making it easier to use,
        and additionally provides move semantics. New code should always
        use `v8::Global`.
    
        PR-URL: #31018
        Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
        Reviewed-By: Richard Lau <riclau@uk.ibm.com>
        Reviewed-By: James M Snell <jasnell@gmail.com>
        Reviewed-By: David Carlier <devnexen@gmail.com>
        Reviewed-By: Rich Trott <rtrott@gmail.com>
        Reviewed-By: Gus Caplan <me@gus.host>
        Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
        Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
        Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
    
    PR-URL: #35569
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    
    PR-URL: #35719
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    
    PR-URL: #35866
    Trott authored and targos committed Nov 3, 2020
    Copy the full SHA
    c09fdba View commit details
    Browse the repository at this point in the history
  97. deps: upgrade to cjs-module-lexer@1.0.0

    PR-URL: #35928
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Bradley Farias <bradley.meck@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    guybedford authored and targos committed Nov 3, 2020
    Copy the full SHA
    5cb77f2 View commit details
    Browse the repository at this point in the history
  98. deps: upgrade npm to 7.0.7

    PR-URL: #35908
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Ruy Adorno <ruyadorno@github.com>
    Reviewed-By: Guy Bedford <guybedford@gmail.com>
    lpinca authored and targos committed Nov 3, 2020
    Copy the full SHA
    55adee0 View commit details
    Browse the repository at this point in the history
  99. build: fix lint-js-fix target

    Refs: #35708
    
    PR-URL: #35927
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    aduh95 authored and targos committed Nov 3, 2020
    Copy the full SHA
    b11c737 View commit details
    Browse the repository at this point in the history
  100. errors: do not call resolve on URLs with schemes

    We were incorrectly trying to run path.resolve on absolute
    sources URLs. This was breaking webpack:// URLs in stack
    trace output.
    
    Refs: #35325
    
    PR-URL: #35903
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    bcoe authored and targos committed Nov 3, 2020
    Copy the full SHA
    7c8b5e5 View commit details
    Browse the repository at this point in the history
  101. doc: adjust table alignment for remark v13

    Addresses table-cell-padding rule issues
    
    PR-URL: #35647
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    nschonni authored and targos committed Nov 3, 2020
    Copy the full SHA
    eb55462 View commit details
    Browse the repository at this point in the history
  102. doc: disable no-undefined-references workarounds

    The manual links appear to be specific workarounds, so just ignore them
    
    PR-URL: #35647
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    nschonni authored and targos committed Nov 3, 2020
    Copy the full SHA
    59b36af View commit details
    Browse the repository at this point in the history
  103. doc: temporarily disable list-item-bullet-indent

    Not an issue with v13 remark, but seems to be a glitch in the disabled
    lines in v12 conflicting.
    
    PR-URL: #35647
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    nschonni authored and targos committed Nov 3, 2020
    Copy the full SHA
    c5b9422 View commit details
    Browse the repository at this point in the history
  104. doc: update tables in README files for linting changes

    PR-URL: #35905
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: Shelley Vohr <codebytere@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Trott authored and targos committed Nov 3, 2020
    Copy the full SHA
    7937fbe View commit details
    Browse the repository at this point in the history
  105. tools: bump remark-lint-preset-node to 2.0.0

    Update remark@13.0.0, remark-lint-preset-node@2.0.0 and other
    dependencies in the lint-md rollup.
    
    PR-URL: #35905
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: Shelley Vohr <codebytere@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Trott authored and targos committed Nov 3, 2020
    Copy the full SHA
    fd027cd View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2020

  1. deps: upgrade npm to 7.0.8

    PR-URL: #35953
    Reviewed-By: Ruy Adorno <ruyadorno@github.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    MylesBorins committed Nov 4, 2020
    Copy the full SHA
    d3f1cde View commit details
    Browse the repository at this point in the history
  2. events: add a few tests

    PR-URL: #35806
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    benjamingr authored and targos committed Nov 4, 2020
    Copy the full SHA
    1cdfaa8 View commit details
    Browse the repository at this point in the history
  3. src: remove redundant OpenSSLBuffer

    Replace the OpenSSLBuffer utility with ByteSource and
    remove OpenSSLBuffer.
    
    Signed-off-by: James M Snell <jasnell@gmail.com>
    
    PR-URL: #35663
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    jasnell authored and targos committed Nov 4, 2020
    Copy the full SHA
    fb71964 View commit details
    Browse the repository at this point in the history
  4. benchmark: add startup benchmark for loading public modules

    Adding a new benchmark for testing the performance of loading
    available public modules.
    
    PR-URL: #35816
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    joyeecheung authored and targos committed Nov 4, 2020
    Copy the full SHA
    9b549c1 View commit details
    Browse the repository at this point in the history
  5. benchmark: make the benchmark tool work with Node 10

    Avoid using class fields in the benchmark tools since they are
    not available in Node 10. This can be reverted when Node 10
    reaches EOL.
    
    PR-URL: #35817
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    Reviewed-By: Mary Marchini <oss@mmarchini.me>
    joyeecheung authored and targos committed Nov 4, 2020
    Copy the full SHA
    76ebae4 View commit details
    Browse the repository at this point in the history
  6. test: correct test-worker-eventlooputil

    The active worker check compared the time from sending message till
    response arrived from worker with the complete time the worker was
    running till it responses to the spin request.
    
    If sending back the message is slow for some reason the test fails.
    
    Adapt the test to compare the time seen inside the worker with the
    time read from main thread.
    
    PR-URL: #35891
    Fixes: #35844
    Refs: #35886
    Refs: #35664
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Flarna authored and targos committed Nov 4, 2020
    Copy the full SHA
    231af88 View commit details
    Browse the repository at this point in the history
  7. test: add missing ref comments to parallel.status

    PR-URL: #35896
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and targos committed Nov 4, 2020
    Copy the full SHA
    5d61e3d View commit details
    Browse the repository at this point in the history
  8. stream: fix regression on duplex end

    Decide the return status of writeOrBuffer before
    calling stream.write which can reset state.length
    
    Add unit test for #35926
    
    Refs: #35926
    
    PR-URL: #35941
    Fixes: #35926
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Momtchil Momtchev authored and targos committed Nov 4, 2020
    Copy the full SHA
    2868f52 View commit details
    Browse the repository at this point in the history
  9. crypto: pass empty passphrases to OpenSSL properly

    Fixes: #35898
    
    PR-URL: #35914
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    tniessen authored and targos committed Nov 4, 2020
    Copy the full SHA
    0ebf44b View commit details
    Browse the repository at this point in the history
  10. 2020-11-04, Version 15.1.0 (Current)

    Notable changes:
    
    child_process:
      * (SEMVER-MINOR) add ChildProcess 'spawn' event (Matthew Francis Brunetti) #35369
    dns:
      * (SEMVER-MINOR) add setLocalAddress to Resolver (Josh Dague) #34824
    http:
      * (SEMVER-MINOR) report request start and end with diagnostics_channel (Stephen Belanger) #34895
    http2:
      * (SEMVER-MINOR) add updateSettings to both http2 servers (Vincent Boivin) #35383
    lib:
      * (SEMVER-MINOR) create diagnostics_channel module (Stephen Belanger) #34895
    src:
      * (SEMVER-MINOR) add --heapsnapshot-near-heap-limit option (Joyee Cheung) #33010
    v8:
      * (SEMVER-MINOR) implement v8.stopCoverage() (Joyee Cheung) #33807
      * (SEMVER-MINOR) implement v8.takeCoverage() (Joyee Cheung) #33807
    worker:
      * (SEMVER-MINOR) add eventLoopUtilization() (Trevor Norris) #35664
    
    PR-URL: #35948
    targos committed Nov 4, 2020
    Copy the full SHA
    2291e07 View commit details
    Browse the repository at this point in the history