-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
v17.1.0 release proposal #40758
v17.1.0 release proposal #40758
Commits on Oct 23, 2021
-
Configuration menu - View commit details
-
Copy full SHA for a11f9ea - Browse repository at this point
Copy the full SHA a11f9eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for accab38 - Browse repository at this point
Copy the full SHA accab38View commit details -
meta: consolidate AUTHORS entries for cxreg
PR-URL: #40490 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for e4c7406 - Browse repository at this point
Copy the full SHA e4c7406View commit details -
lib: add return value for DC channel.unsubscribe
PR-URL: #40433 Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Bryan English <bryan@bryanenglish.com> Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for aa61551 - Browse repository at this point
Copy the full SHA aa61551View commit details -
lib: add unsubscribe method to non-active DC channels
PR-URL: #40433 Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Bryan English <bryan@bryanenglish.com> Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 1ddbae2 - Browse repository at this point
Copy the full SHA 1ddbae2View commit details -
The request uses chunked transfer encoding and the HTTP response status code is not 400 but 200. PR-URL: #40486 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for aefb097 - Browse repository at this point
Copy the full SHA aefb097View commit details -
meta: consolidate AUTHORS entries for dguo
PR-URL: #40517 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 6a771f8 - Browse repository at this point
Copy the full SHA 6a771f8View commit details -
meta: add Richard Lau to TSC list in README.md
Refs: nodejs/TSC#1096 PR-URL: #40523 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7cee125 - Browse repository at this point
Copy the full SHA 7cee125View commit details -
doc: add updating expected assets to release guide
Add a section to the Major Releases section of the release guide to cover updating the list of expected files for the promotion tool. PR-URL: #40470 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Beth Griggs <bgriggs@redhat.com>
Configuration menu - View commit details
-
Copy full SHA for 5a588ff - Browse repository at this point
Copy the full SHA 5a588ffView commit details -
src,fs: remove
ToLocalChecked()
call fromfs::AfterMkdirp()
This merges the `IsEmpty()` call and the `ToLocalChecked()` call into a single `ToLocal()` call. Signed-off-by: Darshan Sen <darshan.sen@postman.com> PR-URL: #40386 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Configuration menu - View commit details
-
Copy full SHA for 814126c - Browse repository at this point
Copy the full SHA 814126cView commit details -
src,crypto: remove
AllocatedBuffer
fromcrypto_cipher.cc
Signed-off-by: Darshan Sen <darshan.sen@postman.com> PR-URL: #40400 Reviewed-By: Anna Henningsen <anna@addaleax.net>
Configuration menu - View commit details
-
Copy full SHA for 4433852 - Browse repository at this point
Copy the full SHA 4433852View commit details -
typings: separate
internalBinding
typingsPR-URL: #40409 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Zijian Liu <lxxyxzj@gmail.com> Reviewed-By: Qingyu Deng <i@ayase-lab.com>
Configuration menu - View commit details
-
Copy full SHA for 1e9f3cc - Browse repository at this point
Copy the full SHA 1e9f3ccView commit details -
src,stream: remove
*Check*()
calls from non-Initialize()
functionsThere is no need to crash the process if any of these checks fail. Signed-off-by: Darshan Sen <darshan.sen@postman.com> PR-URL: #40425 Reviewed-By: Anna Henningsen <anna@addaleax.net>
Configuration menu - View commit details
-
Copy full SHA for d4b45cc - Browse repository at this point
Copy the full SHA d4b45ccView commit details -
doc: clarify behavior of napi_extended_error_info
Fix up example and make it more explicit on how you need to use napi_extended_error_info in order to help people avoid what might be a common mistake that we made in node-addon-api. Refs: nodejs/node-addon-api#1089 Signed-off-by: Michael Dawson <mdawson@devrus.com> PR-URL: #40458 Reviewed-By: Gabriel Schulhof <gabrielschulhof@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 34e244b - Browse repository at this point
Copy the full SHA 34e244bView commit details -
deps,build,tools: fix openssl-is-fips for ninja builds
Currently using the --openssl-is-fips configuration option in combination with --ninja is broken. This commit fixes two issues, one being an issue with the linker/version script path variable. The second is that the locations of built artifacts that differ for ninja and make. ninja: $ ./configure --openssl-is-fips --ninja $ ninja -C out/Release $ ./node --enable-fips -p 'crypto.getFips()' 1 make: $ ./configure --openssl-is-fips $ make -j8 $ ./node --enable-fips -p 'crypto.getFips()' 1 PR-URL: #40518 Refs: #40509 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Beth Griggs <bgriggs@redhat.com>
Configuration menu - View commit details
-
Copy full SHA for 5df8ce5 - Browse repository at this point
Copy the full SHA 5df8ce5View commit details -
Configuration menu - View commit details
-
Copy full SHA for d2839bf - Browse repository at this point
Copy the full SHA d2839bfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b9fcdf - Browse repository at this point
Copy the full SHA 2b9fcdfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 81cd7f3 - Browse repository at this point
Copy the full SHA 81cd7f3View commit details -
meta: move one or more collaborators to emeritus
PR-URL: #40464 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Danielle Adams <adamzdanielle@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Beth Griggs <bgriggs@redhat.com> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Yihong Wang <yh.wang@ibm.com>
Configuration menu - View commit details
-
Copy full SHA for bd06e99 - Browse repository at this point
Copy the full SHA bd06e99View commit details -
doc: update link in onboarding doc
PR-URL: #40539 Reviewed-By: Benjamin Gruenbaum <benjamingr@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: Luigi Pinca <luigipinca@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for ed04827 - Browse repository at this point
Copy the full SHA ed04827View commit details -
deps: add riscv64 config into openssl gypi
PR-URL: #40473 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
Configuration menu - View commit details
-
Copy full SHA for cdf5c44 - Browse repository at this point
Copy the full SHA cdf5c44View commit details -
src,crypto: use
std::variant
in DH paramsSigned-off-by: Darshan Sen <darshan.sen@postman.com> PR-URL: #40457 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Configuration menu - View commit details
-
Copy full SHA for ef1ace7 - Browse repository at this point
Copy the full SHA ef1ace7View commit details -
doc: document considerations for inclusion in core
Document the things that are considered when making the determination as to whether something should or shouldn't be in core. This does not (yet, at least) attempt to address *how* to include modules in core. (Should it be in the Node.js code base or vendored in from a separate repository?) It is limited to *whether* something should be in core or not. Closes: nodejs/TSC#1041 PR-URL: #40338 Fixes: nodejs/TSC#1041 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 6357ef1 - Browse repository at this point
Copy the full SHA 6357ef1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 89b34ec - Browse repository at this point
Copy the full SHA 89b34ecView commit details -
meta: consolidate AUTHORS entries for dfabulich
PR-URL: #40527 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for ba9a6c5 - Browse repository at this point
Copy the full SHA ba9a6c5View commit details -
doc: fix entry for Slack channel in onboarding.md
PR-URL: #40563 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 4993d87 - Browse repository at this point
Copy the full SHA 4993d87View commit details -
PR-URL: #40520 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 0375d95 - Browse repository at this point
Copy the full SHA 0375d95View commit details -
doc: add missing entry in
globals.md
Refs: #39759 (comment) PR-URL: #40531 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for acc22c7 - Browse repository at this point
Copy the full SHA acc22c7View commit details -
doc: update for changed
--dns-result-order
defaultUpdate documentation to match the changed `--dns-result-order` default value in Node.js 17. Refs: #39987 PR-URL: #40538 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 404730a - Browse repository at this point
Copy the full SHA 404730aView commit details -
Configuration menu - View commit details
-
Copy full SHA for fd94621 - Browse repository at this point
Copy the full SHA fd94621View commit details -
doc: use GFM footnotes in BUILDING.md
PR-URL: #40474 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 9c6a9fd - Browse repository at this point
Copy the full SHA 9c6a9fdView commit details -
doc: use GFM footnotes in maintaining-V8.md (#40476)
PR-URL: #40476 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 556e49c - Browse repository at this point
Copy the full SHA 556e49cView commit details -
tools: update license-builder.sh for OpenSSL
PR-URL: #40540 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for c2265a9 - Browse repository at this point
Copy the full SHA c2265a9View commit details -
PR-URL: #40540 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 6e39e0e - Browse repository at this point
Copy the full SHA 6e39e0eView commit details -
deps: V8: cherry-pick 422dc378a1da
Original commit message: [deserialization] Remove unnecessarily limit on buffer size 1. Now there is no serializer/deserializer-specific buffer size limit. 2. Update AUTHORS Ref: #40059 Change-Id: Iad4c6d8f68a91ef21d3c404fb7945949e69ad9e2 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3170411 Reviewed-by: Jakob Kummerow <jkummerow@chromium.org> Reviewed-by: Clemens Backes <clemensb@chromium.org> Commit-Queue: Jakob Kummerow <jkummerow@chromium.org> Cr-Commit-Position: refs/heads/main@{#77084} Refs: v8/v8@422dc37 PR-URL: #40450 Fixes: #40059 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 8d16f0d - Browse repository at this point
Copy the full SHA 8d16f0dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 396342e - Browse repository at this point
Copy the full SHA 396342eView commit details -
1
Configuration menu - View commit details
-
Copy full SHA for 305c022 - Browse repository at this point
Copy the full SHA 305c022View commit details -
tty: support more CI services in
getColorDepth
PR-URL: #40385 Refs: sindresorhus/yoctocolors#5 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Configuration menu - View commit details
-
Copy full SHA for a95e344 - Browse repository at this point
Copy the full SHA a95e344View commit details -
build: disable v8 pointer compression on 32bit archs
PR-URL: #40418 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Stewart X Addison <sxa@redhat.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
Configuration menu - View commit details
-
Copy full SHA for 9f46fca - Browse repository at this point
Copy the full SHA 9f46fcaView commit details
Commits on Nov 6, 2021
-
tools: udpate doc tools to accommodate GFM footnotes
PR-URL: #40477 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 507f1db - Browse repository at this point
Copy the full SHA 507f1dbView commit details -
doc: use GFM footnotes in webcrypto.md
PR-URL: #40477 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 1587fe6 - Browse repository at this point
Copy the full SHA 1587fe6View commit details -
PR-URL: #40554 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
Configuration menu - View commit details
-
Copy full SHA for 841f35c - Browse repository at this point
Copy the full SHA 841f35cView commit details -
stream: remove no longer necessary ComposeDuplex
PR-URL: #40545 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for bac7fe0 - Browse repository at this point
Copy the full SHA bac7fe0View commit details -
PR-URL: #40580 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By: Nitzan Uziely <linkgoron@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 488ee51 - Browse repository at this point
Copy the full SHA 488ee51View commit details -
doc: improve async_context introduction
- Rename "Async_context" to "Asynchronous context tracking" in toc. - Use named imports to show how `AsyncLocalStorage` and `AsyncResource` can be imported. PR-URL: #40560 Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By: Zijian Liu <lxxyxzj@gmail.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
Configuration menu - View commit details
-
Copy full SHA for 6e3e50f - Browse repository at this point
Copy the full SHA 6e3e50fView commit details -
Configuration menu - View commit details
-
Copy full SHA for c1c1738 - Browse repository at this point
Copy the full SHA c1c1738View commit details -
doc: simplify ccache instructions
`ccache` has reasonable defaults for `max_size` and `cache_dir` so remove instructions to set those things explicitly. Change fenced code from `console` to `bash` for easier copy/paste. PR-URL: #40550 Fixes: #40542 Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5e2d0ed - Browse repository at this point
Copy the full SHA 5e2d0edView commit details -
meta: consolidate AUTHORS entries for darai0512
PR-URL: #40569 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Zijian Liu <lxxyxzj@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 08e7a2f - Browse repository at this point
Copy the full SHA 08e7a2fView commit details -
Make starting Jenkins CI optional. PR-URL: #40570 Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 132f6cb - Browse repository at this point
Copy the full SHA 132f6cbView commit details -
build: skip long-running Actions for README-only modifications
If the only file modified is README.md do not run test-linux or build-windows tasks. This will help streamline onboarding sessions but may help some other cases too. PR-URL: #40571 Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Zijian Liu <lxxyxzj@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 8a00dc5 - Browse repository at this point
Copy the full SHA 8a00dc5View commit details -
module: resolver & spec hardening /w refactoring
PR-URL: #40510 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 075cfbf - Browse repository at this point
Copy the full SHA 075cfbfView commit details -
policy: fix message for invalid manifest specifier
Add test for invalid manifest specifier and fix the error message which is missing a space ("singletrailing" instead of "single trailing"). PR-URL: #40574 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Zijian Liu <lxxyxzj@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Bradley Farias <bradley.meck@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for b320387 - Browse repository at this point
Copy the full SHA b320387View commit details -
Configuration menu - View commit details
-
Copy full SHA for 825a683 - Browse repository at this point
Copy the full SHA 825a683View commit details -
Configuration menu - View commit details
-
Copy full SHA for 79bf429 - Browse repository at this point
Copy the full SHA 79bf429View commit details -
Fix typo in v12.22.7, v14.18.1, and v16.11.1 changelogs. PR-URL: #40585 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7eb1a44 - Browse repository at this point
Copy the full SHA 7eb1a44View commit details -
meta: consolidate AUTHORS entries for clakech
PR-URL: #40589 Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By: Nitzan Uziely <linkgoron@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for ec02e7b - Browse repository at this point
Copy the full SHA ec02e7bView commit details -
meta: move Fishrock123 to emeritus
I've moved on. I do not wish to be responsible for anything here and have been inactive for more than a year. PR-URL: #40596 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@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: Nitzan Uziely <linkgoron@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for d81b65c - Browse repository at this point
Copy the full SHA d81b65cView commit details -
doc: add info on project's usage of coverity
Document project's used of coverity and how collaborators can get access. Signed-off-by: Michael Dawson <mdawson@devrus.com> PR-URL: #40506 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
Configuration menu - View commit details
-
Copy full SHA for 46ec5ac - Browse repository at this point
Copy the full SHA 46ec5acView commit details -
tools: fix formatting of warning message in update-authors.js
The email already has `<` and `>` surrounding it so adding it results in a misformatted message. PR-URL: #40600 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 9cb2116 - Browse repository at this point
Copy the full SHA 9cb2116View commit details -
PR-URL: #40582 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7169634 - Browse repository at this point
Copy the full SHA 7169634View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0923921 - Browse repository at this point
Copy the full SHA 0923921View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6ae134e - Browse repository at this point
Copy the full SHA 6ae134eView commit details -
Remove unnecessary `<sup>` usage and lint-disabling comment. PR-URL: #40475 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5951ccc - Browse repository at this point
Copy the full SHA 5951cccView commit details -
PR-URL: #40573 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 4870a23 - Browse repository at this point
Copy the full SHA 4870a23View commit details -
PR-URL: #40573 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 35dbed2 - Browse repository at this point
Copy the full SHA 35dbed2View commit details -
PR-URL: #40573 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 8f41022 - Browse repository at this point
Copy the full SHA 8f41022View commit details -
doc: ref OpenSSL legacy provider from crypto docs
This adds a link to the --openssl-legacy-provider flag to the "Support for weak or compromised algorithms" section. PR-URL: #40593 Refs: #40478 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Beth Griggs <bgriggs@redhat.com>
Configuration menu - View commit details
-
Copy full SHA for 71bac70 - Browse repository at this point
Copy the full SHA 71bac70View commit details -
doc: use 'GitHub Actions workflow' instead
PR-URL: #40586 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Configuration menu - View commit details
-
Copy full SHA for c78d708 - Browse repository at this point
Copy the full SHA c78d708View commit details -
typings: improve internal bindings typings
PR-URL: #40411 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 90aa96d - Browse repository at this point
Copy the full SHA 90aa96dView commit details -
meta: consolidate AUTHORS entries for Azard
PR-URL: #40619 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 88d8127 - Browse repository at this point
Copy the full SHA 88d8127View commit details -
meta: consolidate AUTHORS entries for alexzherdev
PR-URL: #40620 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 18296c3 - Browse repository at this point
Copy the full SHA 18296c3View commit details -
test: use conventional argument order in assertion
PR-URL: #40591 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for cf6ded4 - Browse repository at this point
Copy the full SHA cf6ded4View commit details -
src: fix #endif description in crypto_keygen.h
PR-URL: #40639 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7a22f91 - Browse repository at this point
Copy the full SHA 7a22f91View commit details -
doc: fix markdown syntax and HTML tag misses
PR-URL: #40608 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 65effa1 - Browse repository at this point
Copy the full SHA 65effa1View commit details -
doc: update tracking issues of startup performance
The issues listed in the doc have been closed, and a new one is currently being used to track snapshot integration. PR-URL: #40629 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for ac81f89 - Browse repository at this point
Copy the full SHA ac81f89View commit details -
meta: consolidate AUTHORS entries for brettkiefer
PR-URL: #40599 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for aa98c6b - Browse repository at this point
Copy the full SHA aa98c6bView commit details -
test: test
crypto.setEngine()
using an actual engineSigned-off-by: Darshan Sen <darshan.sen@postman.com> PR-URL: #40481 Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 179a5c5 - Browse repository at this point
Copy the full SHA 179a5c5View commit details -
src: remove usage of
AllocatedBuffer
fromnode_http2
Signed-off-by: Darshan Sen <darshan.sen@postman.com> PR-URL: #40584 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Configuration menu - View commit details
-
Copy full SHA for e9388c8 - Browse repository at this point
Copy the full SHA e9388c8View commit details -
tools: avoid fetch extra commits when validating commit messages
PR-URL: #39128 Reviewed-By: Mary Marchini <oss@mmarchini.me>
Configuration menu - View commit details
-
Copy full SHA for c700de3 - Browse repository at this point
Copy the full SHA c700de3View commit details -
typings: add JSDoc typings for inspector
Added JSDoc typings for the `inspector` lib module. PR-URL: #38390 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Adrian Estrada <edsadr@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for da859b5 - Browse repository at this point
Copy the full SHA da859b5View commit details -
doc: remove
--experimental-modules
documentationPR-URL: #38974 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jan Krems <jan.krems@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for c104f5a - Browse repository at this point
Copy the full SHA c104f5aView commit details -
typings: add more bindings typings
PR-URL: #40415 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for b4194ff - Browse repository at this point
Copy the full SHA b4194ffView commit details -
tools,meta: remove exclusions from AUTHORS
The update-authors tool omits Chromium team members. This was a decision made years ago. The idea was that these folks contributed to V8 not to Node.js, as they typically ended up in our code-base via cherry-picked commits from V8. Ref: #232 (diff) Now that there are over 3000 contributors identified in AUTHORS, some of whom are bots that we run, I think it's time to undo this exception. If we used someone else's code in a cherry-pick, congratulations to them, they're authors. In particular, this will fix the omission of Yang Guo who contributed extensively to Node.js outside of V8 contributions. PR-URL: #40648 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 16624b4 - Browse repository at this point
Copy the full SHA 16624b4View commit details -
doc: final round of markdown format changes
Once the README and find-inactive-collaborators.mjs changes land here, we can introduce markdown formatting as a step in the toolchain somewhere. Before this lands, nodejs/node-core-utils#578 will need to land and be included in a node-core-utils release. PR-URL: #40645 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 95a7117 - Browse repository at this point
Copy the full SHA 95a7117View commit details -
tools: avoid unnecessary escaping in markdown formatter
Update mdast-util-to-markdown to 1.2.4 which reduces unnecessary escaping of `_` and some other characters. Re-run markdown formatter. PR-URL: #40645 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 47eddd7 - Browse repository at this point
Copy the full SHA 47eddd7View commit details -
test: fix test-datetime-change-notify after daylight change
Add standard timezone name for Dublin without daylight saving PR-URL: #40684 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 8fa1c61 - Browse repository at this point
Copy the full SHA 8fa1c61View commit details -
test,tools: increase timeout for benchmark tests
test-benchmark-buffer is consistently timing out on a single Windows host in CI. Rather than try to figure out if we need to scale the timeout up for a certain memory limit or chip speed or something else, let's increase the timeout for benchmark tests in general. PR-URL: #40684 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for f731f5f - Browse repository at this point
Copy the full SHA f731f5fView commit details -
test,tools: increase pummel/benchmark test timeout from 4x to 6x
The win10-COMPILED_BY-vs2019 hosts in CI are very slow and timing out on certain tests in pummel and (previously) benchmark. Increase timeout from 4x to 6x. PR-URL: #40684 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 1844463 - Browse repository at this point
Copy the full SHA 1844463View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5020f63 - Browse repository at this point
Copy the full SHA 5020f63View commit details -
v8: multi-tenant promise hook api
PR-URL: #39283 Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for fbeb895 - Browse repository at this point
Copy the full SHA fbeb895View commit details -
tools: fix commit-lint workflow
PR-URL: #40673 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for ddc44dd - Browse repository at this point
Copy the full SHA ddc44ddView commit details -
tools: abort CQ session when landing several commits
Most PRs are meant to be squashed in one commit when landing. If the collaborator hasn't been using `fixup!` commits, the CQ lands the PR as several commits. This change makes the CQ abort by default when attempting to land several commits, unless there's another label added to the PR to force squashing or landing as several commits. Fixes: #40436 Refs: nodejs/node-core-utils#572 PR-URL: #40577 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 0787c78 - Browse repository at this point
Copy the full SHA 0787c78View commit details -
test,doc: correct documentation for runBenchmark()
The function only takes two arguments. PR-URL: #40683 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 126e669 - Browse repository at this point
Copy the full SHA 126e669View commit details -
PR-URL: #40668 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for c2fabdb - Browse repository at this point
Copy the full SHA c2fabdbView commit details -
doc: format v8.md in preparation for stricter linting
PR-URL: #40647 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for ecccf48 - Browse repository at this point
Copy the full SHA ecccf48View commit details -
tools: notify user if format-md needs to be run
This will help enforce formatting of markdown files. PR-URL: #40647 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5daa313 - Browse repository at this point
Copy the full SHA 5daa313View commit details -
doc: fix lint re-enabling comment in README.md
If there is not a blank line before it, the comment does not re-enable the rule. PR-URL: #40647 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for e374f3d - Browse repository at this point
Copy the full SHA e374f3dView commit details -
tools: add script to update c-ares
Add a script to automate updating of the c-ares dependency and accompanying maintenance guide. PR-URL: #40660 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for ec2cade - Browse repository at this point
Copy the full SHA ec2cadeView commit details -
Updated as described in doc/guides/maintaining-c-ares.md. PR-URL: #40660 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for c003ba1 - Browse repository at this point
Copy the full SHA c003ba1View commit details -
PR-URL: #40643 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 3805b80 - Browse repository at this point
Copy the full SHA 3805b80View commit details -
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 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>
Configuration menu - View commit details
-
Copy full SHA for dfd0215 - Browse repository at this point
Copy the full SHA dfd0215View commit details -
doc: update cjs-module-lexer repo link
PR-URL: #40707 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Jan Krems <jan.krems@gmail.com> Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Configuration menu - View commit details
-
Copy full SHA for c29658f - Browse repository at this point
Copy the full SHA c29658fView commit details -
esm: add support for JSON import assertion
Remove V8 flag for import assertions, enabling support for the syntax; require the import assertion syntax for imports of JSON. Support import assertions in user loaders. Use both resolved module URL and import assertion type as the key for caching modules. Co-authored-by: Geoffrey Booth <webadmin@geoffreybooth.com> PR-URL: #40250 Reviewed-By: Bradley Farias <bradley.meck@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Configuration menu - View commit details
-
Copy full SHA for 95e4d29 - Browse repository at this point
Copy the full SHA 95e4d29View commit details -
Configuration menu - View commit details
-
Copy full SHA for 50d102e - Browse repository at this point
Copy the full SHA 50d102eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 95fe9bb - Browse repository at this point
Copy the full SHA 95fe9bbView commit details -
test: add semicolon after chunk size
The ABNF for chunk extensions as per RFC 7230 is chunk-ext = *( ";" chunk-ext-name [ "=" chunk-ext-val ] ) chunk-ext-name = token chunk-ext-val = token / quoted-string Add a semicolon after the chunk size for clarity. This does not invalidate the test as it verifies that the HTTP parser does not ignore chunk extensions. PR-URL: #40487 Refs: https://grenfeldt.dev/2021/10/08/gunicorn-20.1.0-public-disclosure-of-request-smuggling Reviewed-By: James M Snell <jasnell@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for ac3bc6e - Browse repository at this point
Copy the full SHA ac3bc6eView commit details -
tools: use GitHub Squash and Merge feature when using CQ
PR-URL: #40666 Refs: https://docs.github.com/en/rest/reference/pulls#merge-a-pull-request Reviewed-By: Mary Marchini <oss@mmarchini.me> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for b7e7368 - Browse repository at this point
Copy the full SHA b7e7368View commit details
Commits on Nov 8, 2021
-
PR-URL: #40734 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 306d953 - Browse repository at this point
Copy the full SHA 306d953View commit details -
• Removed unreachable code of the `evalModule()` function as an early error is thrown when the `print` parameter is a truthy value. • Make use of the nullish coalescing operator. PR-URL: #40664 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for ea968d5 - Browse repository at this point
Copy the full SHA ea968d5View commit details -
tools: ensure the PR was not pushed before merging
When using Squash and Merge feature, it would allow to a malicious actor to push unreviewed code to their PR while the CQ is running and bypass the usual checks. This commit adds a check to refuse to land if the head of the PR branch is different from the one validated by ncu. PR-URL: #40747 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for a3df50d - Browse repository at this point
Copy the full SHA a3df50dView commit details -
tools: simplify and fix commit queue
Use `gh` CLI for CI and commit queue jobs, and use the correct token to merge PRs. PR-URL: #40742 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for bbc10f1 - Browse repository at this point
Copy the full SHA bbc10f1View commit details -
src: make LoadEnvironment with string work with builtin modules path
Configuration menu - View commit details
-
Copy full SHA for fb7c437 - Browse repository at this point
Copy the full SHA fb7c437View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8c103ab - Browse repository at this point
Copy the full SHA 8c103abView commit details -
Configuration menu - View commit details
-
Copy full SHA for e58cce4 - Browse repository at this point
Copy the full SHA e58cce4View commit details -
meta: use form schema for flaky test template
PR-URL: #40737 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Richard Lau <rlau@redhat.com>
Configuration menu - View commit details
-
Copy full SHA for d97872d - Browse repository at this point
Copy the full SHA d97872dView commit details -
Refs: v8/v8@9.5.172.21...9.5.172.25 PR-URL: #40604 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5bef743 - Browse repository at this point
Copy the full SHA 5bef743View commit details -
2021-11-09, Version 17.1.0 (Current)
Notable changes: doc: * add VoltrexMaster to collaborators (voltrexmaster) #40566 esm: * (SEMVER-MINOR) add support for JSON import assertion (Antoine du Hamel) #40250 lib: * (SEMVER-MINOR) add unsubscribe method to non-active DC channels (simon-id) #40433 * (SEMVER-MINOR) add return value for DC channel.unsubscribe (simon-id) #40433 v8: * (SEMVER-MINOR) multi-tenant promise hook api (Stephen Belanger) #39283 PR-URL: #40758
Configuration menu - View commit details
-
Copy full SHA for 2b1744b - Browse repository at this point
Copy the full SHA 2b1744bView commit details