-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
v7.3.0 proposal #10277
Merged
Merged
v7.3.0 proposal #10277
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The node -> out/*/node symlink is getting recreated in parallel with other targets in the makefile which require it (e.g. test-ci) and this seems to be causing a race condition which is showing up on AIX Fixes: #9825 PR-URL: #9827 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-by: Michael Dawson <michael_dawson@ca.ibm.com>
Currently when running make node_g the following error is displayed: if [ ! -r node -o ! -L ]; then ln -fs out/Debug/node node_g; fi /bin/sh: line 0: [: argument expected It looks like there was a typo for the NODE_EXE where node became lowercase instead of uppercase. Ref: #9827 PR-URL: #10153 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com>
PR-URL: #9795 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Anna Henningsen <anna@addaleax.net>
PR-URL: #9795 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Anna Henningsen <anna@addaleax.net>
PR-URL: #9795 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Anna Henningsen <anna@addaleax.net>
PR-URL: #9795 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Anna Henningsen <anna@addaleax.net>
PR-URL: #9795 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Anna Henningsen <anna@addaleax.net>
PR-URL: #9795 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Anna Henningsen <anna@addaleax.net>
On some systems, some first bytes of allocated buffer can be zeroed by default, so the example doesn't work well - the buffer looks zeroed even before the fill. Fixes: #9786 PR-URL: #9795 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Anna Henningsen <anna@addaleax.net>
PR-URL: #9795 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Anna Henningsen <anna@addaleax.net>
PR-URL: #9795 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Anna Henningsen <anna@addaleax.net>
pass a regexp to assert.throws() PR-URL: #9924 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
Also updating assertStrict and moving the assert required. PR-URL: #9917 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
change var to const/let wrap common.mustCall on childProcess.exec callback remove unneeded fs.unlinkSync() refactor assert.equal to assert.strictEqual PR-URL: #10012 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
change equal to strictEqual, fix setTimeout PR-URL: #9938 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
- changes var to const/let - changes assert.equal to assert.strictEqual - changes `notEqual` to `notStrictEqual` PR-URL: #10023 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Improved test by using strictEqual instead of equal. PR-URL: #10027 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com>
Replace var with const and assert.equal with assert.strictEqual. PR-URL: #10034 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com>
Requiring a file from a directory that contains an invalid package.json file should throw an error. PR-URL: #10044 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: #9976 Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
test-buffer-creation-regression is flaky on some SmartOS hosts in CI, timing out. Move to sequential so it does not compete with other tests for resources. Reduce three test cases to just the one needed to identify the regression. PR-URL: #10161 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com>
- changes var to const/let - changes assert.equal to assert.strictEqual PR-URL: #9947 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
Silence coverity warnings about the return value not being checked. PR-URL: #10126 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Eugene Ostroukhov <eostroukhov@chromium.org> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: #9899 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
setTimeout at 49:5 requires two arguments. On lines 72 and 73 changed assert.equal() to assert.strictEqual(). PR-URL: #10003 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
In this change, the setTimeout needed a second argument, so I set that value to 1. In addition, I changed the assertion to be a strictEquals instead of equals. I changed the var declarations to const in this test. PR-URL: #9889 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #10168 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
var -> const assert.equal() -> assert.strictEqual() PR-URL: #9629 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
PR-URL: #10170 Reviewed-By: Rich Trott <rtrott@gmail.com>
- replaced var with const/let. - removed all console.log() statements. - removed deaths and revivals vars. - wrapped beforexit listener callbacks with common.mustCall(). - removed exit event listener. PR-URL: #10121 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
I should have time tomorrow if no one else wants to do it.
I'd say they should all come from a member of the release team to prevent any confusion by people less familiar with our processes. But, I think @italoacasas should be included in the changelog, along with whoever actually cuts the release. |
* use const instead of var for required modules * use assert.strictEqual instead of assert.equal * use assert.strictEqual instead of assert.ok PR-URL: #10275 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com>
Race condition caused occasional failure on CI. Chained callbacks used to remove race condition. PR-URL: #10293 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Extend the assert-throws-arguments custom ESLint rule to also check for the use of template literals as a second argument to assert.throws. PR-URL: #10301 Ref: #10282 (comment) Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Italo A. Casas <me@italoacasas.com>
* use const instead of var for required modules * use assert.strictEqual instead of assert.equal * remove unnecessary process.nextTick PR-URL: #10273 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Minwoo Jung <jmwsoft@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com>
* remove the manual control for functions execution * use common.mustCall to control the functions execution automatically * use let and const instead of var * use assert.strictEqual instead assert.equal PR-URL: #10219 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Changes disconnect() to return a refererence to the worker. This will enable method chaining such as worker.disconnect().once('disconnect', doThis); PR-URL: #10019 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
It can happen that first data chunk received in stdout is not exactly `'debug> '`. Make sure the exit condition is met. PR-URL: #10316 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com>
Passphrase is now used whether keys are provided singly, in an array of string/buffer, or an array of object, where it used to be ignored in some argument combinations. Specifically, these now work as expected: key: [encryptedPem], passphrase: 'passphrase' and key: [{pem: encryptedPem}] passphrase: 'passphrase' and key: [{pem: unencryptedPem}] PR-URL: #10294 Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Always use `req_wrap_obj` to allow calling `req->Done()` in stream implementations. PR-URL: #10184 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Original commit message: ThreadTicks::Now support for Solaris BUG=v8:5739 Review-Url: https://codereview.chromium.org/2576903004 Cr-Commit-Position: refs/heads/master@{#41771} PR-URL: #10342 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
* use const and let instead of var * use assert.strictEqual instead of assert.equal * use assert.strictEqual instead of assert.ok * use assert.ifError PR-URL: #10312 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
This line `pool = null;` isn't needed and has been around since the first iteration of streams. I can't find a good reason for it to exist, it's not more readable, nor does it seem to trick the compiler into any optimizations. PR-URL: #10260 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com>
Addresses comment after PR #6933 merged. #6933 (review) PR-URL: #10345 Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Italo A. Casas <me@italoacasas.com>
Reviewed-By: João Reis <reis@janeasystems.com> PR-URL: #8884
cjihrig
force-pushed
the
v7.3.0-proposal
branch
from
December 20, 2016 17:44
e46e078
to
3a4b10c
Compare
Notable changes: * buffer: - buffer.fill() now works properly for the UCS2 encoding on Big-Endian machines. (Anna Henningsen) #9837 * cluster: - disconnect() now returns a reference to the disconnected worker. (Sean Villars) #10019 * crypto: - The built-in list of Well-Known CAs (Certificate Authorities) can now be extended via a NODE_EXTRA_CA_CERTS environment variable. (Sam Roberts) #9139 * http: - Remove stale timeout listeners in order to prevent a memory leak when using keep alive. (Karl Böhlmark) #9440 * tls: - Allow obvious key/passphrase combinations. (Sam Roberts) #10294 * url: - Including base argument in URL.originFor() to meet specification compliance. (joyeecheung) #10021 - Improve URLSearchParams to meet specification compliance. (Timothy Gu) #9484 PR-URL: #10277
cjihrig
force-pushed
the
v7.3.0-proposal
branch
from
December 20, 2016 17:57
3a4b10c
to
24a3d0e
Compare
PR-URL: #10277
cjihrig
added a commit
to cjihrig/node
that referenced
this pull request
Dec 20, 2016
Notable changes: * buffer: - buffer.fill() now works properly for the UCS2 encoding on Big-Endian machines. (Anna Henningsen) nodejs#9837 * cluster: - disconnect() now returns a reference to the disconnected worker. (Sean Villars) nodejs#10019 * crypto: - The built-in list of Well-Known CAs (Certificate Authorities) can now be extended via a NODE_EXTRA_CA_CERTS environment variable. (Sam Roberts) nodejs#9139 * http: - Remove stale timeout listeners in order to prevent a memory leak when using keep alive. (Karl Böhlmark) nodejs#9440 * tls: - Allow obvious key/passphrase combinations. (Sam Roberts) nodejs#10294 * url: - Including base argument in URL.originFor() to meet specification compliance. (joyeecheung) nodejs#10021 - Improve URLSearchParams to meet specification compliance. (Timothy Gu) nodejs#9484 PR-URL: nodejs#10277
cjihrig
added a commit
to nodejs/nodejs.org
that referenced
this pull request
Dec 20, 2016
cjihrig
added a commit
that referenced
this pull request
Dec 20, 2016
Notable changes: * buffer: - buffer.fill() now works properly for the UCS2 encoding on Big-Endian machines. (Anna Henningsen) #9837 * cluster: - disconnect() now returns a reference to the disconnected worker. (Sean Villars) #10019 * crypto: - The built-in list of Well-Known CAs (Certificate Authorities) can now be extended via a NODE_EXTRA_CA_CERTS environment variable. (Sam Roberts) #9139 * http: - Remove stale timeout listeners in order to prevent a memory leak when using keep alive. (Karl Böhlmark) #9440 * tls: - Allow obvious key/passphrase combinations. (Sam Roberts) #10294 * url: - Including base argument in URL.originFor() to meet specification compliance. (joyeecheung) #10021 - Improve URLSearchParams to meet specification compliance. (Timothy Gu) #9484 PR-URL: #10277
imyller
added a commit
to imyller/meta-nodejs
that referenced
this pull request
Dec 21, 2016
Notable changes: * buffer: - buffer.fill() now works properly for the UCS2 encoding on Big-Endian machines. (Anna Henningsen) nodejs/node#9837 * cluster: - disconnect() now returns a reference to the disconnected worker. (Sean Villars) nodejs/node#10019 * crypto: - The built-in list of Well-Known CAs (Certificate Authorities) can now be extended via a NODE_EXTRA_CA_CERTS environment variable. (Sam Roberts) nodejs/node#9139 * http: - Remove stale timeout listeners in order to prevent a memory leak when using keep alive. (Karl Bohlmark) nodejs/node#9440 * tls: - Allow obvious key/passphrase combinations. (Sam Roberts) nodejs/node#10294 * url: - Including base argument in URL.originFor() to meet specification compliance. (joyeecheung) nodejs/node#10021 - Improve URLSearchParams to meet specification compliance. (Timothy Gu) nodejs/node#9484 PR-URL: nodejs/node#10277 Signed-off-by: Ilkka Myller <ilkka.myller@nodefield.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Version 7.3.0 (Current)
Proposed release date
Tuesday, 2016-12-20
Notable changes
CI
1 -
https://ci.nodejs.org/job/node-test-pull-request/5411/console2 -
https://ci.nodejs.org/job/node-test-pull-request/5419/console3 -
https://ci.nodejs.org/job/node-test-pull-request/5477/console4 - https://ci.nodejs.org/job/node-test-pull-request/5494/
CITGM
1 -
https://ci.nodejs.org/view/Node.js-citgm/job/citgm-smoker/486/console2 - https://ci.nodejs.org/view/Node.js-citgm/job/citgm-smoker/489/
Commits
c2cc11b3c6
] - Working on v7.2.2 (Jeremiah Senkpiel) #10127b99a372e91
] - buffer: fix single-character string filling (Anna Henningsen) #9837d8b6723096
] - buffer: handle UCS2.fill()
properly on BE (Anna Henningsen) #9837e61331ee9b
] - build: fix node_g target (Daniel Bevenius) #101539d04152e15
] - build: Don't regenerate node symlink (sxa555) #98275d14602181
] - (SEMVER-MINOR) cluster: return worker reference from disconnect() (Sean Villars) #100196963e8aa9d
] - (SEMVER-MINOR) crypto: allow adding extra certs to well-known CAs (Sam Roberts) #9139a308a2fae4
] - deps: cherry-pick 081fce3 from V8 upstream (Matt Loring) #103427c3d280bf0
] - doc: rework tls for accuracy and clarity (Sam Roberts) #98006b98906a08
] - doc: document R CRAN mirror process (Lucas Holmquist) #102117e8c5e3490
] - doc: expand common module material in test guide (Rich Trott) #10251ee736b276c
] - doc: fix broken link in COLLABORATOR_GUIDE.md (Michael Dawson) #1026740b0ca1329
] - doc: fix typo in code example of 'path' module (pallxk) #10136b44e7891d0
] - doc: standardizing on make -j4 (Jonathan Darling) #9961ff8fdb14fb
] - doc: add note to parallelize make (Jonathan Darling) #99615a64187bed
] - doc: buffer allocation throws for negative size (joyeecheung) #1015120fdf3aec6
] - doc: add some info ontty#setRawMode()
(Jeremiah Senkpiel) #10147ae53a6e12b
] - doc: updatepath.format
description and examples (anoff) #1004630340388f1
] - doc: add a variable declaration in the buffer.md (Vse Mozhet Byt) #9795d64e52c68d
] - doc: adding missing - in README (Italo A. Casas) #1017039bf5bfaf1
] - doc: removing extra space in README (Italo A. Casas) #10168bc64a63440
] - doc: fix a wrong note in the buffer.md (Vse Mozhet Byt) #9795d4c73d4823
] - doc: remove an extraneous word in the buffer.md (Vse Mozhet Byt) #9795d373b2f2fb
] - doc: fix examples in buffer.md to avoid confusion (Vse Mozhet Byt) #97957a39a44dbc
] - doc: remove a wrong remark in the buffer.md (Vse Mozhet Byt) #979539b083eb51
] - doc: repeat a remark as needed in the buffer.md (Vse Mozhet Byt) #9795622690f242
] - doc: fix copy-paste artifacts in the buffer.md (Vse Mozhet Byt) #97953b848a279b
] - doc: fix wrong function arguments in the buffer.md (Vse Mozhet Byt) #97959e47b943a7
] - doc: fix a syntax error in the buffer.md (Vse Mozhet Byt) #97951864222d50
] - doc: var => const/let in the buffer.md (Vse Mozhet Byt) #97957b924f1713
] - doc: fix typo in ecdhCurve, a tls property name (Sam Roberts) #103452673be676a
] - fs: remove unused argument from copyObject() (Ethan Arrowood) #100411081f0f33d
] - fs: remove needless assignment of null (Francis Gulotta) #10260dded482bb8
] - http: remove stale timeout listeners (Karl Böhlmark) #9440b41db3396b
] - inspector: check if connected before waiting (Eugene Ostroukhov) #10094b6a8bc6ac3
] - lib,test: use consistent operator linebreak style (Michaël Zasso) #10178ef2fa56314
] - src: fix string format mistake for 32 bit node (Alex Newman) #10082d4e160c946
] - (SEMVER-MINOR) src: add wrapper for process.emitWarning() (Sam Roberts) #9139ec2f13fe66
] - src: don't overwrite non-writable vm globals (Ben Noordhuis) #1022728ffd593e2
] - stream, test: test _readableState.emittedReadable (Joyee Cheung) #10249729fecf390
] - stream_base: homogenize req_wrap_obj use (Fedor Indutny) #101848b9131c1f8
] - test: tls key/cert ordering not necessary (Sam Roberts) #98008a34e60b41
] - test: var to const in tls-no-cert-required (Sam Roberts) #9800ea16a2ab52
] - test: stream readable needReadable state (Joyee Cheung) #10241e4b29a57f9
] - test: refactor test-fs-read-stream-inherit (Rich Trott) #10246fb297cba8f
] - test: refactor test-dgram-send-callback-multi-buffer (mfrance) #999916fbd4f6bf
] - test: refactor test-tls-ecdh-disable (Aaron Williams) #998946c55a6454
] - test: cleanup test-stdout-close-catch.js (Travis Bretton) #100068c8b1230da
] - test: use const/let and common.mustCall (Outsider) #995974563f07e9
] - test: refactor domain test (Adao Junior) #10269d9cfd5484f
] - test: clean up domain-no-error-handler test (weyj4) #10291553a32674a
] - test: fix http-client-timeout-option-listeners (Rich Trott) #10224308cead66e
] - test: update test-domain-uncaught-exception.js (Andy Chen) #1019360542cb98b
] - test: refactor test-domain.js (Siddhartha Sahai) #10207c0800d9449
] - test: refactor test-stream-big-push (Rich Trott) #10226b9361cae6e
] - test: refactor test-http-dns-fail (Adrian Estrada) #10243a97f26476d
] - test: refactor test-crypto-random (Rich Trott) #102322f9c8d977f
] - test: refactor test-http-pause-resume-one-end (Rich Trott) #1021090659bc95c
] - test: fix flaky test-dgram-exclusive-implicit-bind (Rich Trott) #10212a4f3080595
] - test: improvements in test fixtures symlinked (Adrian Estrada) #10182d5e30a69e2
] - test: refactor test-fs-fsync (Rob Adelmann) #10176be87441463
] - test: refactor test-http-after-connect.js (larissayvette) #102292b78212445
] - test: use strictEqual in test-debug-break (Adrian Estrada) #101818b698d89ac
] - test: refactor assert.equal, update syntax to ES6 (Prieto, Marcos) #101903749dc6ce7
] - test: refactor http pipelined socket test (Rich Trott) #10189e1d813f3f8
] - test: refactor test-handle-wrap-close-abort (Rich Trott) #101887f01484a7a
] - test: add ES6 and strictEqual to test-fs-truncate (Adrian Estrada) #1016788839cf204
] - test: replace var with const in test-require-dot (Amar Zavery) #991609ec5db10b
] - test: fail for missing output files (Anna Henningsen) #101503f269cc760
] - test: use ES6 in test-debugger-client.js (Adrian Estrada) #101831f11deb58f
] - test: improve buffer transcode (Johnny Reading) #100433e8df733e8
] - test: improving crypto fips (James Tenenbaum) #100026780c0e572
] - test: stream readableState readingMore state (Gregory) #9868c792e2ac49
] - test: stream readableListening internal state (Italo A. Casas) #986428c6df2604
] - test: add stdin-setrawmode.out file (Jonathan Darling) #10149f5347abac8
] - test: set stdin too for pseudo-tty tests (Anna Henningsen) #101493a460d5469
] - test: check for error on invalid signal (Matt Phillips) #100261ebb5b9adb
] - test: refactor test-http-unix-socket (davidmarkclements) #100728b7c97bc59
] - test: increase test coverage of BufferList (joyeecheung) #1017153e8e962d4
] - test: fix flaky test-net-socket-timeout (Rich Trott) #10172ca38f70dea
] - test: refactor test-net-keepalive.js (Kyle Corsi) #9995a9d4bd7a34
] - test: refactor test-crypto-hmac (eudaimos) #9958778e5f7d0c
] - test: fix error in test-cluster-worker-death.js (Bruce Lai) #9981b67cad1174
] - test: useassert.strictEqual
(anoff) #997572fb05d062
] - test: change assert.equal to assert.strictEqual (Aileen) #9946dac757e502
] - test: changed assert.equal to assert.strictEqual (vazina robertson) #10015d7988e0355
] - test: renamed assert.Equal to assert.strictEqual (Jared Young)9d037cfa44
] - test: improves test-tls-client-verify (Paul Graham) #100512565e48445
] - test: refactor test-https-agent-session-reuse (Diego Paez) #1010511140802f4
] - test: refactor test-beforeexit-event (Rob Adelmann) #10121e695862531
] - test: improve test-fs-read-stream.js (Jenna Vuong) #9629be90638487
] - test: refactor test-domain-from-timer (Daniel Sims) #98892c5d5629de
] - test: refactor test-domain-exit-dispose-again (Ethan Arrowood) #100036d4f270f2f
] - test: use const and strictEqual in test-os-homedir-no-envvar (CodeVana) #989962f5a0bf59
] - test: check result of uv_loop_init and uv_write (Ben Noordhuis) #1012619432f05ff
] - test: refactor test-dgram-bind-default-address (Michael-Bryant Choa) #994701509bc67e
] - test: move long-running test to sequential (Rich Trott) #10161d8dc890352
] - test: assert.throws() should include a RegExp (Chris Bystrek) #99766f2f02d5ad
] - test: invalid package.json causes error when require()ing in directory (Sam Shull) #100446489a91027
] - test: refactor test-listen-fd-ebadf (Richard Karmazin) #10034eb1664bed9
] - test: refactor test-event-emitter-method-names (Rodrigo Palma) #10027c66cf2c1cf
] - test: refactor tls-ticket-cluster (Yojan Shrestha) #10023de9972678e
] - test: refactor test-domain-exit-dispose (Chris Henney) #99385ca90777e6
] - test: refactor test-stdin-from-file.js (amrios) #100124d66578997
] - test: use ES6 to update let & const (Jason Humphrey) #9917bb9174745b
] - test: fix test for buffer regression V8 Fatal Error when trying to convert a buffered integer to string #649 (joyeecheung) #9924613798335c
] - test: stream readable resumeScheduled state (Italo A. Casas) #1029915c71f6c66
] - test: improve code in test-fs-open.js (Adrian Estrada) #10312793d8719eb
] - test: fix flaky test-debug-port (Santiago Gimeno) #103165e781a3883
] - test: refactor the code in test-dns-ipv6 (Adrian Estrada) #102198b367c5ddd
] - test: improve test-child-process-fork-and-spawn (Adrian Estrada) #10273348e69c89d
] - test: fix flaky test-http-client-timeout-event (Rich Trott) #102930d3ac89ff7
] - test: add known_issues test for deleting property in vm context has no effect #6287 (AnnaMag) #10272f7f662cad5
] - test: improve test-child-process-exec-buffer (Adrian Estrada) #10275f66461382c
] - timers: fix handling of cleared immediates (hveldstra) #97598e4b9fa487
] - tls: fix/annotate connect arg comments (Sam Roberts) #9800980acb4b95
] - tls: document and test option-less createServer (Sam Roberts) #980041e1e6eb35
] - tls: do not refer to secureOptions as flags (Sam Roberts) #98000b44384561
] - (SEMVER-MINOR) tls: allow obvious key/passphrase combinations (Sam Roberts) #10294a92f2ad19c
] - tools: enforce consistent operator linebreak style (Michaël Zasso) #10178cc5bd9a0cf
] - tools: add macosx-firwall script to avoid popups (Daniel Bevenius) #101147cb98138a9
] - tools: forbid template literals in assert.throws (Michaël Zasso) #1030124482d08ce
] - (SEMVER-MINOR) url: add inspect function to TupleOrigin (Safia Abdalla) #10039f08d8a6c6f
] - url: improve URLSearchParams spec compliance (Timothy Gu) #948419d7197177
] - url: add a got host pattern in url.js (Axel Monroy) #96532da71f24de
] - url, test: fix typo in inspect output, add test (Jay Brownlee) #1023180cccce218
] - url, test: including base argument in originFor (joyeecheung) #100217a0fe9f471
] - win,msi: add required UIRef for localized strings (Bill Ticehurst) #8884