-
Notifications
You must be signed in to change notification settings - Fork 29.7k
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.2.1 proposal #10127
Merged
Merged
v7.2.1 proposal #10127
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
Required to support the shared library builds on AIX - this sets the shared library suffix within GYP to .a instead of .so on AIX My patch: https://codereview.chromium.org/2492233002/ was landed as as part of this one which fixed some other (not required, but included for completeness of the backport) changes: Ref: https://codereview.chromium.org/2511733005/
Updates to build the shared library version of node on AIX. Adds the same functionality to AIX that was added on Linux under this: Ref: #6994 PR-URL: #9675 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Allow test.py to run tests with a 'tests/' prefix or a '.js' postfix PR-URL: #9694 Fixes: #9684 Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
The constructor and destructor shouldn't have been placed in the -inl.h file from the beginning. PR-URL: #9753 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This is how it's done everywhere else in core. Make it follow suit. PR-URL: #9753 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Calling JS during GC is a no-no. So intead create a queue of all ids that need to have their destroy() callback called and call them later. Removed checking destroy() in test-async-wrap-uid because destroy() can be called after the 'exit' callback. Missing a reliable test to reproduce the issue that caused the FATAL_ERROR. PR-URL: #9753 Fixes: #8216 Fixes: #9465 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
* setTimeout() with no duration -> setImmediate() * add common.mustCall() where appropriate * var -> const * .on() -> .once() PR-URL: #9715 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #9737 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
The `/` character does not need to be escaped when occurring inside a character class in a regular expression. Remove such instances of escaping in the code base. PR-URL: #9591 Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
Eslint Rule: Disallow useless escape in regex character class with optional override characters option and auto fixable with eslint --fix option. Usage: no-useless-regex-char-class-escape: [2, { override: ['[', ']'] }] PR-URL: #9591 Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
PR-URL: #9782 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Italo A. Casas <me@italoacasas.com> Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
When you call req.end() before you add .on listeners you get an Error that you can't call .on on undefined. PR-URL: #9614 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Minor fixes and enhancements to event-loop-timers-and-nexttick.md Added missing "be" Added a link to REPL docs Added definition of libuv and a link PR-URL: #9126 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
* Liberal use of common.mustCall() * Rename test-dgram-empty-packet -> test-dgram-send-empty-packet * Remove use of timers to avoid CI failures like seen in the Ref below: ``` not ok 237 parallel/test-dgram-empty-packet --- duration_ms: 0.717 severity: fail stack: |- ... throw new Error('Timeout'); ^ Error: Timeout at Timeout._onTimeout ... at ontimeout (timers.js:365:14) at tryOnTimeout (timers.js:237:5) at Timer.listOnTimeout (timers.js:207:5) ``` Refs: https://ci.nodejs.org/job/node-test-commit-freebsd/5341/nodes=freebsd11-x64/console: PR-URL: #9724 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
pseudo-tty/no_interleaved_stdio has hung a few times in the last couple of days on AIX. We believe it is not a Node.js issue but an issue with python on AIX. Its being investigated under: #7973. Excluding this additional test until we can resolve the python issue. Fixes #9765 PR-URL: #9772 Reviewed-By: Sam Roberts <sam@strongloop.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Verify documentation had cut-n-pasted documentation from Sign. PR-URL: #9796 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com>
* assert.equal() -> assert.strictEqual() * regex -> .include() * Change variable representing a function from `fun` to idiomatic `fn` * var -> const PR-URL: #9780 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com>
`-` does not need to be escaped in a regular expression outside of character classes. PR-URL: #9781 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Use port 0 instead of common.PORT, and use server address instead of localhost to follow writing test guideline. This is a part of Code And Learn at NodeFest 2016 Challenge in Tokyo. PR-URL: #9572 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Shigeki Ohtsu <ohtsu@iij.ad.jp> Reviewed-By: James M Snell <jasnell@gmail.com>
Use port 0 instead of common.PORT. PR-URL: #9573 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Some of the benchmark code can be a little dense. Not *very* hard to read but perhaps harder than it needs to be. These changes (many of them whitespace-only) hopefully improve readability. There are also a few cases of `assert.equal()` that are changed to `assert.strictEqual()`. PR-URL: #9790 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
* remove unused common.faketimeCli * remove mosly-unused common.testDir * assert.ok(false...) -> fail() * alphabetize list of known globals * .indexOf() -> .includes() PR-URL: #9732 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
There is no guarantee that a dgram packet will be received. The test is currently written to only send exactly as many dgram packets as required assuming they are all received. As a result, failures like this may occur (from CI): ``` not ok 719 parallel/test-cluster-dgram-2 --- duration_ms: 120.39 severity: fail stack: |- timeout ``` This change has the workers send packets continuously until disconnect. PR-URL: #9791 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
This reverts commit f2fe558 (#8169) as the original justification for the runtime-deprecation does not appear to justify the disruption to Node’s existing ecosystem. Futhermore, the possibility of deprecating the Buffer constructor entirely in v8.0 might lead to people having to change their code twice. PR-URL: #9529 Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Nikolai Vavilov <vvnicholas@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
* var -> const * assert.equal() -> assert.strictEqual() PR-URL: #9920 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
refactor var -> const/let refactor process.on('exit') into common.mustCall PR-URL: #9934 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: #9919 Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Changed equal to strictEqual PR-URL: #9982 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Changed var to const and equal to strictEqual PR-URL: #9982 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Replace assert.equal() with assert.strictEqual(). PR-URL: #9963 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com>
test-dgram-send-callback-recursive.js PR-URL: #9973 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
* changed vars to const * changed assert.equal to assert.strictEqual * added a common.mustCall in the childProcess.exec callback * replaced 2 console.log strings with template strings for readability * had to break up line 9 because it was causing a line max length (80) listing err PR-URL: #9939 Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: #9940 Reviewed-By: James M Snell <jasnell@gmail.com>
Changes assert.equal to assert.strictEqual in two places and adds a second argument of 0 to setTimeout PR-URL: #9957 Reviewed-By: James M Snell <jasnell@gmail.com>
refactor all var to either const/let change all assert.equal to assert.strictEqual change all assert.ok(...===...) to assert.strictEqual PR-URL: #9970 Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
* var => const * assert test fixtures PR-URL: #9912 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
PR-URL: #10031 Reviewed-By: James M Snell <jasnell@gmail.com>
changed equal to strictEqual in parallel/test-crypto-hash.js. Added a second regex argument to the assert.throws function. PR-URL: #10009 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
COLLABORATOR_GUIDE.md and onboarding.md cover some of the same information. The aim of this commit is to remove duplicated information. PR-URL: #9635 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
Fishrock123
force-pushed
the
v7.2.1-proposal
branch
from
December 6, 2016 18:52
c2f1e5b
to
3bc40ce
Compare
Sorry for the tag in the commit message. I think the changelog-maker should escape things like |
Notable changes: * buffer: - Reverted the runtime deprecation of calling `Buffer()` without `new`. (Anna Henningsen) #9529 - Fixed `buffer.transcode()` for single-byte character encodings to `UCS2`. (Anna Henningsen) #9838 * promise: `--trace-warnings` now produces useful stacktraces for Promise warnings. (Anna Henningsen) #9525 * repl: Fixed a bug preventing correct parsing of generator functions. (Teddy Katz) #9852 * V8: Fixed a significant `instanceof` performance regression. (Franziska Hinkelmann) #9730
re-running CI on windows: https://ci.nodejs.org/job/node-test-commit-windows-fanned/5736/ |
PR-URL: #10127
Fishrock123
added a commit
that referenced
this pull request
Dec 6, 2016
Notable changes: * buffer: - Reverted the runtime deprecation of calling `Buffer()` without `new`. (Anna Henningsen) #9529 - Fixed `buffer.transcode()` for single-byte character encodings to `UCS2`. (Anna Henningsen) #9838 * promise: `--trace-warnings` now produces useful stacktraces for Promise warnings. (Anna Henningsen) #9525 * repl: Fixed a bug preventing correct parsing of generator functions. (Teddy Katz) #9852 * V8: Fixed a significant `instanceof` performance regression. (Franziska Hinkelmann) #9730 PR-URL: #10127
Fishrock123
added a commit
to nodejs/nodejs.org
that referenced
this pull request
Dec 6, 2016
Merged
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.
Checklist
make -j8 test
(UNIX), orvcbuild test nosign
(Windows) passesDescription of change
Notable Changes coming soon, highlights are the async_wrap GC fix, etc. Decided to do a patch because there's really only one (of 3) significant minor changes. ¯\_(ツ)_/¯
Aiming for tomorrow (Tuesday Dec 5).
Commit list within the fold.
5379b9da11
] - async_wrap: call destroy() callback in uv_idle_t (Trevor Norris) #97535157a5cee9
] - async_wrap: make Initialize a static class member (Trevor Norris) #97533e5be7fc8b
] - async_wrap: mode constructor/destructor to .cc (Trevor Norris) #975388464ac6ac
] - benchmark: reformat code for clarity (Rich Trott) #97900c745e3a3a
] - buffer: convert offset & length to int properly (Sakthipriyan Vairamani (thefourtheye)) #9815e0e62d1113
] - Revert "buffer: runtime deprecation of calling Buffer without new" (Anna Henningsen) #9529371090d817
] - build: Make configure file parseable on python3 (kalrover) #965716af467146
] - build: add shared library support to AIX build (Stewart Addison) #96755c9aa18484
] - constants: errors -> errno (Bryan English) #9349ac8d212428
] - debugger: refactor _debugger.js (Rich Trott) #98604bcda633c0
] - deps: upgrade npm to 3.10.10 (Rebecca Turner) #984703b1c314cd
] - deps: cherry-pick 08377af from v8 upstream (Franziska Hinkelmann) #9730e9c2ffd20c
] - deps: backport GYP fix to fix AIX shared suffix (Stewart Addison)346204d77e
] - doc: add link tonet.Server
in tls.md (Devon Rifkin) #10109c4fbdfa785
] - doc: fix typo fordecipher.final
. (iamchenxin) #10086d226418b87
] - doc: suggest Buffer.alloc instead of Buffer#fill (Teddy Katz) #1000078e188d929
] - doc: clarify fs.createReadStream options (Wes Tyler) #10078cdec174d4d
] - doc: var => const in js code examples of addons.md (Vse Mozhet Byt) #1009213eea40d6f
] - doc: rename writing_tests.md to writing-tests.md (Safia Abdalla) #9867c948d9051b
] - doc: it’s -> its in api/child_process.md (Devon Rifkin) #10090f6c1f24068
] - doc: update Collaborators list in README (Rich Trott) #9846a0e25b2544
] - doc: remove minor contradiction in debugger doc (Rich Trott) #98328c70f79249
] - doc: clarify introductory module material (Rich Trott) #98162e22fa043d
] - doc: improve description of moduleexports
(Sam Roberts) #96226ab920a3fc
] - doc: add guide for maintaining V8 (Ali Ijaz Sheikh) #97774fa84c9589
] - doc: fix crypto Verify cut-n-paste from Sign (子丶言) #97966297b9afc5
] - doc: minor fixes event-loop-timers-and-nexttick.md (Dan Koster) #9126a8d84d5b50
] - doc: changed order of invocations in https.request() example. (atrioom) #9614c7cd400fcb
] - doc: fix crypto "decipher.setAAD()" typo (子丶言) #978277e145a00e
] - doc: clarify slashes-appending in url module (Rich Trott) #973165af114267
] - doc: "util" is not needed to extend ES6 classes (Adam Brunner) #973744ae0283af
] - doc: fixinside stability boxes (Roman Reiss) #9723
9554a974d1
] - https: name anonymous functions in https (Pedro Lima) #921780a3934cd7
] - inspector: /json/version returns object, not array (Ben Noordhuis) #976265cda7f265
] - lib: use === in _http_server and _tls_wrap (Walter Beller-Morales) #9849a673d44d68
] - lib,tools: remove unneeded escaping of / (Prince J Wesley) #95913253954e62
] - meta: whitelist dotfiles in .gitignore (Claudio Rodriguez) #80166087e361e5
] - repl: preprocess only for defaultEval (Prince J Wesley) #97529099664959
] - repl: fix generator function preprocessing (Teddy Katz) #98525a2b68896c
] - test: updated test-stream-pipe-unpipe-stream (Raja Panidepu) #10100f900753eeb
] - test: refactor test-crypto-ecb (michael6) #100296502427761
] - test: refactor test-require-exceptions (Oscar Martinez) #9882a801ffb1ee
] - test: refactor test-console (Matt Crummey) #9873bca587bdb3
] - test: refactor test-crypto-certificate (Josh Mays) #9911278772a5df
] - test: refactor dgram-send-multi-buffer-copy (Konstantin Likhter) #99096d5ded508e
] - test: refactor test-domain (Johnny Reading) #9890318a2dbea4
] - test: refactor test-cli-syntax (Exlipse7) #10057da8e3d946a
] - test: refactor test-child-process-constructor (k3kathy) #100609fddf29f53
] - test: refactor test-repl-mode.js (Cesar Hernandez) #1006165c44830c2
] - test: var to const, assert.equal to assert.strictEqual in net (Sean Villars) #9907ef7cbde0a2
] - test: changed vars to const in test-net-better-error-messages-listen-path.js (anoff) #9905f62567b7f8
] - test: use const instead of var in test-require-json.js (Sarah Meyer) #99045f3f54d4bb
] - test: refactor test-http-dns-error (Outsider) #10062ae2bf0a761
] - test: Changed assert.equal to assert.strictEqual (Daniel Pittman) #99021eb581779d
] - test: refactor test-vm-syntax-error-stderr.js (Jay Brownlee) #9900c456ca3601
] - test: refactor test-tls-destroy-whilst-write (Chris Bystrek) #10064fd17ca7710
] - test: refactor test-net-dns-custom-lookup (Kent.Fan) #10071cf3c635dba
] - test: refactor test-https-truncate (davidmarkclements) #1007414c0388945
] - test: refactor test-tls-server-verify (Hutson Betts) #1007636b8dd3b07
] - test: refactor test-crypto-padding.js (Konstantin Likhter) #997138ec8e44fa
] - test: improve test for crypto padding (Julian Duque) #9906a771f2181c
] - test: use strictEqual in test-cli-eval-event.js (Richard Karmazin) #9964e1394eeb16
] - test: refactor test-tls-friendly-error-message.js (Adrian Estrada) #996769077a13bf
] - test: refactor test-fs-append-file.js (adelmann) #10110baa1accdb1
] - test: assert.equal -> assert.strictEqual (davidmarkclements) #10065a34e19532c
] - test: refactor test-dgram-exclusive-implicit-bind (Cesar Hernandez) #10066d87926ae34
] - test: assert.equal -> assert.strictEqual (davidmarkclements) #10067c4902e44ad
] - test: polish test-net-better-error-messages-listen (Hitesh Kanwathirtha) #100879b9fe8c5ac
] - test: change var to const in test-tls-key-mismatch.js (bjdelro) #98977697aee7da
] - test: use strictEqual in cwd-enoent (JDHarmon) #10077cdc2909882
] - test: refactor test-fs-read-stream-inherit.js (Jonathan Darling) #989455b58baed1
] - test: use assert.strictEqual in test-crypto-ecb (Daniel Pittman) #9980e070588a8a
] - test: refactor test-child-process-stdio-inherit (Wes Tyler) #989322b15f2ab6
] - test: change var to const for require and strict equality checks (Harish Tejwani) #98922a8d29339d
] - test: Update to const and use regex for assertions (Daniel Flores) #9891295eb5a3b6
] - test: swap var->const/let and equal->strictEqual (Peter Masucci) #988857f060c495
] - test: replace equal with strictEqual in crypto (Julian Duque) #98863d35930b2c
] - test: replace equal with strictEqual (Julian Duque) #987913cc6a005b
] - test: var to const/let in test-tls-set-ciphers (rajatk) #9877f3eb8b1bea
] - test: refactor test-tls-timeout-server-2 (Devon Rifkin) #9876dc76a20474
] - test: Updating vars to const and tsl server test (Matt Webb) #987463fafb8aca
] - test: refactor test-crypto-hash-stream-pipe (Matt Wilson) #10055fb4b650159
] - test: crypto-hash-stream-pipe use strict equal (Mitchell Stoutin) #99358f550df252
] - test: refactor child-process-spawn-error (Johnny Reading) #9951b73f6b760f
] - test: refactor test-child-process-spawn-error (stokingerl) #9937371ca03568
] - test: refactor test-vm-static-this.js (David Bradford) #98873e37673d5c
] - test: refactor test-crypto-cipheriv-decipheriv (Aileen) #10018f76bb2adf8
] - test: refactor test for crypto cipher/decipher iv (Julian Duque) #99434cc813d8b9
] - test: refactor test-cluster-setup-master-argv (Oscar Martinez) #9960eb0c1cd412
] - test: refactor test-cluster-setup-master-argv (Christine Hong) #9993d2e89272d2
] - test: refactor test-fs-append-file-sync (Chris Bystrek) #10056070370fd0a
] - test: refactor test-fs-append-file-sync (Ian White) #997787038bb628
] - test: refactor test-fs-write-file (adelmann) #100301f6f411234
] - test: refactor test/parallel/test-fs-write-file.js (Kyle Carter) #99924cb52ee827
] - test: update to const iin cluster test (Greg Valdez) #10007f9d79ef597
] - test: use assert.strictEqual() cluster test (Bidur Adhikari) #10042b4ec7d6c50
] - test: use const in test-crypto-pbkdf2 (Greg Valdez) #99742e889cf056
] - test: improve test for crypto pbkdf2 (joyeecheung) #9883c0a28622ce
] - test: var -> let/const, .equal -> .strictEqual (shiya) #9913d1da89906d
] - test: increase coverage for timers (lrlna) #1006844d9bc8b90
] - test: change equal to strictEqual (Kevin Zurawel) #98720cab6eb6ca
] - test: test for http.request() invalid method error (Ashton Kinslow) #10080f9386f2846
] - test: update net-local-address-port (scalkpdev) #988566554c75d5
] - test: refactor test-tls-ecdh (Adriana Rios) #9878a857c9a74c
] - test: refactor test-vm-debug-context (makenova) #9875a6377a96dd
] - test: increase coverage for lib/events.js (Safia Abdalla) #9865eb369f6d48
] - test: use strictEqual in test-zlib-truncated (ben_cripps) #98583af4ef4642
] - test: use strictEqual in test-debugger-client.js (ben_cripps) #98575c15a68091
] - test: refactor test-debug-args (Rich Trott) #98330e36becd39
] - test: refactor test-fs-non-number-arguments-throw (Michaël Zasso) #9844c286312ef5
] - test: replace assert.equal with assert.strictEqual (brad-decker) #98420ccb2c3992
] - test: refactor test-crypto-timing-safe-equal (Michaël Zasso) #98430bdd5ca0f7
] - test: run cpplint on files in test/cctest (Ben Noordhuis) #9787956239124d
] - test: add toASCII and toUnicode punycode tests (Claudio Rodriguez) #974170633f965d
] - test: refactor test-util-inspect (Rich Trott) #98044c2ad8c89f
] - test: refactor test-preload (Rich Trott) #980359aec82f88
] - test: refine test-http-status-reason-invalid-chars (Rich Trott) #9802c35bf44f60
] - test: refactor test-crypto-binary-default (Michaël Zasso) #98104d1e11243b
] - test: refactor and fix test-crypto (Michaël Zasso) #980774c3283cfa
] - test: fix test-buffer-slow (Michaël Zasso) #9809e2db5c8e7a
] - test: refactor test-net-pingpong (Michaël Zasso) #9812cd10e1ae4a
] - test: refactor and fix test-dns (Michaël Zasso) #9811dcba25082f
] - test: refactor and fix test-buffer-bytelength (Michaël Zasso) #9808d06f010482
] - test: cleanup test-dgram-error-message-address (Michael Macherey) #89383b193defb2
] - test: fix flaky test-cluster-dgram-2 (Rich Trott) #97913f1b068644
] - test: refactor common.js (Rich Trott) #9732d31a41149d
] - test: fix test-tls-connect-address-family (mkamakura) #9573d51c856f11
] - test: fix test-http-status-reason-invalid-chars (Yosuke Saito) #9572b763a31af0
] - test: refactor test-child-process-exec-error (Rich Trott) #97802b7ecb5012
] - test: exclude no_interleaved_stdio test for AIX (Michael Dawson) #97724971c3bb79
] - test: fix flaky test-dgram-empty-packet & friends (Rich Trott) #97242fb825750d
] - test: fix flaky test-inspector (Rich Trott) #9727fc13cc6a12
] - test: refactor test-tls-hello-parser-failure (Rich Trott) #9715ea1c4e1212
] - test,url: improve escaping in url.parse (joyeecheung) #1008364854f625b
] - tools: add ESLint rule for assert.throws arguments (Michaël Zasso) #100892ee3543e04
] - tools: remove unneeded escaping in generate.js (Rich Trott) #978153d175267c
] - tools: Add no useless regex char class rule (Prince J Wesley) #9591561b1494bc
] - tools: allow test.py to use full paths of tests (Francis Gulotta) #96945ae549c3aa
] - url: fix -Warray-bounds warning (Santiago Gimeno) #9751