-
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
v9.2.0 proposal #16992
v9.2.0 proposal #16992
Conversation
PR-URL: #16843 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
test-http-keepalive-maxsockets.js will fail if sufficient copies are run at once. Move to sequential. PR-URL: #16777 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Two instances of a similar test exist, with both testing the timeout on the stream and neither on the session. Adjust one of them to test the session timeout instead. PR-URL: #16754 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Do not call destroy each time rstStream is called since the first call (or receipt of rst frame) will always trigger destroy. Expand existing test for this behaviour. PR-URL: #16753 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
In test/parallel/test-cluster-setup-master-cumulative.js: Remove the message parameter to ensure that the compared objects are printed out. Add the original message as a comment above. PR-URL: #16838 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
This commit changes the wording of subprocess.killed to reflect that a child process was successfully signaled, and not necessarily terminated. Fixes: #16747 PR-URL: #16748 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: #16866 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Bryan English <bryan@bryanenglish.com>
Include unexpected value in assertion messages. PR-URL: #16820 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
This commit add missing options to the Windows help message and removes options that no longer exist (test-uv). PR-URL: #16707 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
test-fs-utimes was doing some tests against __filename. This made the test unreliable when multiple copies were run simultaneously. In general, tests should use files in either the tmp directory or else fixtures, so change to using `common.tmpDir` instead. Each copy of the test (if using `test.py` harness for parallel runs) will use its own directory, making the test robust again. PR-URL: #16774 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
PR-URL: #16581 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
PR-URL: #16879 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
This commit introduces test/common/internet.address, which includes a set of addresses for doing internet tests. These addresses can be overriden using NODE_TEST_* environment variables. PR-URL: #16390 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: #16390 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
If the console destination is a unix pipe (net.Socket), write() is async. If the destination is broken, we are adding an 'error' event listener to avoid a process crash. This PR makes sure that we are adding that listener only once. Fixes: #16767 PR-URL: #16770 Fixes: #16767 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
Use fixtures module in test/parallel/test-tls-js-stream.js. PR-URL: #16817 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
In test-require-extensions-main, include the values that caused the test to fail in the messages reporting the failure. PR-URL: #16831 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
PR-URL: #16821 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
This adds direct anchors for the error codes in errors.html. For example, previously the anchor for ERR_ASSERTION is #errors_err_assertion, now there is also #ERR_ASSERTION. PR-URL: #16779 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Include the value that differed from the expected value in an assertion message in test-require-dot. PR-URL: #16805 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
In test-stream-pipe-await-train-manual-resume, include unexpected value in error messages. PR-URL: #16884 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Original commit message: I believe the paths to the V8 include headers are incorrect. The paths to other sources seem to be relative to the parent directory. When building Node.js I get the following warning on Windows: Warning: Missing input files: deps\v8\src\..\..\include\v8-inspector-protocol.h deps\v8\src\..\..\include\v8-inspector.h This commit updates the two include paths. Bug: Change-Id: I51a057abba61e294e7811ba69db03e283b0bdc3f Reviewed-on: https://chromium-review.googlesource.com/743981 Reviewed-by: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org> Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org> Cr-Commit-Position: refs/heads/master@{#49121} PR-URL: #16743 Fixes: #16614 Refs: v8/v8@b8331cc Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Make the `uv_fs_realpath()` binding (which calls the libc `realpath()` on UNIX and `GetFinalPathNameByHandle()` on Windows) available as the `fs.realpath.native()` and `fs.realpathSync.native()` functions. The binding was already available as `process.binding('fs').realpath` but was not exposed or tested - and partly broken as a result. Fixes: #8715 PR-URL: #15776 Refs: #7899 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Minwoo Jung <minwoo@nodesource.com> Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Original commit message: I believe the paths to the V8 include headers are incorrect. The paths to other sources seem to be relative to the parent directory. When building Node.js I get the following warning on Windows: Warning: Missing input files: deps\v8\src\..\..\include\v8-inspector-protocol.h deps\v8\src\..\..\include\v8-inspector.h This commit updates the two include paths. Bug: Change-Id: I51a057abba61e294e7811ba69db03e283b0bdc3f Reviewed-on: https://chromium-review.googlesource.com/743981 Reviewed-by: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org> Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org> Cr-Commit-Position: refs/heads/master@{#49121} This commit also increments the v8_embedder_string version. PR-URL: #16900 Fixes: #16614 Refs: v8/v8@b8331cc Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
`&vec[0]` is undefined behavior when `vec.size() == 0`. It is mostly academic because package.json files are not usually empty and because with most STL implementations it decays to something that is legal C++ as long as the result is not dereferenced, but better safe than sorry. Note that the tests don't actually fail because of that, I added them as sanity checks. PR-URL: #16871 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit excludes src\tracing\trace_event.h and src\tracing\trace_event_common.h from the linter but allows the rest of the files in src\tracing to be examined by the linter which is similar to what the Makefile does. PR-URL: #16720 Reviewed-By: James M Snell <jasnell@gmail.com>
Add an intro section and example for the vm module. PR-URL: #16867 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
For variables such as LD_LIBRARY_PATH and DYLD_LIBRARY_PATH that are needed for dynamically linked binaries PR-URL: #16405 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
PR-URL: #16723 Refs: nodejs/build#885 Refs: nodejs/nodejs.org#1446 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Update tools/doc/html.js and tools/eslint-rules/crypto-check.js to remove unused trailing function arguments in preparation for enabling a lint rule to enforce that practice. PR-URL: #16953 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Use linting to enforce that the final argument for a function must be used. PR-URL: #16953 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
* remove custom messages for assert that conceal values * add comment explaining test * add block scoping PR-URL: #16814 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
* remove comment that isn't relevant/important * add comment that explains what the test does PR-URL: #16829 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Use a unique pointer to make ownership clear. PR-URL: #16974 Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Eugene Ostroukhov <eostroukhov@google.com>
This commit fixes a compiler warning with SetAccessor() by passing in the context. PR-URL: #16958 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
Original commit message: [map] Fix map constructor to correctly throw. We need to throw before rethrowing, otherwise the exception does not trigger a debugger event and is not reported if uncaught. R=gsathya@chromium.org, jgruber@chromium.org Bug: v8:7047 Change-Id: I7ce0253883a21d6059e4e0ed0fc56dc55a0dcba6 Reviewed-on: https://chromium-review.googlesource.com/758372 Reviewed-by: Jakob Gruber <jgruber@chromium.org> Reviewed-by: Sathya Gunasekaran <gsathya@chromium.org> Commit-Queue: Yang Guo <yangguo@chromium.org> Cr-Commit-Position: refs/heads/master@{#49237} PR-URL: #16897 Fixes: #16856 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
PR-URL: #16842 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
PR-URL: #16936 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
With improvements in V8, using separate emit functions is no longer necessary and can instead be replaced by the spread operator. improvement confidence p.value events/ee-emit.js n=2000000 2.98 % 0.09852489 events/ee-emit-2-args.js n=2000000 4.19 % *** 0.0001914216 events/ee-emit-6-args.js n=2000000 61.69 % *** 6.611964e-35 events/ee-emit-diff-args.js n=2000000 -0.36 % 0.305069 events/ee-once.js n=20000000 6.42 % *** 1.27831e-06 PR-URL: #16869 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Bryan English <bryan@bryanenglish.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Benedikt Meurer <benedikt.meurer@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Brian White <mscdex@mscdex.net>
e3090b8
to
50ec9bf
Compare
Added some more commits. New CI: https://ci.nodejs.org/job/node-test-pull-request/11437/ @bricss #16931 hasn't landed yet, so I excluded it. I did pull in the other though. About to start building binaries and will cut provided CI is happy |
Ah thanks @MylesBorins! |
v9.1.0 for comparison: https://ci.nodejs.org/view/Node.js-citgm/job/citgm-smoker/1072/ |
PR-URL: #16992
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nothing of significance in CitGM
CitGM new fails:
|
|
@evanlucas there is a armv6l in staging now, could you promote it and update the release blog post please? |
Done. Thanks for the reminder @rvagg! |
2017-11-14, Version 9.2.0 (Current), @evanlucas
Notable Changes
Commits
02ea0ee507
] - build: fix cctest compilation (Daniel Bevenius) #16887a4557f294a
] - build: remove cctest extension (Yihong Wang) #166801dc4fc1390
] - build: include src/tracing when linting on win (Daniel Bevenius) #167204c11801ed7
] - build: add missing options to help message (Daniel Bevenius) #16707bed0560fb5
] - console: avoid adding infinite error listeners (Matteo Collina) #1677031dadd2007
] - (SEMVER-MINOR) crypto: deprecate {ecdhCurve: false} (David Benjamin) #16130f952caa677
] - (SEMVER-MINOR) crypto: clear some SSL_METHOD deprecation warnings (David Benjamin) #16130a5e7255385
] - (SEMVER-MINOR) crypto: make ALPN the same for OpenSSL 1.0.2 & 1.1.0 (David Benjamin) #1613007102ace9e
] - (SEMVER-MINOR) crypto: remove deprecated ECDH calls w/ OpenSSL 1.1 (David Benjamin) #16130627a15f9e5
] - (SEMVER-MINOR) crypto: emulate OpenSSL 1.0 ticket scheme in 1.1 (David Benjamin) #161308a8ac8ce4d
] - (SEMVER-MINOR) crypto: hard-code tlsSocket.getCipher().version (David Benjamin) #16130c42935b79c
] - (SEMVER-MINOR) crypto: add compat logic for "DSS1" and "dss1" (David Benjamin) #161305c24fc32c9
] - (SEMVER-MINOR) crypto: Make Hmac 1.1.0-compatible (David Benjamin) #16130fa1fc16c3e
] - (SEMVER-MINOR) crypto: make SignBase compatible with OpenSSL 1.1.0 (David Benjamin) #16130abe3dc48cc
] - (SEMVER-MINOR) crypto: make Hash 1.1.0-compatible (David Benjamin) #1613059acd27409
] - (SEMVER-MINOR) crypto: make CipherBase 1.1.0-compatible (David Benjamin) #161306c3ae36cab
] - (SEMVER-MINOR) crypto: remove locking callbacks for OpenSSL 1.1.0 (David Benjamin) #1613081760ffea9
] - (SEMVER-MINOR) crypto: use RSA and DH accessors (David Benjamin) #16130568d9d0eac
] - (SEMVER-MINOR) crypto: test DH keys work without a public half (David Benjamin) #161306a9c528a50
] - (SEMVER-MINOR) crypto: account for new 1.1.0 SSL APIs (David Benjamin) #16130cc744b9b26
] - (SEMVER-MINOR) crypto: remove unnecessary SSLerr calls (David Benjamin) #16130201393f655
] - (SEMVER-MINOR) crypto: estimate kExternalSize (David Benjamin) #16130efd9bc36fa
] - (SEMVER-MINOR) crypto: make node_crypto_bio compat w/ OpenSSL 1.1 (David Benjamin) #161308da4983cb4
] - (SEMVER-MINOR) crypto: use X509_STORE_CTX_new (David Benjamin) #16130f82d3e44c8
] - deps: upgrade libuv to 1.16.1 (cjihrig) #1683538ac50a084
] - deps: cherry-pick cc55747 from V8 upstream (Franziska Hinkelmann) #1689075405a1481
] - deps: ICU 60 bump (Steven R. Loomis) #1687628b7bf062a
] - deps: cherry-pick b8331cc030 from upstream V8 (Daniel Bevenius) #169002266cafba5
] - Revert "deps: cherry-pick b8331cc030 from upstream V8" (Daniel Bevenius) #1689981f14bffff
] - deps: cherry-pick b8331cc030 from upstream V8 (Daniel Bevenius) #1674354768f5094
] - doc: reorganize COLLABORATOR_GUIDE.md (Rich Trott) #15710c4e2343bfb
] - doc: drop support for VS2015 (Nikolai Vavilov) #1686874f33724a2
] - doc: clarify the prerequisites for building with VS2017 (Nikolai Vavilov) #169031510fda1b0
] - doc: outline commit message for breaking changes (Maton Anthony) #168461fcd95e517
] - doc: remove duplicate 'the' from http2 API doc (Vipin Menon) #16924b46714c023
] - doc: fix typos in N-API (Swathi Kalahastri) #169113ba52c1582
] - doc: correct the spelling of omitting in dgram.md (Vidya Subramanyam) #16910e60eff6c01
] - doc: fix a typo in the documentation (Mamatha J V) #169096e9973e912
] - doc: improve documentation for the vm module (Franziska Hinkelmann) #1686715dcb96b28
] - doc: fix a typo in n-api documentation (Vipin Menon) #16879928647c77c
] - doc: fix typo in assert.md (Andres Kalle) #16866a184dbcb2c
] - doc: update subprocess.killed (cjihrig) #167488611e3b93b
] - (SEMVER-MINOR) fs: expose realpath(3) bindings (Ben Noordhuis) #157768dfd5a515a
] - http2: multiple smaller code cleanups (James M Snell) #167648245e5a2d4
] - http2: simplify subsequent rstStream calls (Anatoli Papirovski) #16753afbdd017c1
] - lib: replace string concatenation with template (Suryanarayana Murthy N) #169336c0fd55488
] - lib: guard inspector console using process var (Daniel Bevenius) #15008c1792544e8
] - lib: improve the usage of TypeError[INVALID_ARG_TYPE] (Weijia Wang) #1640144c3cc2bec
] - lib: change concatenated string to template (Pawan Jangid) #169308eb32e1b35
] - lib: replace String concatenation with template (saiHemak) #16922678e738d70
] - lib: change concatenated string to template (Nayana Das K) #16925df181745b8
] - lib: replace string concatenation with template (Jayashree S Kumar) #16921a9358068db
] - lib: replace string concatenation with template (Chandrakala) #1692016c622209a
] - lib: replace string concatenation with template (subrahmanya chari p) #1691764a0c80773
] - loader: test search module (Cyril Lakech) #1679579648496ec
] - src: explain implementation of vm module (Franziska Hinkelmann) #16962a79d86db21
] - src: use unrefed async for GC tracking (Anna Henningsen) #167585df3dc1169
] - src: make StreamBase prototype accessors robust (Joyee Cheung) #1686041937bedf9
] - src: add process.ppid (cjihrig) #168390b93bbb419
] - src: add openssl-system-ca-path configure option (Daniel Bevenius) #1679043c5726028
] - src: fix UB in InternalModuleReadFile() (Ben Noordhuis) #16871bce5db2225
] - src: CHECK() for argument overflow in Spawn() (cjihrig) #16761ad02676816
] - test: used fixturesDir from fixtures modules (Klemen Kogovsek) #16813809dc099ac
] - test: refactor fs.write() test (Patrick Heneise) #1682735fc317d8f
] - test: add a test description (Grant Gasparyan) #1683383f9604adc
] - test: use ES6 classes instead of util.inherits (Tobias Nießen) #169387c364a269c
] - test: use common/fixtures module in hash-seed test (Javier Blanco) #168233136578871
] - test: make test-tls-external-accessor agnostic (Rich Trott) #162720be7f8c48c
] - test: make test-require-json engine agnostic (Rich Trott) #16272835ca63595
] - test: make test-repl engine agnostic (Rich Trott) #16272f8337cea8e
] - test: make test-repl-syntax-error-stack agnostic (Rich Trott) #16272c81b086928
] - test: make test-repl-harmony engine agnostic (Rich Trott) #16272591a6927ee
] - test: make test-querystring-escape engine agnostic (Rich Trott) #16272e2f564821e
] - test: make test-process-env-symbols agnostic (Rich Trott) #162729bf887475e
] - test: make test-os-eol engine agnostic (Rich Trott) #1627279e183186c
] - test: make error stack test engine agnostic (Rich Trott) #16272b5b23bd3e8
] - test: make test-http-outgoing-proto agnostic (Rich Trott) #16272bd7822b8f6
] - test: make test-error-reporting engine agnostic (Rich Trott) #162724604294647
] - test: make test-console engine agnostic (Rich Trott) #16272025eadfcd5
] - test: make test-console-count engine agnostic (Rich Trott) #16272c74467f938
] - test: make test-cli-syntax engine agnostic (Rich Trott) #162722e2e8020e7
] - test: make test-buffer-slow engine agnostic (Rich Trott) #162727a5378377f
] - test: improve template value for test message (Stephan Smith) #168266ea8768141
] - test: unmark flaky test (Anna Henningsen) #16758651fee4c54
] - test: change concatenated string to template (Deepthi Sebastian) #169291ea546c9ee
] - test: change concatenated string to template (Anawesha Khuntia) #16912385f65826a
] - test: change string concatenation to template (Suryanarayana Murthy N) #1691961fbd857d7
] - test: use template string for concatenation (Vipin Menon) #16918fbec5ec4d9
] - test: replace string concatenation with template (Kabir Islam) #16916407eb6f93e
] - test: enable mustCall() during child exit (Vipin Menon) #1691526e4c587eb
] - (SEMVER-MINOR) test: fix flaky test-http2-create-client-connect (David Benjamin) #161308c294203cf
] - (SEMVER-MINOR) test: fix test-https-agent-session-eviction for 1.1 (David Benjamin) #161303d438f84b2
] - (SEMVER-MINOR) test: configure certs in tests (David Benjamin) #1613008ac21423e
] - (SEMVER-MINOR) test: revise test-tls-econnreset for OpenSSL 1.1.0 (David Benjamin) #16130d95b608d98
] - (SEMVER-MINOR) test: test with a larger RSA key (David Benjamin) #1613085ffc2f960
] - (SEMVER-MINOR) test: remove sha from test expectations (David Benjamin) #16130bec042183c
] - (SEMVER-MINOR) test: update test expectations for OpenSSL 1.1.0 (David Benjamin) #16130b42013c31e
] - test: replace string concatenation with template (Sabari Lakshmi Krishnamoorthy) #16914fbc7451553
] - test: replace string concatenation with template (Tanvi Kini) #169137f7dec8b08
] - test: cover vm.runInNewContext() (cjihrig) #169068311561ed5
] - test: improve assertion messages (Neil Vass) #168851ee6df9612
] - test: pass process.env to child processes (Rod Vagg) #16405172652ba27
] - test: improve assert messages in stream test (Katie Stockton Roberts) #16884271c89e569
] - test: improve assertion in test-require-dot (Adam Wegrzynek) #168055d3a4ad1cf
] - test: improve error emssage reporting in testNapiRun.js (Paul Ashfield) #16821f71f41d79b
] - test: add values to error message (Adam Jeffery) #16831c1cdc658c0
] - test: replace common.fixtiresDir with fixtures.readKey() (woj) #16817c662cc0b70
] - test: use internet.addresses in internet tests (Joyee Cheung) #16390a465f2bc78
] - test: introduce test/common/internet.addresses (Joyee Cheung) #16390bc19a93093
] - test: use tmpDir in test-fs-utimes (Rich Trott) #167744d55a1dc2f
] - test: improve assert messages in napi exception test (Paul Blanche) #168208ad4f768c0
] - test: remove message argument in cluster setup test (mbornath) #1683821e9888237
] - test: check session timeout in http2 (Anatoli Papirovski) #16754be266bdbbd
] - test: move test-http-keepalive-maxsockets to sequential (Rich Trott) #16777adcaddfce8
] - test: improve assert messages in test-global (Mark McNelis) #168437ba35995a7
] - tools: fix inspector-check reporting (Daniel Bevenius) #1690225dd8f66be
] - tools: add direct anchors for error codes (Joyee Cheung) #16779625999b840
] - tools: don't lint files that have not changed (Joyee Cheung) #16581942a9ed6a8
] - tools,build: allow build withoutremark-cli
(Refael Ackermann) #16893