-
Notifications
You must be signed in to change notification settings - Fork 30k
Comparing changes
Open a pull request
base repository: nodejs/node
base: 5da6c4e86f45d32ae5537dc0b0973afd1c155f8e
head repository: nodejs/node
compare: 7e57f728e046fb91534dcf22072b0ba02214b483
- 20 commits
- 485 files changed
- 15 contributors
Commits on Dec 4, 2024
-
PR-URL: #56125 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
Configuration menu - View commit details
-
Copy full SHA for 7bedcfd - Browse repository at this point
Copy the full SHA 7bedcfdView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 4e44322 - Browse repository at this point
Copy the full SHA 4e44322View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 398c941 - Browse repository at this point
Copy the full SHA 398c941View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 09d5be0 - Browse repository at this point
Copy the full SHA 09d5be0View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for c7de0ec - Browse repository at this point
Copy the full SHA c7de0ecView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 3c2da4b - Browse repository at this point
Copy the full SHA 3c2da4bView commit details -
Configuration menu - View commit details
-
Copy full SHA for c4aa34a - Browse repository at this point
Copy the full SHA c4aa34aView commit details
Commits on Dec 5, 2024
-
test: ensure
cli.md
is in alphabetical orderCo-authored-by: RedYetiDev <redyetidev@gmail.com> PR-URL: #56025 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 556f1ae - Browse repository at this point
Copy the full SHA 556f1aeView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 839ad8b - Browse repository at this point
Copy the full SHA 839ad8bView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for d7fdbb9 - Browse repository at this point
Copy the full SHA d7fdbb9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 53356c3 - Browse repository at this point
Copy the full SHA 53356c3View commit details -
tools: update
create-release-proposal
workflowPR-URL: #56054 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Configuration menu - View commit details
-
Copy full SHA for 60e9c6f - Browse repository at this point
Copy the full SHA 60e9c6fView commit details -
doc: mention
-a
flag for the release scriptDocument 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>
Configuration menu - View commit details
-
Copy full SHA for 660d533 - Browse repository at this point
Copy the full SHA 660d533View commit details
Commits on Dec 6, 2024
-
net: support blocklist in net.connect
PR-URL: #56075 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for f26a1da - Browse repository at this point
Copy the full SHA f26a1daView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7904bc0 - Browse repository at this point
Copy the full SHA 7904bc0View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 56c8360 - Browse repository at this point
Copy the full SHA 56c8360View commit details -
PR-URL: #56095 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 9cd9f43 - Browse repository at this point
Copy the full SHA 9cd9f43View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 4211ab5 - Browse repository at this point
Copy the full SHA 4211ab5View commit details -
Configuration menu - View commit details
-
Copy full SHA for eb5aa5f - Browse repository at this point
Copy the full SHA eb5aa5fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7e57f72 - Browse repository at this point
Copy the full SHA 7e57f72View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 5da6c4e86f45d32ae5537dc0b0973afd1c155f8e...7e57f728e046fb91534dcf22072b0ba02214b483