chore(deps): update node.js to 6.17.x #124
Open
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.
This PR contains the following updates:
6.9.x
->6.17.x
Release Notes
nodejs/node
v6.17.1
: 2019-04-03, Version 6.17.1 'Boron' (LTS), @BethGriggsCompare Source
Node 6 is due to go End-of-Life on 2019-04-30.
Notable Changes
Execute()
(Brian White) #25939Commits
c9d21a0c10
] - build: set-blibpath:
for AIX (Richard Lau) #254479ba5fd6bad
] - build: only check REPLACEME & DEP...X for releases (Rod Vagg) #245751371a6f88b
] - doc: simplify CODE_OF_CONDUCT.md (Rich Trott) #23989ad62971573
] - doc: document that addMembership must be called once in a cluster (James M Snell) #237468080a9bf40
] - http: fix error check inExecute()
(Brian White) #25939aedc7120ea
] - src: fix bootstrap_node on bsd (sylkat) #22663b5d464955a
] - test: fix test-repl-envvars (Anna Henningsen) #25226v6.17.0
Compare Source
v6.16.0
: 2018-12-26, Version 6.16.0 'Boron' (LTS), @MylesBorinsCompare Source
The 6.15.0 security release introduced some unexpected breakages on the 6.x release line.
This is a special release to fix a regression in the HTTP binary upgrade response body and add
a missing CLI flag to adjust the max header size of the http parser.
Notable Changes
Commits
f233b160c9
] - (SEMVER-MINOR) cli: add --max-http-header-size flag (cjihrig) #2481159f83d6896
] - (SEMVER-MINOR) deps: cherry-pick http_parser_set_max_header_size (cjihrig) #24811c0c4de71f0
] - (SEMVER-MINOR) http: add maxHeaderSize property (cjihrig) #248608a3e0c0697
] - http: fix regression of binary upgrade response body (Matteo Collina) #25036v6.15.1
: 2018-12-03, Version 6.15.1 'Boron' (LTS), @rvaggCompare Source
Notable Changes
This is a patch release to address a bad backport of the fix for "Slowloris HTTP Denial of Service" (CVE-2018-12122). Node.js 6.15.0 misapplies the headers timeout to an entire keep-alive HTTP session, resulting in prematurely disconnected sockets.
Commits
5d9005c359
] - http: fix backport of Slowloris headers (Matteo Collina) #24796v6.15.0
: 2018-11-27, Version 6.15.0 'Boron' (LTS), @rvaggCompare Source
This is a security release. All Node.js users should consult the security release summary at:
https://nodejs.org/en/blog/vulnerability/november-2018-security-releases/
for details on patched vulnerabilities.
Fixes for the following CVEs are included in this release:
Notable Changes
0.0.0.0
. It now defaults to127.0.0.1
. Reported by Ben Noordhuis. (CVE-2018-12120 / Ben Noordhuis).server.headersTimeout
. Where headers are not completely received within this period, the socket is destroyed on the next received chunk. In conjunction withserver.setTimeout()
, this aids in protecting against excessive resource retention and possible Denial of Service. Reported by Jan Maybach (liebdich.com). (CVE-2018-12122 / Matteo Collina)path
option in HTTP client requests. Paths containing characters outside of the range\u0021
-\u00ff
will now be rejected with aTypeError
. This behavior can be reverted if necessary by supplying the--security-revert=CVE-2018-12116
command line argument (this is not recommended). Reported as security concern for Node.js 6 and 8 by Arkadiy Tetelman (Lob), fixed by backporting a change by Benno Fünfstück applied to Node.js 10 and later. (CVE-2018-12116 / Matteo Collina)url.parse()
with the'javascript:'
protocol. Reported by Martin Bajanik (Kentico). (CVE-2018-12123 / Matteo Collina)Commits
4beba664e1
] - deps: add -no_rand_screen to openssl s_client (Shigeki Ohtsu) nodejs/node#1836049fe7978f
] - deps: fix asm build error of openssl in x86_win32 (Shigeki Ohtsu) nodejs/node#1389e9becec84d
] - deps: fix openssl assembly error on ia32 win32 (Fedor Indutny) nodejs/node#138978b3a5b2f7
] - deps: copy all openssl header files to include dir (Sam Roberts) #245306120f2429e
] - deps: upgrade openssl sources to 1.0.2q (Sam Roberts) #2453092231a56d9
] - deps,http: http_parser set max header size to 8KB (Matteo Collina) nodejs-private/node-private#143dd20c0186f
] - (SEMVER-MINOR) http: add --security-revert for CVE-2018-12116 (Matteo Collina) nodejs-private/node-private#146811b63c794
] - (SEMVER-MINOR) http: disallow two-byte characters in URL path (Benno Fünfstück) nodejs-private/node-private#146618eebdd17
] - (SEMVER-MINOR) http,https: protect against slow headers attack (Matteo Collina) nodejs-private/node-private#152b78d403da3
] - openssl: fix keypress requirement in apps on win32 (Shigeki Ohtsu) nodejs/node#138935344e87bf
] - src: minor cleanup for node_revert (James M Snell) #14864a9791c9090
] - src: make debugger listen on 127.0.0.1 by default (Ben Noordhuis) nodejs-private/node-private#1489c268d0492
] - url: avoid hostname spoofing w/ javascript protocol (Matteo Collina) nodejs-private/node-private#145v6.14.4
: 2018-08-15, Version 6.14.4 'Boron' (LTS), @rvaggCompare Source
This is a security release. All Node.js users should consult the security release summary at:
https://nodejs.org/en/blog/vulnerability/august-2018-security-releases/
for details on patched vulnerabilities.
Fixes for the following CVEs are included in this release:
Notable Changes
Buffer.write()
for UCS-2 encoding (CVE-2018-12115)Commits
0052926476
] - buffer: avoid overrun on UCS-2 string write (Rod Vagg) nodejs-private/node-private#138dbe6551b89
] - deps: add -no_rand_screen to openssl s_client (Shigeki Ohtsu) #18367829bbcacb
] - deps: fix asm build error of openssl in x86_win32 (Shigeki Ohtsu) #1389cddca629b5
] - deps: fix openssl assembly error on ia32 win32 (Fedor Indutny) #1389e6014aed52
] - deps: copy all openssl header files to include dir (Shigeki Ohtsu) #2232037ddce514d
] - deps: upgrade openssl sources to 1.0.2p (Shigeki Ohtsu) #2232008a150fcca
] - inspector: don't bind to 0.0.0.0 by default (Ben Noordhuis) #2137619b9d7fd77
] - openssl: fix keypress requirement in apps on win32 (Shigeki Ohtsu) #13897ccb0422fc
] - test: fix error messages for OpenSSL-1.0.2p (Shigeki Ohtsu) #2232058b9497ca8
] - test: update certificates and private keys (Fedor Indutny) #221849863e11ea8
] - test: update keys/Makefile to clean and build all (Daniel Bevenius) #19975v6.14.3
: 2018-06-12, Version 6.14.3 'Boron' (LTS), @evanlucasCompare Source
Notable Changes
Commits
7dbcfc6217
] - src: avoid hanging on Buffer#fill 0-length input (Сковорода Никита Андреевич) nodejs-private/node-private#121v6.14.2
: 2018-04-30, Version 6.14.2 'Boron' (LTS), @MylesBorinsCompare Source
Notable Changes
and as such is landing in a Semver-Patch release. (Gabriel Schulhof) #19447
Commits
6ba38e8c2b
] - N-API: Reuse ObjectTemplate instances (Gabriel Schulhof) #1399949d8c2e8ae
] - build: refine static and shared lib build (Yihong Wang) #17604cc7469eec8
] - build: allow x86_64 as a dest_cpu alias for x64 (Rod Vagg) #18052969398d08e
] - crypto: reuse variable instead of reevaluation (Tobias Nießen) #1773571acb5205a
] - doc: Add a missing comma (jiangq) #19555b9b752ef07
] - doc: fix typos on n-api (Kyle Robinson Young) #1938510fe65a0d5
] - doc: fix n-api asynchronous threading docs (Eric Bickle) #190738826f185b0
] - doc: mark NAPI_AUTO_LENGTH as code (Tobias Nießen) #18697e9e5d56121
] - doc: fix exporting a function example (Aonghus O Nia) #186619719b831a3
] - doc: fix typo in n-api.md (Vse Mozhet Byt) #18590fdd50fb35f
] - doc: small typo in n-api.md (iskore) #1855524a2791173
] - doc: remove usage of you in n-api doc (Michael Dawson) #1852874086e19f2
] - doc: remove uannecessary Require (Michael Dawson) #18184fed2136857
] - doc: napi: make header style consistent (Ali Ijaz Sheikh) #18122e04386a363
] - doc: napi: fix unbalanced emphasis (Ali Ijaz Sheikh) #181223d8e1aaf48
] - doc: updates examples to use NULL (Michael Dawson) #18008173f29763e
] - doc: update example in module registration (Franziska Hinkelmann) #17424c6852126fd
] - doc: use "JavaScript" instead of "Javascript" (Rich Trott) #1716335dc8bab9e
] - doc: document common pattern for instanceof checks (Michael Dawson) #1669922490dcb91
] - doc: fix typos in N-API (Swathi Kalahastri) #1691155fabd7337
] - doc: fix a typo in n-api documentation (Vipin Menon) #168790c67f21bcf
] - doc: update to use NAPI_AUTO_LENGTH (Michael Dawson) #161875c2bba0931
] - doc: fix some links (Vse Mozhet Byt) #16202e9a6dffc65
] - doc: fix outdated code sample in n-api.md (rebornix) #15581ca69f1dfe7
] - doc: fix new nits in links (Vse Mozhet Byt) #15449a766802bee
] - doc: fix doc for napi_get_value_string_utf8 (Daniel Taveras) #14529b0f09a2ee6
] - doc: added napi_get_value_string_latin1 (Kyle Farnung) #14678fbcc962727
] - doc: delint (Refael Ackermann) #14707831de617b0
] - doc: document napi_finalize() signature (cjihrig) #142304b9773effa
] - doc: fix some links (Vse Mozhet Byt) #1440036185b343b
] - doc: doc lifetime of n-api last error info (Michael Dawson) #13939cc3a4af7c8
] - doc: fix a few n-api doc issues (Michael Dawson) #136501e91d5804d
] - doc: fix out of date napi_callback doc (XadillaX) #13570c5ae39e401
] - doc: fix napi_create_*_error signatures in n-api (Jamen Marzonie) #1354435a3cbb5dd
] - doc: fix out of date sections in n-api doc (Michael Dawson) #13508a06cc4684f
] - doc: fix typo "ndapi" in n-api.md (Jamen Marz) #1348482f31ff4af
] - doc: add ref to option to enable n-api (Michael Dawson) #1340617fe21e83d
] - doc: fix typo in n-api.md (JongChan Choi) #133232e2905266e
] - doc: fix title/function name mismatch (Michael Dawson) #1312375e91fe5c8
] - doc: add reference to node_api.h in docs (Michael Dawson) #130840f74ee5cbf
] - doc: clarify operation of napi_cancel_async_work (Michael Dawson) #129745b045374ed
] - doc: clarify node.js addons are c++ (Beth Griggs) #128986bcd6d49d5
] - doc: fix broken links in n-api doc (Michael Dawson) #128893e388cf819
] - doc: Add initial documentation for N-API (Michael Dawson) #125494d67369c1b
] - doc: fix various nits (Vse Mozhet Byt) #19743057c80b088
] - doc: move Fedor to TSC Emeritus (Myles Borins) #18752bf72ee667e
] - doc: add mmarchini to collaborators (Matheus Marchini) #18740280af052d8
] - doc: add history for url.parse (Steven) #1868529b0d3b104
] - doc: add devsnek to collaborators (Gus Caplan) #18679dc6dc8232f
] - doc: add section for strategic initiatives (Michael Dawson) #171046b348d4483
] - doc: modify the return value of request.write() (陈刚) #18526dd4d075e51
] - doc: be more explicit in the sypnosis (Tim O. Peters) #179770067bccf6f
] - doc: fix description of createDecipheriv (Tobias Nießen) #18651bc2f0a5120
] - doc: linkify missing types (Vse Mozhet Byt) #1844432089bcbc1
] - doc: streamline README intro (Rich Trott) #1848343839f1601
] - doc: move Brian White to TSC Emeriti list (Rich Trott) #1848227d3c1a0f4
] - doc: add Gibson Fahnestock to TSC (Rich Trott) #1848167fd520539
] - doc: reorder section on updating PR branch (Ali Ijaz Sheikh) #18355f81a69aefe
] - fs: fixcreateReadStream(…, {end: n})
for non-seekable fds (Anna Henningsen) #1932918acad349c
] - http: make socketPath work with no agent (Luigi Pinca) #194251edadebaa0
] - http: allow _httpMessage to be GC'ed (Luigi Pinca) #18865dbe70b744c
] - http: free the parser before emitting 'upgrade' (Luigi Pinca) #1820977a405b92f
] - lib: set process.execPath on OpenBSD (Aaron Bieber) #185433aa5b7d939
] - n-api: add moreint64\_t
tests (Kyle Farnung) #19402abd9fd6797
] - n-api: back up env before finalize (Gabriel Schulhof) #19718e6ccdfbde3
] - n-api: ensure in-module exceptions are propagated (Gabriel Schulhof) #19537c6d0a66ef2
] - n-api: bump version of n-api supported (Michael Dawson) #19497c16a705416
] - n-api: re-write test_make_callback (Gabriel Schulhof) #1944849cd4fad89
] - n-api: add napi_fatal_exception (Mathias Buus) #19337eb29266878
] - n-api: add missing exception checking (Michael Dawson) #193622c1190a93d
] - n-api: take n-api out of experimental (Michael Dawson) #19262ce1447920e
] - n-api: resolve promise in test (Gabriel Schulhof) #19245a8237efaf1
] - n-api: update documentation (Gabriel Schulhof) #19078af62c8fff7
] - n-api: update reference test (Gabriel Schulhof) #19086d2463745a7
] - n-api: fix object test (Gabriel Schulhof) #19039516c287f8e
] - n-api: remove extra reference from test (Gabriel Schulhof) #18542a8dec487f7
] - n-api: add methods to open/close callback scope (Michael Dawson) #18089c09a7134e7
] - n-api: wrap control flow macro in do/while (Ben Noordhuis) #18532b565ba2d82
] - n-api: implement wrapping using private properties (Gabriel Schulhof) #18311d9df8cfe77
] - n-api: change assert ok check to notStrictEqual. (Aaron Kau) #184142e24a0bfe7
] - n-api: throw RangeError napi_create_typedarray() (Jinho Bang) #1803762427bbed9
] - n-api: expose n-api version in process.versions (Michael Dawson) #18067bb99f31f30
] - n-api: throw RangeError in napi_create_dataview() with invalid range (Jinho Bang) #1786965ea7abd55
] - n-api: fix memory leak in napi_async_destroy() (alnyan) #17714d4284a464b
] - n-api: use nullptr instead of NULL in node_api.cc (Daniel Bevenius) #17276f4391b95ee
] - n-api: add helper for addons to get the event loop (Anna Henningsen) #171093c84db624a
] - n-api: unexpose symbols and remove EXTERNAL_NAPI (Gabriel Schulhof) #1623455aab6bf01
] - n-api: check against invalid handle scope usage (Anna Henningsen) #16201169b53e788
] - n-api: use module name macro (Michael Dawson) #1618532412a8ded
] - n-api: make changes for source compatibility (Gabriel Schulhof) #1610200d094f9c3
] - n-api: add check for large strings (Michael Dawson) #156112bc8a59915
] - n-api: fix warning about size_t compare with int (Sampson Gao) #155085e29823d1d
] - n-api: remove n-api module loading flag (Gabriel Schulhof) #14902f31b50cfc7
] - n-api: add optional string length parameters (Sampson Gao) #15343fe87a5944b
] - n-api: napi_is_construct_call->napi_get_new_target (Sampson Gao) #146985eadd6249d
] - n-api: Context for custom async operations (Jason Ginchereau) #1518950cb48b55c
] - n-api: refactor napi_addon_register_func (Taylor Woll) #15088156a8b6069
] - n-api: change async resource name to napi_value (Jason Ginchereau) #146977588eead2a
] - n-api: use AsyncResource for Work tracking (Anna Henningsen) #14697676cff48bd
] - n-api: stop creating references to primitives (Gabriel Schulhof) #152893b4708b025
] - n-api: implement napi_run_script (Gabriel Schulhof) #15216ac5b904808
] - n-api: adds function to adjust external memory (Chris Young) #14310278a2d069f
] - n-api: implement promise (Gabriel Schulhof) #1436573cc251f50
] - n-api: add ability to remove a wrapping (Gabriel Schulhof) #14658951adbef3d
] - n-api: add napi_get_node_version (Anna Henningsen) #14696b29eb693a0
] - n-api: optimize number API performance (Jason Ginchereau) #14573bd032a158a
] - n-api: add support for DataView (Shivanth MP) #1438286b101cb60
] - n-api: re-use napi_env between modules (Gabriel Schulhof) #142171acab66df4
] - n-api: directly create Local from Persistent (Kyle Farnung) #14211f4d1cae634
] - n-api: add fast paths for integer getters (Anna Henningsen) #14393aad36b2cd4
] - n-api: add napi_fatal_error API (Kyle Farnung) #1397157be12ed97
] - n-api: add code parameter to error helpers (Michael Dawson) #13988cd3015408e
] - n-api: wrap test macros in do/while (Kyle Farnung) #140957973bd3e63
] - n-api: Implement stricter wrapping (Gabriel Schulhof) #138725b0c57cfeb
] - n-api: fix warning in test_general (Daniel Bevenius) #14104a5517d80bb
] - n-api: add napi_has_own_property() (cjihrig) #140638e2a26d3d0
] - n-api: fix -Wmaybe-uninitialized compiler warning (Ben Noordhuis) #1405333821c3087
] - n-api: use Maybe version of Object::SetPrototype() (Ben Noordhuis) #1405380cf25a8a5
] - n-api: add napi_delete_property() (cjihrig) #13934cadec3b37e
] - n-api: add napi_delete_element() (cjihrig) #1394997b628ba8e
] - n-api: fix section title typo (Kyle Farnung) #13972c3eb187bd9
] - n-api: avoid crash in napi_escape_scope() (Michael Dawson) #13651919556f27a
] - n-api: enable napi_wrap() to work with any object (Jason Ginchereau) #1325086c0ebf4e2
] - n-api: add napi_get_version (Michael Dawson) #1320770281ba1be
] - n-api: Retain last code when getting error info (Jason Ginchereau) #130878d3162d9e6
] - n-api: remove compiler warning (Anna Henningsen) #13014a128219a48
] - n-api: Handle fatal exception in async callback (Jason Ginchereau) #128382e36365d56
] - n-api: napi_get_cb_info should fill array (Jason Ginchereau) #128637507d1e0e6
] - n-api: remove unnecessary try-catch bracket from certain APIs (Gabriel Schulhof) #1270549d74c648d
] - n-api: Sync with back-compat changes (Jason Ginchereau) #12674bc252509ca
] - n-api: Reference and external tests (Jason Ginchereau) #12551c560db9ece
] - n-api: Enable scope and ref APIs during exception (Jason Ginchereau) #125248287e7671a
] - n-api: tighten null-checking and clean up last error (Gabriel Schulhof) #12539f5cfa09ca4
] - n-api: remove napi_get_value_string_length() (Jason Ginchereau) #12496c44f6ffc3c
] - n-api: fix coverity scan report (Michael Dawson) #123659bf8e9d48c
] - n-api: add string api for latin1 encoding (Sampson Gao) #12368eb51d42d2b
] - n-api: fix -Wmismatched-tags compiler warning (Ben Noordhuis) #12333d82fd2a9a0
] - n-api: implement async helper methods (taylor.woll) #12250c127b71526
] - n-api: change napi_callback to return napi_value (Taylor Woll) #122482a726223ea
] - n-api: cache Symbol.hasInstance (Gabriel Schulhof) #12246db36ca5f91
] - n-api: Update property attrs enum to match JS spec (Jason Ginchereau) #122401e6d3bb841
] - n-api: create napi_env as a real structure (Gabriel Schulhof) #12195f1bdbd17d0
] - n-api: break dep between v8 and napi attributes (Michael Dawson) #12191a9562fe30c
] - n-api: add support for abi stable module API (Jason Ginchereau) #11975aa0fb7761e
] - n-api,test: add int64 bounds tests (Kyle Farnung) #193093f6d80e25c
] - n-api,test: add a new.target test to addons-napi (Taylor Woll) #19236011b53e28f
] - n-api,test: use module name macro (Gabriel Schulhof) #16146a6af97f76c
] - napi: initialize and check status properly (Gabriel Schulhof) #122839b36811d8e
] - napi: supress invalid coverity leak message (Michael Dawson) #12192269c2f3ad9
] - net: remove redundant code from _writeGeneric() (Luigi Pinca) #18429988cca841e
] - process: fix reading zero-length env vars on win32 (Anna Henningsen) #1846372a5710b71
] - readline: update references to archived repository (Tobias Nießen) #17924b20c278a7c
] - src: add napi_handle_scope_mismatch to msg list (neta) #171610ef0b342e9
] - src: replace assert with CHECK_LE in node_api.cc (Ben Noordhuis) #14514a8c73748db
] - src: correct endif comment SRC_NODE_API_H__ (Daniel Bevenius) #131900ca2dad3a6
] - src: free memory before re-setting URLHost value (Ivan Filenko) #18357e54b8e8184
] - stream: cleanup() when unpiping all streams. (陈刚) #182668ab8d6afd6
] - stream: fix y.pipe(x)+y.pipe(x)+y.unpipe(x) (Anna Henningsen) #127468f830ca896
] - stream: remove unreachable code (Luigi Pinca) #1823964c83d7da9
] - stream: simplifysrc.\_readableState
tostate
(陈刚) #182647c58045470
] - test: remove unnecessary timer (cjihrig) #18719c90b77ed5d
] - test: convert new tests to use error types (Jack Horton) #185817f37dc9c48
] - test: improve error message output (Bhavani Shankar) #1849859249a1768
] - test: show pending exception error in napi tests (Ben Wilcox) #18413eceb70b584
] - test: refactor addons-napi/test_exception/test.js (Rich Trott) #18340b3806ecd39
] - test: fixed typos in napi test (furstenheim) #18148a6c277e2eb
] - test: remove ambiguous error messages from test_error (Nicholas Drane) #17812412cc17748
] - test: remove literals that obscure assert messages (Rich Trott) #1764286ddd03608
] - test: add unhandled rejection guard (babygoat) #17275e54b58c024
] - test: replace assert.throws with common.expectsError (Leko) #17445976f32d189
] - test: refactor addons-napi/test_promise/test.js (ka3e) #168142476ab9619
] - test: improve error emssage reporting in testNapiRun.js (Paul Ashfield) #16821d4c04e05f7
] - test: improve assert messages in napi exception test (Paul Blanche) #16820c14207c77b
] - test: add detailed message for assertion failure (Attila Gonda) #16812d31792fcbe
] - test: use default assertion messages (John Byrne) #16808087d213f67
] - test: include actual value in assertion message (Matthew Cantelon) #159359cc435dc85
] - test: improve message for assert.strictEqual() (Jayson D. Henkel) #16013ebbd07dd27
] - test: remove redundant error messages (Christina Chan) #160435bba809e01
] - test: cleaned up assert messages (mrgorbo) #1603253bd313739
] - test: fix race condition in addon test (Kinnan Kwok) #1603737acd806be
] - test: remove template literal (Emily Ford) #1595331c97178c1
] - test: remove unused parameters (Daniil Shakir) #14968b59eddd082
] - test: use regular expressions in throw assertions (Vincent Xue) #1431806b1273464
] - test: changed error message validator (Pratik Jain) #144433f3eaf9961
] - test: replace string concat with template literal (Song, Bintao Garfield) #1426948274213b1
] - test: handle missing V8 tests in n-api test (cjihrig) #141237f126c2069
] - test: add coverage for napi_typeof (Michael Dawson) #13990a0cf9b7a73
] - test: verify napi_get_property() walks prototype (cjihrig) #139611e25062fa1
] - test: add coverage for napi_property_descriptor (Michael Dawson) #13510eb422796cd
] - test: fix build warning in addons-napi/test_object (Jason Ginchereau) #134129d70b43bdc
] - test: consolidate n-api test addons - part2 (Michael Dawson) #1338006cf9480d3
] - test: consolidate n-api test addons (Michael Dawson) #13317652d3218fe
] - test: Make N-API weak-ref GC tests asynchronous (Jason Ginchereau) #131210dac33d4f2
] - test: improve n-api coverage for typed arrays (Michael Dawson) #132441829d25907
] - test: add coverage for napi_has_named_property (Michael Dawson) #13178d89afe8685
] - test: increase n-api constructor coverage (Michael Dawson) #1312471aa251671
] - test: Improve N-API test coverage (Michael Dawson) #13044314f22dcf4
] - test: improve N-API test coverage (Michael Dawson) #13006263a633d5e
] - test: add common.mustCall() to NAPI exception test (Rich Trott) #129595936f7c9bb
] - test: improve n-api array func coverage (Michael Dawson) #12890ce03977f30
] - test: fix napi test_reference for recent V8 (Michaël Zasso) #12864dd7665a68e
] - test: port test for make_callback to n-api (Hitesh Kanwathirtha) #12409f09677fdba
] - test: add coverage for error apis (Michael Dawson) #127291785f3cf44
] - test: fix warning in n-api reference test (Michael Dawson) #127305d2afb2174
] - test: replace indexOf with includes (gwer) #12604fcb019f6ea
] - test: add coverage for napi_cancel_async_work (Michael Dawson) #1257572c5d976f1
] - test: test doc'd napi_get_value_int32 behaviour (Michael Dawson) #12633d9f3e0dd83
] - Revert "test: port test for make_callback to n-api" (James M Snell) #12475a003777d96
] - test: port test for make_callback to n-api (Hitesh Kanwathirtha) #12409577f327d2c
] - test: fix compiler warning in n-api test (Anna Henningsen) #12318f8c2585fe0
] - test: add second argument to assert.throws (Michaël Zasso) #122706bf3d04d6c
] - test: improve test coverage for n-api (Michael Dawson) #12327d799b1cb61
] - test: update a few tests to work on OpenBSD (Aaron Bieber) #18543bc883fb136
] - test: refactor test-http-abort-before-end (cjihrig) #1850844ab85018c
] - test: fix flaky timers-block-eventloop test (Anatoli Papirovski) #185675bcf668f42
] - test: use correct size in test-stream-buffer-list (Luigi Pinca) #18239f3c6febedf
] - test: update references to archived repository (Tobias Nießen) #17924b2a2a55271
] - test: verify the shell option works properly on execFile (jvelezpo) #18384fd7d1990db
] - test: remove orphaned entries from status (Kyle Farnung) #190425ca8dee8cb
] - test: remove n-api intermediate files (Gabriel Schulhof) #1937546aed5800f
] - test: make common.mustNotCall show file:linenumber (Lance Ball) #172574d2efa2415
] - test: remove mark flaky for moved test (Beth Griggs) #19069502781c1d7
] - test: fix spelling in test case comments (Tobias Nießen) #18018b2bf6c873f
] - test,lib,doc: use function declarations (Rich Trott) #12711Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.