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

v16.14.1 release proposal #42200

Merged
merged 168 commits into from Mar 16, 2022
Merged

v16.14.1 release proposal #42200

merged 168 commits into from Mar 16, 2022

Commits on Feb 12, 2022

  1. deps: upgrade npm to 8.3.2

    PR-URL: #41621
    Reviewed-By: Ruy Adorno <ruyadorno@github.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    npm-robot authored and MylesBorins committed Feb 12, 2022
    Copy the full SHA
    2b7c4b4 View commit details
    Browse the repository at this point in the history
  2. deps: upgrade npm to 8.4.1

    PR-URL: #41836
    Reviewed-By: Ruy Adorno <ruyadorno@github.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Beth Griggs <bgriggs@redhat.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    npm-robot authored and MylesBorins committed Feb 12, 2022
    Copy the full SHA
    b578328 View commit details
    Browse the repository at this point in the history
  3. deps: upgrade npm to 8.5.0

    PR-URL: #41925
    Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    npm-robot authored and MylesBorins committed Feb 12, 2022
    Copy the full SHA
    74c0464 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2022

  1. test: avoid deep comparisons with literals

    Comparing any value to any non-RegExp literal or undefined using
    strictEqual (or notStrictEqual) passes if and only if deepStrictEqual
    (or notDeepStrictEqual, respectively) passes.
    
    Unnecessarily using deep comparisons adds confusion.
    
    This patch adds an ESLint rule that forbids the use of deepStrictEqual
    and notDeepStrictEqual when the expected value (i.e., the second
    argument) is a non-RegExp literal or undefined.
    
    For reference, an ESTree literal is defined as follows.
    
        extend interface Literal <: Expression {
            type: "Literal";
            value: string | boolean | null | number | RegExp | bigint;
        }
    
    The value `undefined` is an `Identifier` with `name: 'undefined'`.
    
    PR-URL: #40634
    Backport-PR-URL: #42021
    Reviewed-By: Rich Trott <rtrott@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: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com>
    tniessen authored and danielleadams committed Feb 25, 2022
    Copy the full SHA
    23fc205 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2022

  1. meta: update AUTHORS

    PR-URL: #41548
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    nodejs-github-bot authored and danielleadams committed Feb 26, 2022
    Copy the full SHA
    18e6316 View commit details
    Browse the repository at this point in the history
  2. doc: remove statement about (EC)DHE performance

    This statement is misleading in that it says "key generation is
    expensive". ECDHE key generation (over the elliptic curves that are
    commonly used for TLS) is insanely fast compared to most other types
    of key generation.
    
    This statement is irrelevant for TLS 1.3, which requires (EC)DHE.
    
    Even if this statement is somewhat true for TLS 1.2, it does not
    justify discouraging the use of (EC)DHE.
    
    PR-URL: #41528
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    tniessen authored and danielleadams committed Feb 26, 2022
    Copy the full SHA
    f2ca172 View commit details
    Browse the repository at this point in the history
  3. benchmark: remove unreachable code from crypto/hash-stream-creation

    `hash.digest('buffer')` has returned a Buffer and not a string since at
    least Node.js 0.10.6. The benchmark, as it is written, will not work on
    any version of Node.js prior to 16.x (due to `Object.hasOwn()`) and
    certainly won't run on versions earlier than 0.10.6 due to const/let and
    probably other things. Remove impossible-to-reach code intended to
    accommodate Node.js earlier than 0.10.6.
    
    PR-URL: #41535
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and danielleadams committed Feb 26, 2022
    Copy the full SHA
    ec72cb4 View commit details
    Browse the repository at this point in the history
  4. stream: avoid function call where possible

    Instead of assigning a boolean, move the function call that assigns a
    value to the boolean to the only place that boolean is checked. This
    avoids the function call in cases where it is not needed.
    
    Refs: #41488 (review)
    
    PR-URL: #41534
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Trott authored and danielleadams committed Feb 26, 2022
    Copy the full SHA
    1425e75 View commit details
    Browse the repository at this point in the history
  5. test: add coverage for util.inspect()

    Coverage stats indicate that there is no coverage for util.inspect()
    with a negative number and a numeric separator. Add a test case.
    
    Refs: https://coverage.nodejs.org/coverage-df507758e6c35534/lib/internal/util/inspect.js.html#L1463
    
    PR-URL: #41527
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Trott authored and danielleadams committed Feb 26, 2022
    Copy the full SHA
    a8558ec View commit details
    Browse the repository at this point in the history
  6. doc: add release key for Bryan English

    Adds Bryan English and his public key to the README for releases.
    
    PR-URL: #42102
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Beth Griggs <bgriggs@redhat.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    Reviewed-By: Danielle Adams <adamzdanielle@gmail.com>
    bengl committed Feb 26, 2022
    Copy the full SHA
    db17a52 View commit details
    Browse the repository at this point in the history
  7. doc: clarify module system selection

    Refs: #41345 (comment)
    
    PR-URL: #41383
    Reviewed-By: Guy Bedford <guybedford@gmail.com>
    Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
    aduh95 authored and danielleadams committed Feb 26, 2022
    Copy the full SHA
    a6758d1 View commit details
    Browse the repository at this point in the history
  8. tools: update doc to highlight.js@11.4.0 to-vfile@7.2.3

    PR-URL: #41441
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    nodejs-github-bot authored and danielleadams committed Feb 26, 2022
    Copy the full SHA
    e439f32 View commit details
    Browse the repository at this point in the history
  9. doc: improve Web Crypto headings related to ECC

    PR-URL: #41542
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Filip Skokan <panva.ip@gmail.com>
    tniessen authored and danielleadams committed Feb 26, 2022
    Copy the full SHA
    1128b1c View commit details
    Browse the repository at this point in the history
  10. doc: adjust assignment in condition in stream doc

    This is part of an effort to get our code to comply with ESLint
    no-cond-assign so that we don't have to disable that rule in our config.
    
    PR-URL: #41510
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Trott authored and danielleadams committed Feb 26, 2022
    Copy the full SHA
    ff0069d View commit details
    Browse the repository at this point in the history
  11. doc: fix typos in esm.md

    PR-URL: #41499
    Reviewed-By: Guy Bedford <guybedford@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Adrian Estrada <edsadr@gmail.com>
    yu521088 authored and danielleadams committed Feb 26, 2022
    Copy the full SHA
    82042d0 View commit details
    Browse the repository at this point in the history
  12. test: add missing await in fs-rm/fs-rmdir tests

    Noticed that a few assertions were not being awaited, this could
    potentially be leading to flakiness in tmp cleanup.
    
    Refs: #41201
    
    PR-URL: #41545
    Refs: #41201
    Reviewed-By: Ian Sutherland <ian@iansutherland.ca>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    bcoe authored and danielleadams committed Feb 26, 2022
    Copy the full SHA
    9e7cfbb View commit details
    Browse the repository at this point in the history
  13. policy: replace entries with keys

    Replaced the entries with keys since the values of the entries are not
    used, and changed loop style to avoid mangled `Symbol.iterator`s and
    to keep consistency.
    
    PR-URL: #41482
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    VoltrexKeyva authored and danielleadams committed Feb 26, 2022
    Copy the full SHA
    b8b8e0b View commit details
    Browse the repository at this point in the history
  14. tools: bump eslint from 8.6.0 to 8.7.0

    PR-URL: #41570
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Trott authored and danielleadams committed Feb 26, 2022
    Copy the full SHA
    3163bd1 View commit details
    Browse the repository at this point in the history
  15. doc: do not reference SSL when discussing SNI

    Co-authored-by: Rich Trott <rtrott@gmail.com>
    PR-URL: #41549
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    2 people authored and danielleadams committed Feb 26, 2022
    Copy the full SHA
    8772d33 View commit details
    Browse the repository at this point in the history
  16. doc: make Web Crypto example spec compliant

    subtle.sign is not supposed to support strings, and in most Web Crypto
    implementations, it does not. Passing a string as the 'data' argument
    only works in Node.js, and users should not rely on that oddity. The
    Web Crypto spec requires the data argument to be a BufferSource, i.e.,
    an ArrayBuffer or an ArrayBufferView.
    
    PR-URL: #41556
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Filip Skokan <panva.ip@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    tniessen authored and danielleadams committed Feb 26, 2022
    Copy the full SHA
    6b6d0c4 View commit details
    Browse the repository at this point in the history
  17. tools: update lint-md-dependencies

    Update to @rollup/plugin-node-resolve@13.1.3, rollup@2.64.0, and
    to-vfile@7.2.3.
    
    PR-URL: #41440
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    nodejs-github-bot authored and danielleadams committed Feb 26, 2022
    Copy the full SHA
    6fccd66 View commit details
    Browse the repository at this point in the history
  18. doc: use sentence case for Web Crypto headers

    Refs: #33889
    
    PR-URL: #41577
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    tniessen authored and danielleadams committed Feb 26, 2022
    Copy the full SHA
    01283f6 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2022

  1. build: fix libuv builds for android aarch64

    This syncs up the source list in
    https://github.com/nodejs/node/blob/b2edcfee46097fe8e0510a455b97d5c6d0cac5ec/deps/uv/uv.gyp#L257-L265
    with
    https://github.com/nodejs/node/blob/b2edcfee46097fe8e0510a455b97d5c6d0cac5ec/deps/uv/CMakeLists.txt#L218-L227.
    
    Fixes: #41380
    
    Signed-off-by: Darshan Sen <raisinten@gmail.com>
    
    PR-URL: #41555
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Mary Marchini <oss@mmarchini.me>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    RaisinTen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    1e3c9eb View commit details
    Browse the repository at this point in the history
  2. tools: add missing .PHONY and .NOTPARALLEL targets in Makefile

    PR-URL: #41515
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Yash Ladha <yash@yashladha.in>
    aduh95 authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    7cbc472 View commit details
    Browse the repository at this point in the history
  3. doc: edit async_context context loss text

    Make the text more concise and clear.
    
    PR-URL: #41550
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    5c387a0 View commit details
    Browse the repository at this point in the history
  4. doc: recommend package exports instead of requiring folders

    PR-URL: #41381
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
    aduh95 authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    214cf17 View commit details
    Browse the repository at this point in the history
  5. doc: make contributing info more discoverable

    There are been several discussions in recent PRs about
    the docs related to contributing not being very discoverable.
    Move these docs from doc/guides/ to doc/contributing.
    
    Signed-off-by: Michael Dawson <mdawson@devrus.com>
    
    PR-URL: #41408
    Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is>
    Reviewed-By: Mary Marchini <oss@mmarchini.me>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    mhdawson authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    1cf74be View commit details
    Browse the repository at this point in the history
  6. process: ignore asyncId 0 in exception handler

    Today, the global uncaught exception handler is the only
    place where asyncId 0 is not ignored and we still proceed
    to call emitAfter. This would've already failed one of
    our correctness tests in async_hooks if not for some other
    code meant to handle a different edge case.
    
    Fixes: #22982
    
    PR-URL: #41424
    Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    apapirovski authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    76281f9 View commit details
    Browse the repository at this point in the history
  7. test: fix typo in test_js_native_api_v8

    PR-URL: #41584
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    fab831a View commit details
    Browse the repository at this point in the history
  8. esm: improve validation of resolved URLs

    PR-URL: #41446
    Reviewed-By: Bradley Farias <bradley.meck@gmail.com>
    Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
    Reviewed-By: Guy Bedford <guybedford@gmail.com>
    JakobJingleheimer authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    bd71706 View commit details
    Browse the repository at this point in the history
  9. domain: pass opts to EventEmitter.init

    PR-URL: #41414
    Fixes: #41391
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    MoonBall authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    227dea8 View commit details
    Browse the repository at this point in the history
  10. doc: remove redunant await calls from stream docs

    PR-URL: #41592
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Nitzan Uziely <linkgoron@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    gioragutt authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    f33e831 View commit details
    Browse the repository at this point in the history
  11. doc: fix cjs example code for process.arch

    PR-URL: #41593
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Qingyu Deng <i@ayase-lab.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Manduro authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    10320c2 View commit details
    Browse the repository at this point in the history
  12. doc: move Mesteery to collaborators

    Refs: #41216
    Refs: #41543
    
    PR-URL: #41597
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    57dc595 View commit details
    Browse the repository at this point in the history
  13. crypto: remove checkIP options argument

    None of the supported options have any effect on X509_check_ip_asc.
    
    Refs: openssl/openssl#17536
    
    PR-URL: #41571
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    1ef28f1 View commit details
    Browse the repository at this point in the history
  14. test: improve util-format code coverage

    Add test case for calling `util.format()` with a BigInt and a separator.
    
    Refs: https://coverage.nodejs.org/coverage-986cf3b986c6c3e1/lib/internal/util/inspect.js.html#L2042
    
    PR-URL: #41572
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Zeyu Yang <himself65@outlook.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    2c813d8 View commit details
    Browse the repository at this point in the history
  15. doc: simplify util.TextDecoder example

    This simplifies the example and makes it runnable. (The current example
    has a magic function.) (This also removes an assignment in a condition
    which will be flagged if we enable ESLint's no-cond-assign rule.)
    
    PR-URL: #41574
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    9f8e442 View commit details
    Browse the repository at this point in the history
  16. dgram: remove unreachable connectState assign

    PR-URL: #38590
    Reviewed-By: Ouyang Yadong <oyydoibh@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    pd4d10 authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    9062479 View commit details
    Browse the repository at this point in the history
  17. stream: rename unknown primordial

    The primordials does not expose a primordial called `DataViewCtor`,
    leading up to a non-existent constructor.
    
    Fixes: #40612
    
    PR-URL: #40622
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    VoltrexKeyva authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    4f4fec4 View commit details
    Browse the repository at this point in the history
  18. test: add DataView test entry for whatwg

    The WHATWG `ReadableStream` test needs a new test entry for reading a
    `DataView`.
    
    PR-URL: #40622
    Fixes: #40612
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    VoltrexKeyva authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    122eb51 View commit details
    Browse the repository at this point in the history
  19. doc: update timingSafeEqual error case

    PR-URL: #41507
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Filip Skokan <panva.ip@gmail.com>
    AlexA-1976 authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    55714cc View commit details
    Browse the repository at this point in the history
  20. doc: fix deprecated alias description in cluster

    Refs: #36478
    
    PR-URL: #41618
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    39f52e1 View commit details
    Browse the repository at this point in the history
  21. test: improve test coverage of internal/worker/io

    PR-URL: #41511
    Refs: https://coverage.nodejs.org/coverage-74b9baa4265a8f0d/lib/internal/worker/io.js.html#L415
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    kuriyosh authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    1d3ef11 View commit details
    Browse the repository at this point in the history
  22. doc: fix async_hooks example in api docs

    PR-URL: #41609
    Reviewed-By: Qingyu Deng <i@ayase-lab.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    marsonya authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    5d94bc6 View commit details
    Browse the repository at this point in the history
  23. doc: add missing word in cluster.workers details

    PR-URL: #41624
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    3cdd1d6 View commit details
    Browse the repository at this point in the history
  24. tools: increase maximum line length to 120 characters

    PR-URL: #41586
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Beth Griggs <bgriggs@redhat.com>
    Reviewed-By: Tierney Cyren <hello@bnb.im>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    cdbe291 View commit details
    Browse the repository at this point in the history
  25. doc: demonstrate dangers of buffer.slice()

    PR-URL: #41628
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Evan Lucas <evanlucas@me.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    shalvah authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    0388b9a View commit details
    Browse the repository at this point in the history
  26. build: enable zoslib installation on z/OS

    zoslib is a C/C++ runtime library and an extended implementation
    of the z/OS LE C Runtime Library.
    
    PR-URL: #41493
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Co-authored-by: Gaby Baghdadi <baghdadi@ca.ibm.com>
    2 people authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    5e4fc04 View commit details
    Browse the repository at this point in the history
  27. lib: remove erroneous JSDoc entry

    The entry contains incorrect parameters and duplicates the subsequent
    constructor entry. Remove it.
    
    (I'm not sure why this is being caught by the linter on my local machine
    but not in CI.)
    
    PR-URL: #41604
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    7ee3cdf View commit details
    Browse the repository at this point in the history
  28. process: use validateString validator

    Use the `validateString()` validator where applicable.
    
    PR-URL: #41595
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    VoltrexKeyva authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    77cb604 View commit details
    Browse the repository at this point in the history
  29. doc: add note for handling signal events in trace events

    Refs: #14802
    
    PR-URL: #41438
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Adrian Estrada <edsadr@gmail.com>
    Reviewed-By: Mary Marchini <oss@mmarchini.me>
    Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
    Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
    thedull authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    0805068 View commit details
    Browse the repository at this point in the history
  30. lib: fix consistency of methods that emit warnings

    PR-URL: #41249
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    kuriyosh authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    0f3287d View commit details
    Browse the repository at this point in the history
  31. doc: improve 'hex' Buffer decoding description and examples

    PR-URL: #41598
    Fixes: #41594
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    gioragutt authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    5f0a017 View commit details
    Browse the repository at this point in the history
  32. crypto: adjust types for getRandomValues

    prevents Web Crypto API's getRandomValues from accepting DataView
    
    Fixes: #41480
    Refs: https://www.w3.org/TR/WebCryptoAPI/#Crypto-method-getRandomValues
    
    PR-URL: #41481
    Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Zeyu Yang <himself65@outlook.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    LiviaMedeiros authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    188c3ab View commit details
    Browse the repository at this point in the history
  33. crypto: remove wildcard options for checkEmail

    Wildcard options do not affect X509_check_email.
    
    Refs: openssl/openssl#17536
    Refs: #41571
    
    PR-URL: #41599
    Reviewed-By: Tierney Cyren <hello@bnb.im>
    Reviewed-By: Filip Skokan <panva.ip@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    fe0f9dc View commit details
    Browse the repository at this point in the history
  34. doc: add 16 and 17 to previous versions

    PR-URL: #41646
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    aduh95 authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    b2a4614 View commit details
    Browse the repository at this point in the history
  35. test: move test-gc-http-client-onerror to sequential

    Fixes: #41399
    
    PR-URL: #41619
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
    lpinca authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    950648d View commit details
    Browse the repository at this point in the history
  36. doc: suggest worker threads in cluster docs

    The current documentation is incorrect in that it says "A single
    instance of Node.js runs in a single thread," which is not true due
    to the addition of worker threads.
    
    This patch removes the incorrect statement and instead suggests that
    applications consider using worker threads when process isolation is
    not needed.
    
    Refs: #20876
    
    PR-URL: #41616
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    931be52 View commit details
    Browse the repository at this point in the history
  37. tools: update lint-md-dependencies to rollup@2.65.0

    PR-URL: #41638
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Yash Ladha <yash@yashladha.in>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    nodejs-github-bot authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    9601b8d View commit details
    Browse the repository at this point in the history
  38. doc: simplify readline/stdin text

    PR-URL: #41583
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    d5efecd View commit details
    Browse the repository at this point in the history
  39. crypto: revise variables for const use instead of let

    This prepares the code for enabling the no-cond-assign rule.
    
    PR-URL: #41614
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    faceae4 View commit details
    Browse the repository at this point in the history
  40. stream: check for null instead of falsy in loops

    Check for null in while loops. This is preparing the code for
    the no-cond-assign ESLint rule.
    
    PR-URL: #41614
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    363c760 View commit details
    Browse the repository at this point in the history
  41. policy: check for null instead of falsy in loop

    This prepares the code for the no-cond-assign ESLint rule.
    
    PR-URL: #41614
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    33f3391 View commit details
    Browse the repository at this point in the history
  42. process: check for null instead of falsy in while loop

    This prepares the code for the no-cond-assign ESLint rule.
    
    PR-URL: #41614
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    f066246 View commit details
    Browse the repository at this point in the history
  43. timers: check for nullish instead of falsy in loops

    This prepares the code for the no-cond-assign ESLint rule.
    
    PR-URL: #41614
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    63a67f8 View commit details
    Browse the repository at this point in the history
  44. util: check for null instead of flasy in loop

    This prepares the code for the no-cond-assign ESLint rule.
    
    PR-URL: #41614
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    a4ad26d View commit details
    Browse the repository at this point in the history
  45. repl: check for precise values rather than falsy in loops

    This prepares the code for the no-cond-assign ESLint rule.
    
    PR-URL: #41614
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    dacffd3 View commit details
    Browse the repository at this point in the history
  46. test: prepare tests for no-cond-assign ESLint rule

    PR-URL: #41614
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    b06c33b View commit details
    Browse the repository at this point in the history
  47. tools: enable no-cond-assign-ESLint rule

    no-cond-assign is one of the few ESLint recommended rules that we have
    turned off. This change enables the rule.
    
    PR-URL: #41614
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    b17aa25 View commit details
    Browse the repository at this point in the history
  48. tools: fix typo in tools/code_cache/README.md

    PR-URL: #41657
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    dc854c4 View commit details
    Browse the repository at this point in the history
  49. doc: modernize and simplify cluster example

    PR-URL: #41626
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    5d9c83e View commit details
    Browse the repository at this point in the history
  50. meta: update AUTHORS

    PR-URL: #41659
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    nodejs-github-bot authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    6d268fd View commit details
    Browse the repository at this point in the history
  51. test: simplify test-gc-http-client

    Instead of sending a fixed number of requests, detect when GC has
    started and stop sending requests at that point.
    
    PR-URL: #41620
    Refs: 47ecf2060343
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    lpinca authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    55fce66 View commit details
    Browse the repository at this point in the history
  52. tools: use Set instead of { [key]: true } object

    PR-URL: #41675
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    1cbdc98 View commit details
    Browse the repository at this point in the history
  53. util: remove unused fast path in internal debuglog

    The internal `debuglog()` is never called with 0 parameters. Remove the
    fast-path for that situation. If it ever occurs, it will fall through to
    the default path.
    
    PR-URL: #41605
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    8218bab View commit details
    Browse the repository at this point in the history
  54. tools: add compile_commands to ignore file

    For developing c++ source files, clangd generates an index file for
    project via `./configure -C`. We can safely ignore the file from
    tracking.
    
    PR-URL: #41580
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    yashLadha authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    7e4d455 View commit details
    Browse the repository at this point in the history
  55. doc: improve TLS/SSL introduction

    PR-URL: #41649
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    b9d1cb7 View commit details
    Browse the repository at this point in the history
  56. doc: fix documentation for MODULE_NOT_FOUND and ERR_MODULE_NOT_FOUND

    PR-URL: #41645
    Reviewed-By: Guy Bedford <guybedford@gmail.com>
    Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    aduh95 authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    3e93cc3 View commit details
    Browse the repository at this point in the history
  57. test: remove error allowance in debugger test

    Remove allowance for FATAL ERROR. It is no longer needed.
    
    PR-URL: #41640
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Jan Krems <jan.krems@gmail.com>
    MrJithil authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    2b87f97 View commit details
    Browse the repository at this point in the history
  58. doc: clarify treatment of non-string argument to new URL()

    Closes: #41653
    
    PR-URL: #41658
    Fixes: #41653
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    59f95fe View commit details
    Browse the repository at this point in the history
  59. doc: revise url.resolve() text

    PR-URL: #41661
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    1bd286e View commit details
    Browse the repository at this point in the history
  60. test: remove unneeded test statement

    The statement removed was added in 6657b15 but it was not added
    as an assertion. It currently returns false but t0he test does not fail
    because of the missing assertion. Since the property is no longer one
    that exists, there is no need to test its existence. Remove the line.
    
    PR-URL: #41663
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Tierney Cyren <hello@bnb.im>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    cb362a3 View commit details
    Browse the repository at this point in the history
  61. test: use Object.hasOwn() where applicable

    Replace Object.prototpye.hasOwnProperty() with Object.hasOwn() where
    applicable.
    
    PR-URL: #41664
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Tierney Cyren <hello@bnb.im>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    639130e View commit details
    Browse the repository at this point in the history
  62. doc: clarify parameter for napi_get_cb_info

    Refs: nodejs/help#3698
    
    Signed-off-by: Michael Dawson <mdawson@devrus.com>
    
    PR-URL: #41635
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    mhdawson authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    364811a View commit details
    Browse the repository at this point in the history
  63. doc: document flow for supporting type generation

    Refs: nodejs/next-10#104
    
    Add initial doc to capture how the project supports
    the flow for types generation. Based on discussions
    from the Next-10 mini-summit that included project
    members and members of the Definitely Typed team.
    
    Will need to be updated as we improve the flow and
    resulting json but captures the current flow and
    approach and will give us the place where we can
    update as things change.
    
    Signed-off-by: Michael Dawson <mdawson@devrus.com>
    
    PR-URL: #41464
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    mhdawson authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    b63fb0f View commit details
    Browse the repository at this point in the history
  64. doc: remove unadvisable cluster example

    Applications should usually keep track of workers themselves to prevent
    cross-referencing workers from different "groups" that are assigned to
    separate tasks.
    
    Additionally, it is unreasonable to assume that the 'data' event emitted
    by a socket object will be an integer. While the example works when the
    argument is a string (or Buffer), it can result in various issues (e.g.,
    when id === '__proto__' since cluster.workers has a non-null prototype).
    
    Refs: 5f08c3c
    
    PR-URL: #41668
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tierney Cyren <hello@bnb.im>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    071fef5 View commit details
    Browse the repository at this point in the history
  65. doc: fix typo in technical-priorities.md

    `heap dumps` spelled as `headumps`
    
    PR-URL: #41694
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    marsonya authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    92e6cf0 View commit details
    Browse the repository at this point in the history
  66. doc: clarify treatment of non-string base in URL()

    PR-URL: #41685
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    018ec32 View commit details
    Browse the repository at this point in the history
  67. util: use hasOwnProperty() primordial

    Avoid Object.prototype.hasOwnProperty. Use primordial instead.
    
    PR-URL: #41692
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Tierney Cyren <hello@bnb.im>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    4aee98b View commit details
    Browse the repository at this point in the history
  68. doc: fix link to npm documentation

    The previous link led to an old page that does not document all the
    `package.json` fields used by npm.
    
    PR-URL: #41712
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Tierney Cyren <hello@bnb.im>
    Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    aduh95 authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    4d8ee8e View commit details
    Browse the repository at this point in the history
  69. doc: improve docs to give descriptive info for the platform property

    PR-URL: #41650
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Tierney Cyren <hello@bnb.im>
    twitharshil authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    9616fd5 View commit details
    Browse the repository at this point in the history
  70. doc: fix typo in contributing guides

    PR-URL: #41723
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    kuriyosh authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    ee79e53 View commit details
    Browse the repository at this point in the history
  71. http2: fix memory leak on nghttp2 hd threshold

    PR-URL: #41502
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
    RafaelGSS authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    7bf2be5 View commit details
    Browse the repository at this point in the history
  72. tools: use Set instead of { [key]: true } object

    Refs: #41675
    
    PR-URL: #41695
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    9d23a27 View commit details
    Browse the repository at this point in the history
  73. doc: avoid incomplete sentence in cluster docs

    PR-URL: #41701
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Harshitha K P <harshitha014@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    db1ce43 View commit details
    Browse the repository at this point in the history
  74. process: unhandledRejection support more errors

    Support cross realm errors where `instanceof` errors in our
    unhandledRejection warning to print better error with stack traces.
    
    PR-URL: #41682
    Refs: #41676
    Reviewed-By: Nitzan Uziely <linkgoron@gmail.com>
    Reviewed-By: Tierney Cyren <hello@bnb.im>
    benjamingr authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    ee61bc7 View commit details
    Browse the repository at this point in the history
  75. perf_hooks: remove useless calls in Histogram

    Coverity reported some calls that had no effect,
    remove them
    
    Signed-off-by: Michael Dawson <mdawson@devrus.com>
    
    PR-URL: #41579
    Reviewed-By: Yash Ladha <yash@yashladha.in>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    mhdawson authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    e1e059a View commit details
    Browse the repository at this point in the history
  76. build: check if python is a executable program

    After Windows 10 version 1903, placeholder files named "python.exe"
    and "python3.exe" appear, not executable programs, and open the
    MS Store when running without parameters.
    
    Fixes: #36694
    Refs: https://devblogs.microsoft.com/python/python-in-the-windows-10-may-2019-update
    
    PR-URL: #36696
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    himself65 authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    2893b4c View commit details
    Browse the repository at this point in the history
  77. doc: update Mesteery email

    PR-URL: #41683
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Mesteery authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    e209f53 View commit details
    Browse the repository at this point in the history
  78. test: replace commented out expectations with tests

    Signed-off-by: Darshan Sen <raisinten@gmail.com>
    
    PR-URL: #41667
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    RaisinTen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    081989b View commit details
    Browse the repository at this point in the history
  79. test: fix typo in MessageChannel test

    PR-URL: #41746
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    acea61b View commit details
    Browse the repository at this point in the history
  80. meta: adjust mailmap/AUTHORS to reflect README change

    Refs: #41683 (review)
    
    PR-URL: #41751
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    30e3327 View commit details
    Browse the repository at this point in the history
  81. tools: update eslint to 8.8.0

    PR-URL: #41738
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    nodejs-github-bot authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    2eabfdd View commit details
    Browse the repository at this point in the history
  82. test: make fs watch test more stable

    PR-URL: #41715
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    benjamingr authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    951d299 View commit details
    Browse the repository at this point in the history
  83. lib: refactor source map stack trace prepare

    • Make use of the logical OR  operator (`||`) for better
    readability.
    • Remove unnecessary conditional and wrapping.
    
    PR-URL: #41698
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    VoltrexKeyva authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    c93a9af View commit details
    Browse the repository at this point in the history
  84. meta: update mailmap/AUTHORS info for existing collaborator

    Use the same email address in AUTHORS, README.md, and git metadata for
    existing collaborator.
    
    PR-URL: #41750
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    ba0ba7c View commit details
    Browse the repository at this point in the history
  85. meta: update AUTHORS

    PR-URL: #41763
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    nodejs-github-bot authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    a44a8ff View commit details
    Browse the repository at this point in the history
  86. benchmark: replace hasOwnProperty() with Object.hasOwn()

    PR-URL: #41724
    Reviewed-By: Tierney Cyren <hello@bnb.im>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    b77e72a View commit details
    Browse the repository at this point in the history
  87. doc: update modules.md wording

    PR-URL: #41728
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    thernstig authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    20d9c4a View commit details
    Browse the repository at this point in the history
  88. doc: clarify that import also uses main

    PR-URL: #41720
    Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    benmccann authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    211a3c4 View commit details
    Browse the repository at this point in the history
  89. benchmark: use Object.hasOwn() instead of hasOwnProperty()

    PR-URL: #41769
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    2c566a9 View commit details
    Browse the repository at this point in the history
  90. doc: remove section on "recent" ECDH changes

    The ECDH API changes were made more than six years ago and this
    section is not helpful for new applications. The behavior of the ECDH
    APIs should be explained in the relevant sections, not in a note.
    
    Refs: #3511
    
    PR-URL: #41773
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    9f77692 View commit details
    Browse the repository at this point in the history
  91. doc: use Object.hasOwn() in util doc

    Swtich from `hasOwnProperty()` to `Object.hasOwn()`.
    
    PR-URL: #41780
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    14ea8fc View commit details
    Browse the repository at this point in the history
  92. doc: add security-steward rotation information

    Add information about security stewards and
    rotation.
    
    Signed-off-by: Michael Dawson <mdawson@devrus.com>
    
    PR-URL: #41707
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com>
    Reviewed-By: Bryan English <bryan@bryanenglish.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    mhdawson authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    4f194f3 View commit details
    Browse the repository at this point in the history
  93. test: mark test-fs-rmdir-recursive flaky on win

    Refs: #41201
    
    From recent reliability reports this is now the most
    common failure by far in CI runs. Mark the test as
    flaky until the issue is resolved.
    
    Signed-off-by: Michael Dawson <mdawson@devrus.com>
    
    PR-URL: #41533
    Reviewed-By: Ben Coe <bencoe@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    mhdawson authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    badab79 View commit details
    Browse the repository at this point in the history
  94. test: make worker-take-heapsnapshot non-flaky

    Recent V8 upgrade seems to have made this pass
    reliably now. Remove flaky entry
    
    Refs: #41204
    
    Signed-off-by: Michael Dawson <mdawson@devrus.com>
    
    PR-URL: #41684
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    mhdawson authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    1f65620 View commit details
    Browse the repository at this point in the history
  95. crypto: fix webcrypto.subtle signature

    PR-URL: #41761
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Filip Skokan <panva.ip@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    aduh95 authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    33abbf9 View commit details
    Browse the repository at this point in the history
  96. doc: add v16 changelog link to iojs changelog

    PR-URL: #41808
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Beth Griggs <bgriggs@redhat.com>
    danielleadams committed Mar 14, 2022
    Copy the full SHA
    8f00e5d View commit details
    Browse the repository at this point in the history
  97. doc: add format-md step to release guide

    PR-URL: #41809
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    danielleadams committed Mar 14, 2022
    Copy the full SHA
    51d9553 View commit details
    Browse the repository at this point in the history
  98. doc: improve wording surrounding TLS 1.3 ciphers

    Spelling out numbers makes this part easier to read. Also remove the
    unnecessary word 'last'.
    
    PR-URL: #41778
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Nitzan Uziely <linkgoron@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    3ef05a0 View commit details
    Browse the repository at this point in the history
  99. test: exclude ibm i tests until we resolve

    Refs: #39683
    
    These are being worked, but we really should have
    marked flaky a long time ago in ordert to make
    then nightlies non-red.
    
    Signed-off-by: Michael Dawson <mdawson@devrus.com>
    
    PR-URL: #41812
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    mhdawson authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    3690d34 View commit details
    Browse the repository at this point in the history
  100. src: fix typo in js_native_api_v8.cc

    PR-URL: #41764
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    caioagiani authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    1cfc63e View commit details
    Browse the repository at this point in the history
  101. doc: use UDPv4/UDPv6 consistently with TCPv4/TCPv6

    (Arguably, the whole terminology is not perfect, but at least it will be
    consistent with TCP now.)
    
    PR-URL: #41824
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    5cd8bdc View commit details
    Browse the repository at this point in the history
  102. doc: align tls port types with net port types

    PR-URL: #41799
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    4660c1f View commit details
    Browse the repository at this point in the history
  103. test: avoid using Object.prototype methods directly on objects

    This prepares us to enable the no-prototype-builtins ESLint rule.
    
    Refs: https://eslint.org/docs/rules/no-prototype-builtins
    
    PR-URL: #41801
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    673c1fd View commit details
    Browse the repository at this point in the history
  104. tools,test: enable no-prototype-builtins

    PR-URL: #41801
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    6612056 View commit details
    Browse the repository at this point in the history
  105. doc: use example.com for examples

    PR-URL: #41827
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Beth Griggs <bgriggs@redhat.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    atesgoral authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    1be701c View commit details
    Browse the repository at this point in the history
  106. doc: add note about resource type in async_hooks

    PR-URL: #41797
    Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
    Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com>
    tony-go authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    44b6927 View commit details
    Browse the repository at this point in the history
  107. buffer: fix atob/btoa no-arg case

    PR-URL: #41478
    Fixes: #41450
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Filip Skokan <panva.ip@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    benjamingr authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    14bb6f9 View commit details
    Browse the repository at this point in the history
  108. async_hooks: fix imports in context example

    Added imports for packages that is mentioned in the example of
    async_hooks context example.
    
    PR-URL: #39229
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
    yashLadha authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    2a24e76 View commit details
    Browse the repository at this point in the history
  109. doc: add registry numbers for Electron 19 and 20

    PR-URL: #41814
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Tierney Cyren <hello@bnb.im>
    VerteDinde authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    077fcee View commit details
    Browse the repository at this point in the history
  110. http2: fix no response event on continue request

    When sending a continue request, server response with null,
    it does not fires the response event type
    
    Fixes: #38258
    
    PR-URL: #41739
    Refs: #38561
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    ofirbarak authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    2efe9cb View commit details
    Browse the repository at this point in the history
  111. crypto: check return code from EVP_DigestUpdate

    Coverity was complaining that we did not check the
    return code. We seem to check in the other place it
    is called and the method already handles returning
    a result.
    
    Signed-off-by: Michael Dawson <mdawson@devrus.com>
    
    PR-URL: #41800
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Filip Skokan <panva.ip@gmail.com>
    mhdawson authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    46f714f View commit details
    Browse the repository at this point in the history
  112. doc: add initial version of maintaining-http.md

    - document strategy based on Next-10 mini-summit
    - initial top level info on http API implementations
    
    Refs: nodejs/next-10#114
    
    Signed-off-by: Michael Dawson <mdawson@devrus.com>
    
    PR-URL: #41798
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    mhdawson authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    20d8fd1 View commit details
    Browse the repository at this point in the history
  113. doc: use sentence case for X509 error codes header

    Refs: #33889
    
    PR-URL: #41829
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    f5b0a3b View commit details
    Browse the repository at this point in the history
  114. doc: fix X509 CA acronym capitalization

    PR-URL: #41841
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    42c0a83 View commit details
    Browse the repository at this point in the history
  115. doc: add overhead hints for heap snapshot generation

    Added some hints that creation of an heap snapshot has significant
    overhead on memory requirement and event loop utilization.
    
    PR-URL: #41822
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Flarna authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    3f000a2 View commit details
    Browse the repository at this point in the history
  116. doc: feature management proposal

    Refs: #40823
    Refs: #41113
    
    Signed-off-by: Michael Dawson <mdawson@devrus.com>
    
    PR-URL: #41420
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Mary Marchini <oss@mmarchini.me>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    mhdawson authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    c742a1c View commit details
    Browse the repository at this point in the history
  117. tools: update doc to rehype-stringify@9.0.3

    PR-URL: #41854
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    nodejs-github-bot authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    20cdf78 View commit details
    Browse the repository at this point in the history
  118. tools: update lint-md-dependencies to rollup@2.67.0

    PR-URL: #41737
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    nodejs-github-bot authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    10e6c70 View commit details
    Browse the repository at this point in the history
  119. src: slightly simplify V8CoverageConnection::GetFilename

    PR-URL: #41748
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    addaleax authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    206c370 View commit details
    Browse the repository at this point in the history
  120. src: slightly simplify URLHost::ToString

    PR-URL: #41747
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Mary Marchini <oss@mmarchini.me>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    addaleax authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    5e59568 View commit details
    Browse the repository at this point in the history
  121. doc: add history information for Corepack

    PR-URL: #41813
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Beth Griggs <bgriggs@redhat.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    aduh95 authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    cf6b5e0 View commit details
    Browse the repository at this point in the history
  122. benchmark: avoid input param manipulation

    PR-URL: #41741
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Mary Marchini <oss@mmarchini.me>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    MrJithil authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    abe2eb9 View commit details
    Browse the repository at this point in the history
  123. doc: add missing commas in cluster docs

    PR-URL: #41865
    Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    5cd38a4 View commit details
    Browse the repository at this point in the history
  124. doc: improve SSL_OP_PRIORITIZE_CHACHA description

    The cipher should be spelled "ChaCha20-Poly1305", i.e., with a hyphen
    between the encryption and MAC algorithm names. Also change "when client
    does" to "when the client does."
    
    PR-URL: #41866
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    c7bae97 View commit details
    Browse the repository at this point in the history
  125. meta: update AUTHORS

    PR-URL: #41868
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    nodejs-github-bot authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    70f6554 View commit details
    Browse the repository at this point in the history
  126. doc: add stream pipelining note on Http usage

    PR-URL: #41796
    Reviewed-By: Robert Nagy <ronagy@icloud.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Mary Marchini <oss@mmarchini.me>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    RafaelGSS authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    77685d5 View commit details
    Browse the repository at this point in the history
  127. stream: resume stream on drain

    Previously we would just resume "flowing" the stream without
    reseting the "paused" state. Fixes this by properly using
    pause/resume methods for .pipe.
    
    Fixes: #41785
    
    PR-URL: #41848
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    ronag authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    46ed078 View commit details
    Browse the repository at this point in the history
  128. lib: refactor to use validateObject() validator

    Use the `validateObject()` validator in source maps where appropriate.
    
    PR-URL: #41845
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    VoltrexKeyva authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    c90bb7c View commit details
    Browse the repository at this point in the history
  129. test: remove test-worker-memory flaky designation

    Judging from https://github.com/nodejs/reliability/issues, this hasn't
    failed in CI since November 2021.
    
    Closes: #23277
    
    PR-URL: #41867
    Fixes: #23277
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    a8e4183 View commit details
    Browse the repository at this point in the history
  130. doc: add missing space before hyphen

    PR-URL: #41873
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Mesteery authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    b15d9c2 View commit details
    Browse the repository at this point in the history
  131. test: remove eslint-disable comments from fixtures

    We do not lint the fixtures code so eslint-disable comments are
    superfluous.
    
    PR-URL: #41859
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    20ec776 View commit details
    Browse the repository at this point in the history
  132. doc: use sentence case in readme introduction

    PR-URL: #41874
    Refs: https://docs.microsoft.com/en-us/style-guide/a-z-word-list-term-collections/w/web-world-wide-web-www
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Mesteery authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    bf99ef8 View commit details
    Browse the repository at this point in the history
  133. http2: fix pseudo-headers order

    Keep pseudo-headers order same as sent order
    
    Fixes: #38797
    
    PR-URL: #41735
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    ofir authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    e747ef5 View commit details
    Browse the repository at this point in the history
  134. doc: use Oxford comma in crypto docs

    PR-URL: #41875
    Reviewed-By: Mestery <mestery@protonmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    tniessen authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    fd28d25 View commit details
    Browse the repository at this point in the history
  135. doc: use the same case as the section heading

    Refs: https://github.com/nodejs/node#verifying-binaries
    
    PR-URL: #41876
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Mesteery authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    34d6f8e View commit details
    Browse the repository at this point in the history
  136. benchmark: enable no-empty ESLint rule

    PR-URL: #41831
    Backport-PR-URL: #42160
    Refs: https://eslint.org/docs/rules/no-empty
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    c4a296f View commit details
    Browse the repository at this point in the history
  137. doc: remove empty block from console.timeEnd() example

    PR-URL: #41831
    Backport-PR-URL: #42160
    Refs: https://eslint.org/docs/rules/no-empty
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    125ed0c View commit details
    Browse the repository at this point in the history
  138. doc: add comments to empty blocks in worker_threads text

    PR-URL: #41831
    Backport-PR-URL: #42160
    Refs: https://eslint.org/docs/rules/no-empty
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    330c1bc View commit details
    Browse the repository at this point in the history
  139. lib: add comments to empty catch statements

    PR-URL: #41831
    Backport-PR-URL: #42160
    Refs: https://eslint.org/docs/rules/no-empty
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    acd8768 View commit details
    Browse the repository at this point in the history
  140. policy: revise manifest.js to avoid empty blocks

    PR-URL: #41831
    Backport-PR-URL: #42160
    Refs: https://eslint.org/docs/rules/no-empty
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    08b3bd2 View commit details
    Browse the repository at this point in the history
  141. stream: remove empty block

    PR-URL: #41831
    Backport-PR-URL: #42160
    Refs: https://eslint.org/docs/rules/no-empty
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    aebd82e View commit details
    Browse the repository at this point in the history
  142. test: enable no-empty ESLint rule

    PR-URL: #41831
    Backport-PR-URL: #42160
    Refs: https://eslint.org/docs/rules/no-empty
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    c8e59cb View commit details
    Browse the repository at this point in the history
  143. tools: enable no-empty ESLint rule

    Refs: https://eslint.org/docs/rules/no-empty
    
    PR-URL: #41831
    Backport-PR-URL: #42160
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Trott authored and danielleadams committed Mar 14, 2022
    Copy the full SHA
    788e77c View commit details
    Browse the repository at this point in the history
  144. build: remove windows-2022 from v16.x actions

    PR-URL: #42299
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    danielleadams committed Mar 14, 2022
    Copy the full SHA
    79e2ab2 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2022

  1. test: renew certificates for specific test

    Renew the certificates used by
    `test/parallel/test-https-selfsigned-no-keycertsign-no-crash.js` by
    running the `https_renew_cert.sh` script under the same directory.
    
    PR-URL: #42342
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    lpinca authored and danielleadams committed Mar 15, 2022
    Copy the full SHA
    ecb5263 View commit details
    Browse the repository at this point in the history
  2. 2022-03-15, Version 16.14.1 'Gallium' (LTS)

    Notable changes:
    
    * doc:
      * add release key for Bryan English (Bryan English) #42102
    
    PR-URL: #42200
    danielleadams committed Mar 15, 2022
    Copy the full SHA
    82c537f View commit details
    Browse the repository at this point in the history