Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nodejs/node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5da6c4e86f45d32ae5537dc0b0973afd1c155f8e
Choose a base ref
...
head repository: nodejs/node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7e57f728e046fb91534dcf22072b0ba02214b483
Choose a head ref
  • 20 commits
  • 485 files changed
  • 15 contributors

Commits on Dec 4, 2024

  1. doc: fix typo

    PR-URL: #56125
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    himself65 authored Dec 4, 2024
    Configuration menu
    Copy the full SHA
    7bedcfd View commit details
    Browse the repository at this point in the history
  2. crypto: ensure CryptoKey usages and algorithm are cached objects

    PR-URL: #56108
    Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    panva authored Dec 4, 2024
    Configuration menu
    Copy the full SHA
    4e44322 View commit details
    Browse the repository at this point in the history
  3. test: update WPT for WebCryptoAPI to 76dfa54e5d

    PR-URL: #56093
    Reviewed-By: Filip Skokan <panva.ip@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Jason Zhang <xzha4350@gmail.com>
    nodejs-github-bot committed Dec 4, 2024
    Configuration menu
    Copy the full SHA
    398c941 View commit details
    Browse the repository at this point in the history
  4. test: update WPT for WebCryptoAPI to 3e3374efde

    PR-URL: #56093
    Reviewed-By: Filip Skokan <panva.ip@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Jason Zhang <xzha4350@gmail.com>
    nodejs-github-bot committed Dec 4, 2024
    Configuration menu
    Copy the full SHA
    09d5be0 View commit details
    Browse the repository at this point in the history
  5. net: add net.BlockList.isBlockList(value)

    PR-URL: #56078
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: theanarkh <theratliter@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    jasnell committed Dec 4, 2024
    Configuration menu
    Copy the full SHA
    c7de0ec View commit details
    Browse the repository at this point in the history
  6. net: add SocketAddress.parse

    Adds a new `net.SocketAddress.parse(...)` API.
    
    ```js
    const addr = SocketAddress.parse('123.123.123.123:1234');
    console.log(addr.address);  // 123.123.123.123
    console.log(addr.port); 1234
    ```
    
    PR-URL: #56076
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    jasnell committed Dec 4, 2024
    Configuration menu
    Copy the full SHA
    3c2da4b View commit details
    Browse the repository at this point in the history
  7. doc: add LJHarb to collaborators

    Fixes: #55918
    PR-URL: #56132
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Robert Nagy <ronagy@icloud.com>
    Reviewed-By: Debadree Chatterjee <debadree333@gmail.com>
    ljharb committed Dec 4, 2024
    Configuration menu
    Copy the full SHA
    c4aa34a View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2024

  1. test: ensure cli.md is in alphabetical order

    Co-authored-by: RedYetiDev <redyetidev@gmail.com>
    PR-URL: #56025
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    aduh95 and RedYetiDev committed Dec 5, 2024
    Configuration menu
    Copy the full SHA
    556f1ae View commit details
    Browse the repository at this point in the history
  2. deps: upgrade npm to 10.9.2

    PR-URL: #56135
    Reviewed-By: Luke Karrys <luke@lukekarrys.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    npm-cli-bot authored Dec 5, 2024
    Configuration menu
    Copy the full SHA
    839ad8b View commit details
    Browse the repository at this point in the history
  3. module: mark evaluation rejection in require(esm) as handled

    Previously the implemention of require(esm) only converted the
    rejected promise from module evaluation into an error, but the
    rejected promise was still treated as a pending unhandled
    rejection by the promise rejection callback, because the promise
    is created by V8 internals and we don't get a chance to mark
    it as handled, so the rejection incorrectly marked as unhandled
    would still go through unhandled rejection handling (if no
    global listener is set, the default handling would print a warning
    and make the Node.js instance exit with 1).
    
    This patch fixes it by calling into the JS promise rejection
    callback to mark the evalaution rejection handled so that
    it doesn't go through unhandled rejection handling.
    
    PR-URL: #56122
    Fixes: #56115
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    joyeecheung authored Dec 5, 2024
    Configuration menu
    Copy the full SHA
    d7fdbb9 View commit details
    Browse the repository at this point in the history
  4. lib: fix fs.readdir recursive async

    Fixes: #56006
    PR-URL: #56041
    Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    RafaelGSS authored Dec 5, 2024
    Configuration menu
    Copy the full SHA
    53356c3 View commit details
    Browse the repository at this point in the history
  5. tools: update create-release-proposal workflow

    PR-URL: #56054
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    aduh95 authored Dec 5, 2024
    Configuration menu
    Copy the full SHA
    60e9c6f View commit details
    Browse the repository at this point in the history
  6. doc: mention -a flag for the release script

    Document that running `./tools/release.sh` script using the recently
    added `-a` CLI flag enables the previously-default interactive interface
    to select the correct PGP key.
    
    PR-URL: #56124
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    ruyadorno authored Dec 5, 2024
    Configuration menu
    Copy the full SHA
    660d533 View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2024

  1. net: support blocklist in net.connect

    PR-URL: #56075
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    theanarkh authored Dec 6, 2024
    Configuration menu
    Copy the full SHA
    f26a1da View commit details
    Browse the repository at this point in the history
  2. test: remove test-fs-utimes flaky designation

    The issue is likely the same as other tests that time out.
    
    Refs: #54918
    Refs: #54844
    Refs: #54802
    PR-URL: #56052
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    lpinca authored Dec 6, 2024
    Configuration menu
    Copy the full SHA
    7904bc0 View commit details
    Browse the repository at this point in the history
  3. lib: add validation for options in compileFunction

    PR-URL: #56023
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    kimtaejin3 authored Dec 6, 2024
    Configuration menu
    Copy the full SHA
    56c8360 View commit details
    Browse the repository at this point in the history
  4. deps: update ngtcp2 to 1.9.1

    PR-URL: #56095
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    nodejs-github-bot authored Dec 6, 2024
    Configuration menu
    Copy the full SHA
    9cd9f43 View commit details
    Browse the repository at this point in the history
  5. src,build: add no user defined deduction guides of CTAD check

    PR-URL: #56071
    Refs: https://google.github.io/styleguide/cppguide.html#CTAD
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    legendecas authored Dec 6, 2024
    Configuration menu
    Copy the full SHA
    4211ab5 View commit details
    Browse the repository at this point in the history
  6. doc: add report version and history section

    PR-URL: #56130
    Refs: #56068
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    legendecas authored Dec 6, 2024
    Configuration menu
    Copy the full SHA
    eb5aa5f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7e57f72 View commit details
    Browse the repository at this point in the history
Loading