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.8.0 release proposal #37183

Merged
merged 82 commits into from Feb 2, 2021
Merged

v15.8.0 release proposal #37183

merged 82 commits into from Feb 2, 2021

Commits on Feb 2, 2021

  1. crypto: experimental (Ed/X)25519/(Ed/X)448 support

    Implements initial experimental support for Curve25519 and
    Curve448 support for both ECDH and sign/verify in Web Crypto.
    
    Introduced as a Node.js-specific extension to Web Crypto.
    
    Signed-off-by: James M Snell <jasnell@gmail.com>
    Fixes: #36076
    
    PR-URL: #36879
    Reviewed-By: Filip Skokan <panva.ip@gmail.com>
    jasnell authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    53a0bdf View commit details
    Browse the repository at this point in the history
  2. lib: refactor to use validateBoolean

    PR-URL: #36983
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Lxxyx authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    c4cab1f View commit details
    Browse the repository at this point in the history
  3. benchmark: improve explanations in R script

    PR-URL: #36995
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Pooja D P <Pooja.D.P@ibm.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    tniessen authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    96cec1e View commit details
    Browse the repository at this point in the history
  4. fs: add explicit note about undefined path when recursive

    PR-URL: #37010
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    eps1lon authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    0129a79 View commit details
    Browse the repository at this point in the history
  5. lib: support returning Safe collections from C++

    Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
    
    PR-URL: #36989
    Refs: #36652
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    ExE-Boss authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    56377d6 View commit details
    Browse the repository at this point in the history
  6. fs: refactor to remove redundant validation

    The function makeCallback already calls validateCallback, so the call
    inside copyFile can be removed.
    
    PR-URL: #36984
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    RaisinTen authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    97fc7d8 View commit details
    Browse the repository at this point in the history
  7. lib: refactor to use validateNumber

    PR-URL: #36993
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Pooja D P <Pooja.D.P@ibm.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Lxxyx authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    a29da64 View commit details
    Browse the repository at this point in the history
  8. lib: refactor to use validateString

    PR-URL: #37006
    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: James M Snell <jasnell@gmail.com>
    Lxxyx authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    d76400a View commit details
    Browse the repository at this point in the history
  9. child_process: allow promisified exec to be cancel

    Using new AbortController, add support for promisified
    exec to be cancelled.
    
    PR-URL: #34249
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    metcoder95 authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    7b78c67 View commit details
    Browse the repository at this point in the history
  10. readline: add support for the AbortController to the question method

    In some cases a question asked needs to be canceled. For instance
    it might be desirable to cancel a question when a user presses
    ctrl+c and triggers the SIGINT event.
    Also an initial empty string was set for this.line since the
    cursor methods fail if line is not initialized.
    Added custom promisify support to the question method.
    
    PR-URL: #33676
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    mattiasrunge authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    4e757ea View commit details
    Browse the repository at this point in the history
  11. quic: remove duplicate checks

    PR-URL: #37017
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Lxxyx authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    b533485 View commit details
    Browse the repository at this point in the history
  12. crypto: throw error on invalid object in diffieHellman()

    PR-URL: #37016
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Lxxyx authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    ab64d74 View commit details
    Browse the repository at this point in the history
  13. test: test mode passed as an options object in mkdir/mkdirSync

    Add tests for mode passed as an options object in fs.mkdir() and
    fs.mkdirSync().
    
    This also adds coverage for mkdirSync() inside the conditional where
    options.mode is not undefined.
    
    PR-URL: #37008
    Refs: https://coverage.nodejs.org/coverage-e3e054d020ee5ef6/lib/fs.js.html#L1023
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    RaisinTen authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    36930e4 View commit details
    Browse the repository at this point in the history
  14. test: log error in test-fs-realpath-pipe

    Show more information when the test fails.
    
    PR-URL: #36996
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    joyeecheung authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    36cc8df View commit details
    Browse the repository at this point in the history
  15. doc: add missing ARIA label for button

    The button for toggling light mode and dark mode has no text display.
    Screen readers will read it as simply "button", making it not useful.
    Add an aria-label attribute so it gets a better description.
    
    PR-URL: #37031
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Trott authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    fef6ac7 View commit details
    Browse the repository at this point in the history
  16. test: improve coverage of SourceTextModule getters

    PR-URL: #37013
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    juanarbol authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    de6dca1 View commit details
    Browse the repository at this point in the history
  17. lib: refactor to use optional chaining in internal/options.js

    PR-URL: #36939
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    RaisinTen authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    4a1fc42 View commit details
    Browse the repository at this point in the history
  18. fs: use throwIfNoEntry option on statSync calls

    PR-URL: #36975
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    aduh95 authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    175f6f0 View commit details
    Browse the repository at this point in the history
  19. test: increase timeout on ASAN Action

    Setting the timeout to 300s (or 5 minutes) instead of the default 120s
    per test to limit the number of false negative on GH Action CI results.
    
    PR-URL: #37007
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    aduh95 authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    2135618 View commit details
    Browse the repository at this point in the history
  20. doc: list Unsupported Directory Import resolve err

    PR-URL: #37032
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    guybedford authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    2cfe795 View commit details
    Browse the repository at this point in the history
  21. readline: add history event and option to set initial history

    Add a history event which is emitted when the history has
    been changed. This enables persisting of the history in
    some way but also to allows a listener to alter the
    history. One use-case could be to prevent passwords from
    ending up in the history.
    
    A constructor option is also added to allow for setting
    an initial history list when creating a Readline interface.
    
    PR-URL: #33662
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    mattiasrunge authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    7512429 View commit details
    Browse the repository at this point in the history
  22. doc: add missing comma in tty

    PR-URL: #37039
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    ma11hew28 authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    3722c15 View commit details
    Browse the repository at this point in the history
  23. test: process.nextTick for before exit

    PR-URL: #37012
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    ttzztztz authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    94204f7 View commit details
    Browse the repository at this point in the history
  24. test: increase fs promise coverage

    1. Signal aborted while writing file
    Refs: https://coverage.nodejs.org/coverage-0b6d3070a176d437/lib/internal/fs/promises.js.html#L278
    
    2. Signal aborted on first tick
    Refs: https://coverage.nodejs.org/coverage-0b6d3070a176d437/lib/internal/fs/promises.js.html#L301
    
    3. Validate file size is withing range for reading
    Refs: https://coverage.nodejs.org/coverage-0b6d3070a176d437/lib/internal/fs/promises.js.html#L312
    
    4. Signal aborted right before buffer read
    Refs: https://coverage.nodejs.org/coverage-0b6d3070a176d437/lib/internal/fs/promises.js.html#L321
    
    5. Use fallback buffer allocation when input not buffer
    Refs: https://coverage.nodejs.org/coverage-0b6d3070a176d437/lib/internal/fs/promises.js.html#L374
    
    6. Specify symlink type
    Refs: https://coverage.nodejs.org/coverage-0b6d3070a176d437/lib/internal/fs/promises.js.html#L539
    
    7. Set modification times with lutimes
    Refs: https://coverage.nodejs.org/coverage-0b6d3070a176d437/lib/internal/fs/promises.js.html#L635
    
    8. Use fallback encoding when input is null
    Refs: https://coverage.nodejs.org/coverage-0b6d3070a176d437/lib/internal/fs/promises.js.html#L665
    
    9. Use fallback flag when input is null
    Refs: https://coverage.nodejs.org/coverage-0b6d3070a176d437/lib/internal/fs/promises.js.html#L681
    
    PR-URL: #36813
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    emilsivervik authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    4086b23 View commit details
    Browse the repository at this point in the history
  25. doc: EventTarget and Event are available to user code since v15.0.0

    PR-URL: #37059
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    ExE-Boss authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    a7b6464 View commit details
    Browse the repository at this point in the history
  26. benchmark: make output RFC 4180 compliant

    PR-URL: #37038
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    tniessen authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    ec22756 View commit details
    Browse the repository at this point in the history
  27. src: rename crypto_ecdh.(h|cc) to crypto_ec.(h|cc)

    PR-URL: #37048
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    tniessen authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    81e9acf View commit details
    Browse the repository at this point in the history
  28. doc: improve AsyncLocalStorage introduction

    PR-URL: #36946
    Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com>
    Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
    Reviewed-By: Andrey Pechkurov <apechkurov@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    brillout authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    c79688f View commit details
    Browse the repository at this point in the history
  29. dgram: support AbortSignal in createSocket

    PR-URL: #37026
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Nitzan Uziely authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    2c7ad38 View commit details
    Browse the repository at this point in the history
  30. test: improve assertion message for test-vm-memleak

    The test is unreliable in CI. It might be helpful to get an exact read
    of `rss` so this adds that to the assertion message.
    
    PR-URL: #37034
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    074641c View commit details
    Browse the repository at this point in the history
  31. doc: add tooltip for light/dark mode toggle

    PR-URL: #37044
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    7ddfa81 View commit details
    Browse the repository at this point in the history
  32. doc: add Zijian Liu to collaborators

    PR-URL: #37075
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Lxxyx authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    b7c3f99 View commit details
    Browse the repository at this point in the history
  33. crypto: add generatePrime/checkPrime

    APIs for generating and checking pseudo-random primes
    
    Signed-off-by: James M Snell <jasnell@gmail.com>
    
    PR-URL: #36997
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    jasnell authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    110063d View commit details
    Browse the repository at this point in the history
  34. test,doc,lib: adjust object literal newlines for lint rule

    Before enabling object-curly-newline for our ESLint rules, adjust files
    to comply with it.
    
    Refs: https://eslint.org/docs/rules/object-curly-newline
    
    PR-URL: #37040
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Trott authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    9c69ca5 View commit details
    Browse the repository at this point in the history
  35. tools: enable object-curly-newline in ESLint rules

    I saw a PR review comment  about newlines in desructured
    assignments, and this would be the rule to enforce these kinds of nits.
    Start by just enabling the rule. We can incrementally adjust it to be
    more strict.
    
    Refs: https://eslint.org/docs/rules/object-curly-newline
    Refs: #37028 (review)
    
    PR-URL: #37040
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Trott authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    d2d6121 View commit details
    Browse the repository at this point in the history
  36. test: increase coverage for assert/calltracker

    1. test calls fn parameter is number
    Refs: https://coverage.nodejs.org/coverage-51b43675067fafaa/lib/internal/assert/calltracker.js.html#L30
    
    2. test calls fn parameter is undefined
    Refs: https://coverage.nodejs.org/coverage-51b43675067fafaa/lib/internal/assert/calltracker.js.html#L33
    
    PR-URL: #36728
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Lxxyx authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    ef2b250 View commit details
    Browse the repository at this point in the history
  37. test: update to improve terminology

    Update common section in wpt to incorporate
    improved terminology fixed upstream in
    web-platform-tests/wpt#27152
    
    Signed-off-by: Michael Dawson <mdawson@devrus.com>
    
    PR-URL: #37011
    Reviewed-By: Milad Fa <mfarazma@redhat.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    mhdawson authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    55407b8 View commit details
    Browse the repository at this point in the history
  38. buffer: avoid creating the backing store in the thread

    Fixes: #37030
    
    PR-URL: #37052
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    jasnell authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    e4b88b5 View commit details
    Browse the repository at this point in the history
  39. lib: refactor to avoid unsafe array iteration

    PR-URL: #37029
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    aduh95 authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    34adf7f View commit details
    Browse the repository at this point in the history
  40. doc: mention adding Fixes to collaborator onboarding PR

    Also update the example to include the Fixes url.
    
    PR-URL: #37097
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: Beth Griggs <bgriggs@redhat.com>
    joyeecheung authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    1710016 View commit details
    Browse the repository at this point in the history
  41. crypto: generateKeyPair('ec') should not support NODE-ED* and NODE-X*

    Fixes #37055
    
    PR-URL: #37063
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    panva authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    cb3b0ec View commit details
    Browse the repository at this point in the history
  42. crypto: fix encrypted private -> public import

    PR-URL: #37056
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Filip Skokan <panva.ip@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    tniessen authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    c4193ba View commit details
    Browse the repository at this point in the history
  43. test: increase read file abort coverage

    PR-URL: #36716
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    shootermv authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    da07eb6 View commit details
    Browse the repository at this point in the history
  44. lib: refactor to use validateFunction

    add validateFunction and refactor to use validateFunction
    
    PR-URL: #37045
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Lxxyx authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    5227c5e View commit details
    Browse the repository at this point in the history
  45. test: skip tests consistently in parallel.status

    Some tests are marked SKIP,FLAKY (resulting in yellow/unstable CI when
    they fail) and others are marked SKIP (which means the results don't
    affect CI at all). There doesn't seem to be any reason for the
    difference. Mark them all as SKIP as IBM i for consistency and to have
    the luxury of a green daily CI. We'll want these to be at least
    SKIP,FLAKY (and preferably not skipped at all) before IBM i is
    supported.
    
    PR-URL: #37035
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Trott authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    10da5c1 View commit details
    Browse the repository at this point in the history
  46. test: increase inspect coverage

    1. Truncate output for Primitives with 1 character left
    Refs: https://coverage.nodejs.org/coverage-0b6d3070a176d437/lib/internal/util/inspect.js.html#L1359
    
    2. Truncate output for ArrayBuffers using plural or singular bytes
    Refs: https://coverage.nodejs.org/coverage-0b6d3070a176d437/lib/internal/util/inspect.js.html#L1465
    
    PR-URL: #36755
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    emilsivervik authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    db38cf2 View commit details
    Browse the repository at this point in the history
  47. fs: add validatePosition and use in read and readSync

    PR-URL: #37051
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    RaisinTen authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    6f54a14 View commit details
    Browse the repository at this point in the history
  48. benchmark: add benchmark for NODE_V8_COVERAGE

    PR-URL: #36972
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    bcoe authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    dcd34b0 View commit details
    Browse the repository at this point in the history
  49. lib: refactor to use validateObject

    Co-authored-by: ExE Boss <3889017+ExE-Boss@users.noreply.github.com>
    Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
    
    PR-URL: #37028
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Lxxyx authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    67b58f6 View commit details
    Browse the repository at this point in the history
  50. lib: add bound apply variants of varargs primordials

    Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
    
    PR-URL: #37005
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    ExE-Boss authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    ed58065 View commit details
    Browse the repository at this point in the history
  51. test: add tests for bound apply variants of varargs primordials

    PR-URL: #37005
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    ExE-Boss authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    1f819ec View commit details
    Browse the repository at this point in the history
  52. doc: update BUILDING.md previous versions links

    Remove links to End-of-Life versions of the BUILDING.md document.
    Add a link to the version for Node.js 14.x.
    
    PR-URL: #37082
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Beth Griggs <bgriggs@redhat.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    richardlau authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    ddee21b View commit details
    Browse the repository at this point in the history
  53. tools: remove commented code from stability.js

    PR-URL: #37092
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    cjihrig authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    fe9f4fd View commit details
    Browse the repository at this point in the history
  54. readline: check for null input in question()

    question() checks for objects passed as the recently added options
    argument. This commit improves that logic to also check for null.
    
    PR-URL: #37089
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    cjihrig authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    3d64d2b View commit details
    Browse the repository at this point in the history
  55. readline: replace _questionCancel with a symbol

    This commit avoids exposing a new underscored property on
    readline Interface instances.
    
    PR-URL: #37094
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    cjihrig authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    1714998 View commit details
    Browse the repository at this point in the history
  56. util: add internal createDeferredPromise()

    The pattern of resolving/rejecting a Promise from outside of its
    executor happens numerous times throughout the codebase (more than
    what is updated here in fact). This commit abstracts that logic
    into an internal utility function.
    
    PR-URL: #37095
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    cjihrig authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    3187845 View commit details
    Browse the repository at this point in the history
  57. src: fix dead code in RandomPrimeTraits

    PR-URL: #37083
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    tniessen authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    9c831c0 View commit details
    Browse the repository at this point in the history
  58. deps: upgrade npm to 7.5.0

    PR-URL: #37117
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    ruyadorno authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    0346043 View commit details
    Browse the repository at this point in the history
  59. doc: update Buffer encoding option count

    #36952 added the `base64url`
    encoding option.
    
    Easier to just remove the count of options so it doesn’t need to be
    updated to four, five, etc. in the future.
    
    PR-URL: #37102
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Filip Skokan <panva.ip@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Harshitha K P <harshitha014@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    davecardwell authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    b79b82d View commit details
    Browse the repository at this point in the history
  60. esm: deprecate legacy main lookup for modules

    PR-URL: #36918
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    guybedford authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    02f1d2f View commit details
    Browse the repository at this point in the history
  61. Revert "deps: update patch and docs for openssl update"

    This reverts commit 548790a.
    
    PR-URL: #37067
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    jasnell authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    52ce1d5 View commit details
    Browse the repository at this point in the history
  62. Revert "deps: re-enable OPENSSL_NO_QUIC guards"

    This reverts commit b0d5bfe.
    
    PR-URL: #37067
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    jasnell authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    6756130 View commit details
    Browse the repository at this point in the history
  63. Revert "deps: various quic patches from akamai/openssl"

    This reverts commit 06c5b53.
    
    PR-URL: #37067
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    jasnell authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    f74b376 View commit details
    Browse the repository at this point in the history
  64. quic: remove quic

    PR-URL: #37067
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    jasnell authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    11dd267 View commit details
    Browse the repository at this point in the history
  65. deps: update openssl config

    PR-URL: #37067
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    jasnell authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    9d6fd45 View commit details
    Browse the repository at this point in the history
  66. doc: add missing deprecation code

    PR-URL: #37147
    Refs: #36918
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    cjihrig authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    ae42658 View commit details
    Browse the repository at this point in the history
  67. esm: update to correct deprecation code

    #36918 landed with references
    to DEP0150, which is already used for a different deprecation.
    This commit updates the code to use DEP0151.
    
    PR-URL: #37147
    Refs: #36918
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    cjihrig authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    181719d View commit details
    Browse the repository at this point in the history
  68. doc: remove TOC summary for pages with no TOC

    Remove the table of contents summary for pages with no table of
    contents. Currently, this affects at least index.html.
    
    PR-URL: #37043
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Trott authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    9b9a180 View commit details
    Browse the repository at this point in the history
  69. doc: add example for test structure

    PR-URL: #35046
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    wjabbour authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    e55d3d0 View commit details
    Browse the repository at this point in the history
  70. doc: clarify repl exception conditions

    The sample code demonstrating ERR_INVALID_REPL_INPUT is confusing, I
    think. This simplifies and clarifies it a bit, I hope.
    
    PR-URL: #37142
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    e712650 View commit details
    Browse the repository at this point in the history
  71. http: refactor to avoid unsafe array iteration

    PR-URL: #37124
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    aduh95 authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    7196ac1 View commit details
    Browse the repository at this point in the history
  72. doc: clarify ERR_INVALID_REPL_INPUT usage

    The REPL documentation does not list prohibited inputs, but it does
    explain the conditions under which ERR_INVALID_REPL_INPUT is used.
    Update the error doc to indicate that.
    
    PR-URL: #37143
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    a778081 View commit details
    Browse the repository at this point in the history
  73. doc: fix markup and alphabetization in errors.md

    Change `<a id"...` to `<a id="...` (missing equal sign) and move entry
    to correct location in alphabetical order.
    
    PR-URL: #37144
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Trott authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    8cecce3 View commit details
    Browse the repository at this point in the history
  74. fs: only use Buffer.concat in promises.readFile when necessary

    PR-URL: #37127
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    addaleax authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    ad12fef View commit details
    Browse the repository at this point in the history
  75. fs: read full size if known in promises.readFile

    If we have an estimate of the file size available from the previous
    stat call, use that for the size of the first chunk to be read.
    This increases performance by reading more data (and, most likely,
    all data) at once without incurring memory overhead in most situations.
    
    PR-URL: #37127
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    addaleax authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    6940252 View commit details
    Browse the repository at this point in the history
  76. doc,test: fix prime generation description

    The previous description incorrectly explained the behavior of
    options.add and options.rem for primes that are not safe.
    
    PR-URL: #37085
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    tniessen authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    634bedc View commit details
    Browse the repository at this point in the history
  77. async_hooks: refactor to avoid unsafe array iteration

    PR-URL: #37125
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    aduh95 authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    602aaf2 View commit details
    Browse the repository at this point in the history
  78. doc: fix list format in Developer's Certificate of Origin

    This corresponds to the format at https://developercertificate.org/.
    
    PR-URL: #37138
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Darshan Sen <raisinten@gmail.com>
    Reviewed-By: Pooja D P <Pooja.D.P@ibm.com>
    Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
    NegiAkash890 authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    3c90771 View commit details
    Browse the repository at this point in the history
  79. src: expose BaseObject::kInternalFieldCount in post-mortem metadata

    So that the debugger does not have to hard-code the number of
    internal fields of BaseObjects.
    
    PR-URL: #37111
    Refs: #36943
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    joyeecheung authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    a26dfb3 View commit details
    Browse the repository at this point in the history
  80. deps: upgrade npm to 7.5.1

    PR-URL: #37177
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    ruyadorno authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    4551d14 View commit details
    Browse the repository at this point in the history
  81. doc: fix color contrast on <kbd> elements

    PR-URL: #37185
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    aduh95 authored and targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    47bfde0 View commit details
    Browse the repository at this point in the history
  82. 2021-02-02, Version 15.8.0 (Current)

    Notable changes:
    
    crypto:
      * (SEMVER-MINOR) add generatePrime/checkPrime (James M Snell) #36997
      * (SEMVER-MINOR) experimental (Ed/X)25519/(Ed/X)448 support (James M Snell) #36879
    deps:
      * upgrade npm to 7.5.0 (Ruy Adorno) #37117
    dgram:
      * (SEMVER-MINOR) support AbortSignal in createSocket (Nitzan Uziely) #37026
    doc:
      * add Zijian Liu to collaborators (ZiJian Liu) #37075
    esm:
      * deprecate legacy main lookup for modules (Guy Bedford) #36918
    readline:
      * (SEMVER-MINOR) add history event and option to set initial history (Mattias Runge-Broberg) #33662
      * (SEMVER-MINOR) add support for the AbortController to the question method (Mattias Runge-Broberg) #33676
    
    PR-URL: #37183
    targos committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    bc1c428 View commit details
    Browse the repository at this point in the history