- Nov 15, 2021
-
-
Lu Yahan authored
-
Rich Trott authored
PR-URL: https://github.com/nodejs/node/pull/40798 Reviewed-By:
Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By:
Tobias Nießen <tniessen@tnie.de> Reviewed-By:
James M Snell <jasnell@gmail.com> Reviewed-By:
Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By:
Luigi Pinca <luigipinca@gmail.com>
-
Michael Dawson authored
Generalize guidance so that it is not specific to modules. Signed-off-by:
Michael Dawson <mdawson@devrus.com> PR-URL: https://github.com/nodejs/node/pull/40601 Reviewed-By:
Robert Nagy <ronagy@icloud.com> Reviewed-By:
Tobias Nießen <tniessen@tnie.de> Reviewed-By:
Rich Trott <rtrott@gmail.com> Reviewed-By:
Matteo Collina <matteo.collina@gmail.com> Reviewed-By:
James M Snell <jasnell@gmail.com>
-
- Nov 14, 2021
-
-
Robert Nagy authored
Refs: https://github.com/nodejs/node/issues/39535 PR-URL: https://github.com/nodejs/node/pull/40772 Reviewed-By:
Matteo Collina <matteo.collina@gmail.com> Reviewed-By:
Luigi Pinca <luigipinca@gmail.com> Reviewed-By:
James M Snell <jasnell@gmail.com>
-
Keeley Hammond authored
PR-URL: https://github.com/nodejs/node/pull/40768 Reviewed-By:
Richard Lau <rlau@redhat.com> Reviewed-By:
Rich Trott <rtrott@gmail.com> Reviewed-By:
Colin Ihrig <cjihrig@gmail.com> Reviewed-By:
Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By:
Tobias Nießen <tniessen@tnie.de> Reviewed-By:
Luigi Pinca <luigipinca@gmail.com> Reviewed-By:
Anna Henningsen <anna@addaleax.net> Reviewed-By:
James M Snell <jasnell@gmail.com>
-
- Nov 13, 2021
-
-
Stephen Belanger authored
PR-URL: https://github.com/nodejs/node/pull/40782 Reviewed-By:
Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By:
Andrey Pechkurov <apechkurov@gmail.com> Reviewed-By:
Minwoo Jung <nodecorelab@gmail.com>
-
Robert Nagy authored
PR-URL: https://github.com/nodejs/node/pull/40696 Reviewed-By:
Matteo Collina <matteo.collina@gmail.com> Reviewed-By:
Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By:
James M Snell <jasnell@gmail.com>
-
Darshan Sen authored
Signed-off-by:
Darshan Sen <darshan.sen@postman.com> PR-URL: https://github.com/nodejs/node/pull/40752 Reviewed-By:
Anna Henningsen <anna@addaleax.net> Reviewed-By:
Tobias Nießen <tniessen@tnie.de> Reviewed-By:
Minwoo Jung <nodecorelab@gmail.com>
-
Antoine du Hamel authored
PR-URL: https://github.com/nodejs/node/pull/40740 Reviewed-By:
Michaël Zasso <targos@protonmail.com> Reviewed-By:
Luigi Pinca <luigipinca@gmail.com>
-
Yoshiki authored
PR-URL: https://github.com/nodejs/node/pull/40792 Reviewed-By:
Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By:
Qingyu Deng <i@ayase-lab.com> Reviewed-By:
Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By:
Tobias Nießen <tniessen@tnie.de> Reviewed-By:
Colin Ihrig <cjihrig@gmail.com> Reviewed-By:
Luigi Pinca <luigipinca@gmail.com>
-
Rafael Gonzaga authored
docs: add asyncWrapProviders api doc tests(async_hooks): use internalBinding for comparisson fix(test-async-wrap): lint error docs: use REPLACEME for asyncWrapProviders update: use freeze and copy for asyncWrapProviders update(async_hooks): use primordials on asyncWrapProviders fix: use common to expect error docs(asyncWrapProviders): rephrase return type fix: lint md fix: lint md docs(async_hooks): typo Co-authored-by:
Stephen Belanger <admin@stephenbelanger.com> update(asyncWrapProviders): add __proto__ as null Co-authored-by:
Simone Busoli <simone.busoli@gmail.com> Co-authored-by:
Michaël Zasso <targos@protonmail.com> test: adjust __proto__ assertion docs: add DEP0111 link PR-URL: https://github.com/nodejs/node/pull/40760 Reviewed-By:
Matteo Collina <matteo.collina@gmail.com> Reviewed-By:
Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By:
Stephen Belanger <admin@stephenbelanger.com>
-
Darshan Sen authored
By the design of `GetSSLError()`, the V8 API was unnecessarily being accessed in places where it eventually didn't get used. So this refactor inlines the function appropriately in places where it was being used. Also, this replaces uses of `AllocatedBuffers` with `BackingStore`s. Signed-off-by:
Darshan Sen <darshan.sen@postman.com> PR-URL: https://github.com/nodejs/node/pull/40675 Reviewed-By:
Anna Henningsen <anna@addaleax.net>
-
Darshan Sen authored
I noticed that we were taking `TimerCb` as a `const&` and then copying that into the member. This is completely fine when the constructor is called with an lvalue. However, when called with an rvalue, we can allow the `std::function` to be moved into the member instead of falling back to a copy, so I changed the constructors to take in universal references. Also, `std::function` constructors can take in multiple arguments, so I further modified the constructors to use variadic templates. Signed-off-by:
Darshan Sen <darshan.sen@postman.com> PR-URL: https://github.com/nodejs/node/pull/40665 Reviewed-By:
Anna Henningsen <anna@addaleax.net> Reviewed-By:
Minwoo Jung <nodecorelab@gmail.com> Reviewed-By:
Antoine du Hamel <duhamelantoine1995@gmail.com>
-
Omar El-Mihilmy authored
When the file read position is moved passing zero is not respected and `null` is used instead. PR fixes the issues by using nullish coalescing which will return the rhs only when the lhs is `null` or `undefined`; respecting the zero. Fixes: https://github.com/nodejs/node/issues/40715 PR-URL: https://github.com/nodejs/node/pull/40716 Fixes: https://github.com/nodejs/node/issues/40699 Reviewed-By:
Robert Nagy <ronagy@icloud.com> Reviewed-By:
Luigi Pinca <luigipinca@gmail.com> Reviewed-By:
Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By:
Tobias Nießen <tniessen@tnie.de> Reviewed-By:
Evan Lucas <evanlucas@me.com>
-
Michael Dawson authored
Add missing initialization reported by coverity scan. Signed-off-by:
Michael Dawson <mdawson@devrus.com> PR-URL: https://github.com/nodejs/node/pull/40555 Reviewed-By:
Anna Henningsen <anna@addaleax.net> Reviewed-By:
Tobias Nießen <tniessen@tnie.de>
-
- Nov 12, 2021
-
-
Evan Lucas authored
There was a missing callback in the Transform#flush example implementation. PR-URL: https://github.com/nodejs/node/pull/40777 Reviewed-By:
Robert Nagy <ronagy@icloud.com> Reviewed-By:
Luigi Pinca <luigipinca@gmail.com> Reviewed-By:
Rich Trott <rtrott@gmail.com>
-
Martin Jansa authored
* add missing semicolon to fix: In file included from ../src/node_crypto.h:47, from ../src/node.cc:46: ../src/crypto/crypto_scrypt.h:80:2: error: expected ';' after struct definition 80 | } | ^ | ; and fix typo in the comment Signed-off-by:Martin Jansa <martin.jansa@lge.com> PR-URL: https://github.com/nodejs/node/pull/40613 Reviewed-By:
Tobias Nießen <tniessen@tnie.de> Reviewed-By:
Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By:
Anna Henningsen <anna@addaleax.net>
-
- Nov 11, 2021
-
-
npm team authored
PR-URL: https://github.com/nodejs/node/pull/40726 Reviewed-By:
Myles Borins <myles.borins@gmail.com> Reviewed-By:
Luigi Pinca <luigipinca@gmail.com> Reviewed-By:
Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By:
Colin Ihrig <cjihrig@gmail.com> Reviewed-By:
Tobias Nießen <tniessen@tnie.de> Reviewed-By:
Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By:
Rich Trott <rtrott@gmail.com>
-
Rich Trott authored
Split the test into seven tests so that it doesn't time out. Fixes: https://github.com/nodejs/node/issues/40694 Fixes: https://github.com/nodejs/node/issues/38088 PR-URL: https://github.com/nodejs/node/pull/40763 Reviewed-By:
Michaël Zasso <targos@protonmail.com> Reviewed-By:
Myles Borins <myles.borins@gmail.com> Reviewed-By:
Bradley Farias <bradley.meck@gmail.com>
-
voltrexmaster authored
The markdown-linter (lint-md) is failing because of a missing newline caused by 79d68150. PR-URL: https://github.com/nodejs/node/pull/40780 Reviewed-By:
Rich Trott <rtrott@gmail.com> Reviewed-By:
Richard Lau <rlau@redhat.com>
-
- Nov 10, 2021
-
-
3nprob authored
PR-URL: https://github.com/nodejs/node/pull/39809 Reviewed-By:
Anna Henningsen <anna@addaleax.net> Reviewed-By:
Tobias Nießen <tniessen@tnie.de> Reviewed-By:
Filip Skokan <panva.ip@gmail.com> Reviewed-By:
James M Snell <jasnell@gmail.com>
-
Tobias Nießen authored
PR-URL: https://github.com/nodejs/node/pull/40701 Reviewed-By:
Luigi Pinca <luigipinca@gmail.com> Reviewed-By:
Anna Henningsen <anna@addaleax.net> Reviewed-By:
Minwoo Jung <nodecorelab@gmail.com>
-
Subhi Al Hasan authored
PR-URL: https://github.com/nodejs/node/pull/40572 Reviewed-By:
Matteo Collina <matteo.collina@gmail.com> Reviewed-By:
Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By:
Luigi Pinca <luigipinca@gmail.com> Reviewed-By:
James M Snell <jasnell@gmail.com> Reviewed-By:
Minwoo Jung <nodecorelab@gmail.com> Reviewed-By:
Ricky Zhou <0x19951125@gmail.com>
-
Michaël Zasso authored
Notable changes: doc: * add VoltrexMaster to collaborators (voltrexmaster) https://github.com/nodejs/node/pull/40566 esm: * (SEMVER-MINOR) add support for JSON import assertion (Antoine du Hamel) https://github.com/nodejs/node/pull/40250 lib: * (SEMVER-MINOR) add unsubscribe method to non-active DC channels (simon-id) https://github.com/nodejs/node/pull/40433 * (SEMVER-MINOR) add return value for DC channel.unsubscribe (simon-id) https://github.com/nodejs/node/pull/40433 v8: * (SEMVER-MINOR) multi-tenant promise hook api (Stephen Belanger) https://github.com/nodejs/node/pull/39283 PR-URL: https://github.com/nodejs/node/pull/40758
-
Steven authored
PR-URL: https://github.com/nodejs/node/pull/40762 Reviewed-By:
Tobias Nießen <tniessen@tnie.de> Reviewed-By:
Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By:
Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By:
Luigi Pinca <luigipinca@gmail.com>
-
Michaël Zasso authored
Do not ask to separate the changes in deps/icu-small and in the LICENSE file. Do not ask to remove the whitespace changes. The way commits are landed now doesn't eliminate them anymore. PR-URL: https://github.com/nodejs/node/pull/40658 Reviewed-By:
Richard Lau <rlau@redhat.com> Reviewed-By:
Tobias Nießen <tniessen@tnie.de>
-
Michaël Zasso authored
Refs: https://github.com/unicode-org/icu/releases/tag/release-70-1 PR-URL: https://github.com/nodejs/node/pull/40658 Reviewed-By:
Richard Lau <rlau@redhat.com> Reviewed-By:
Tobias Nießen <tniessen@tnie.de>
-
- Nov 09, 2021
-
-
Tobias Nießen authored
Refs: https://github.com/nodejs/node/issues/40272 Refs: https://github.com/nodejs/node/pull/20235 PR-URL: https://github.com/nodejs/node/pull/40713 Reviewed-By:
Rich Trott <rtrott@gmail.com> Reviewed-By:
Filip Skokan <panva.ip@gmail.com> Reviewed-By:
Luigi Pinca <luigipinca@gmail.com>
-
Michael Dawson authored
- Since we now just reference the nodejs blog post in the post to the nodejs-sec mailing list, change the order so the blog post comes first Signed-off-by:
Michael Dawson <mdawson@devrus.com> PR-URL: https://github.com/nodejs/node/pull/40725 Reviewed-By:
Richard Lau <rlau@redhat.com> Reviewed-By:
Tobias Nießen <tniessen@tnie.de> Reviewed-By:
Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By:
Colin Ihrig <cjihrig@gmail.com>
-
Node.js GitHub Bot authored
PR-URL: https://github.com/nodejs/node/pull/40748 Reviewed-By:
Luigi Pinca <luigipinca@gmail.com> Reviewed-By:
Michaël Zasso <targos@protonmail.com>
-
Michael Dawson authored
Co-authored-by:
Jean Burellier <sheplu@users.noreply.github.com> Signed-off-by:
Michael Dawson <mdawson@devrus.com> PR-URL: https://github.com/nodejs/node/pull/40235 Reviewed-By:
James M Snell <jasnell@gmail.com> Reviewed-By:
Matteo Collina <matteo.collina@gmail.com> Reviewed-By:
Tobias Nießen <tniessen@tnie.de> Reviewed-By:
Colin Ihrig <cjihrig@gmail.com> Reviewed-By:
Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By:
Voltrex <mohammadkeyvanzade94@gmail.com>
-
Rich Trott authored
PR-URL: https://github.com/nodejs/node/pull/40720 Reviewed-By:
Tobias Nießen <tniessen@tnie.de> Reviewed-By:
Michaël Zasso <targos@protonmail.com> Reviewed-By:
Luigi Pinca <luigipinca@gmail.com>
-
Rich Trott authored
Add missing semicolons that will be flagged when we update @babel/eslint-parser to 7.16.0. PR-URL: https://github.com/nodejs/node/pull/40720 Reviewed-By:
Tobias Nießen <tniessen@tnie.de> Reviewed-By:
Michaël Zasso <targos@protonmail.com> Reviewed-By:
Luigi Pinca <luigipinca@gmail.com>
-
Rich Trott authored
The --production flag has no effect in this situation. Remove it. Add --ignore-scripts as a precaution. PR-URL: https://github.com/nodejs/node/pull/40644 Reviewed-By:
Antoine du Hamel <duhamelantoine1995@gmail.com>
-
Rich Trott authored
Update ESLint, Babel, remark, and so on. Run once a week. PR-URL: https://github.com/nodejs/node/pull/40644 Reviewed-By:
Antoine du Hamel <duhamelantoine1995@gmail.com>
-
- Nov 08, 2021
-
-
Michaël Zasso authored
Refs: https://github.com/v8/v8/compare/9.5.172.21...9.5.172.25 PR-URL: https://github.com/nodejs/node/pull/40604 Reviewed-By:
Jiawen Geng <technicalcute@gmail.com> Reviewed-By:
Antoine du Hamel <duhamelantoine1995@gmail.com>
-
Michaël Zasso authored
PR-URL: https://github.com/nodejs/node/pull/40737 Reviewed-By:
Luigi Pinca <luigipinca@gmail.com> Reviewed-By:
Tobias Nießen <tniessen@tnie.de> Reviewed-By:
Richard Lau <rlau@redhat.com>
-
Antoine du Hamel authored
Fixes: https://github.com/nodejs/node/issues/40738 PR-URL: https://github.com/nodejs/node/pull/40739 Reviewed-By:
Michaël Zasso <targos@protonmail.com> Reviewed-By:
Luigi Pinca <luigipinca@gmail.com>
-
Michaël Zasso authored
Refs: https://github.com/nodejs/node/issues/40605 PR-URL: https://github.com/nodejs/node/pull/40607 Reviewed-By:
Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By:
Anna Henningsen <anna@addaleax.net>
-
Michaël Zasso authored
Fixes: https://github.com/nodejs/node/issues/40605 PR-URL: https://github.com/nodejs/node/pull/40607 Reviewed-By:
Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By:
Anna Henningsen <anna@addaleax.net>
-