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:
12.10.0-alpine
->12.22.3-alpine
12.10.0-alpine
->12.22.3-alpine
Release Notes
nodejs/node
v12.22.3
Compare Source
Notable Changes
Node.js 12.22.2 introduced a regression in the Windows installer on
non-English locales that is being fixed in this release. There is no
need to download this release if you are not using the Windows
installer.
Commits
182f86a4d4
] - win,msi: use localized "Authenticated Users" name (Richard Lau) #39241v12.22.2
Compare Source
This is a security release.
Notable Changes
Vulnerabilities fixed:
Commits
623fd1fcb5
] - deps: uv: cherry-pick99c29c9
(Ben Noordhuis) nodejs-private/node-private#267923b3760f8
] - deps: upgrade npm to 6.14.13 (Ruy Adorno) #38214a52790cba0
] - win,msi: set install directory permission (AkshayK) nodejs-private/node-private#269v12.22.1
Compare Source
This is a security release.
Notable Changes
Vulnerabilities fixed:
Commits
c947f1a0e1
] - deps: upgrade npm to 6.14.12 (Ruy Adorno) #3791851a753c06f
] - deps: update archs files for OpenSSL-1.1.1k (Tobias Nießen) #37939c85a519b48
] - deps: upgrade openssl sources to 1.1.1k (Tobias Nießen) #37939v12.22.0
Compare Source
Notable changes
The legacy HTTP parser is runtime deprecated
The legacy HTTP parser, selected by the
--http-parser=legacy
command lineoption, is deprecated with the pending End-of-Life of Node.js 10.x (where it
is the only HTTP parser implementation provided) at the end of April 2021. It
will now warn on use but otherwise continue to function and may be removed in
a future Node.js 12.x release.
The default HTTP parser based on llhttp is not affected. By default it is
stricter than the now deprecated legacy HTTP parser. If interoperability with
HTTP implementations that send invalid HTTP headers is required, the HTTP
parser can be started in a less secure mode with the
--insecure-http-parser
command line option.
Contributed by Beth Griggs #37603.
ES Modules
ES Modules are now considered stable.
Contributed by Guy Bedford #35781
node-api
Updated to node-api version 8 and added an experimental API to allow retrieval of the add-on file name.
Contributed by Gabriel Schulhof #37652 and #37195.
New API's to control code coverage data collection
v8.stopCoverage()
andv8.takeCoverage()
have been added.Contributed by Joyee Cheung #33807.
New API to monitor event loop utilization by Worker threads
worker.performance.eventLoopUtilization()
has been added.Contributed by Trevor Norris #35664.
Commits
1872625990
] - (SEMVER-MINOR) deps: update to cjs-module-lexer@1.1.0 (Guy Bedford) #37712dfa04d9035
] - deps: V8: cherry-pickbeebee4
(Peter Marshall) #37293bf8733fe22
] - doc: mark modules implementation as stable (Guy Bedford) #357810a35d49f56
] - Revert "embedding: make Stop() stop Workers" (Anna Henningsen) #32623a0b610450a
] - (SEMVER-MINOR) http: runtime deprecate legacy HTTP parser (Beth Griggs) #376032da24ac302
] - lib: add URI handling functions to primordials (Antoine du Hamel) #373947b0ed4ba92
] - module: improve support of data: URLs (Antoine du Hamel) #3739293dd799a86
] - (SEMVER-MINOR) node-api: define version 8 (Gabriel Schulhof) #37652f5692093d3
] - (SEMVER-MINOR) node-api: allow retrieval of add-on file name (Gabriel Schulhof) #371956cef0e3678
] - src,test: add regression test for nested Worker termination (Anna Henningsen) #32623364bf03a68
] - test: fix races in test-performance-eventlooputil (Gerhard Stoebich) #36028d7a4ccdf09
] - test: correct test-worker-eventlooputil (Gerhard Stoebich) #358910f6d44500c
] - test: add cpu-profiler-crash test (Santiago Gimeno) #3729386f34ee18c
] - (SEMVER-MINOR) v8: implement v8.stopCoverage() (Joyee Cheung) #338078ddea3f16d
] - (SEMVER-MINOR) v8: implement v8.takeCoverage() (Joyee Cheung) #33807eec7542781
] - (SEMVER-MINOR) worker: add eventLoopUtilization() (Trevor Norris) #35664v12.21.0
Compare Source
This is a security release.
Notable changes
Vulnerabilities fixed:
Commits
e69177a088
] - deps: update archs files for OpenSSL-1.1.1j (Daniel Bevenius) #374130633ae77e6
] - deps: upgrade openssl sources to 1.1.1j (Daniel Bevenius) #37413922ada7713
] - (SEMVER-MINOR) http2: add unknownProtocol timeout (Daniel Bevenius) nodejs-private/node-private#2461564752d55
] - src: drop localhost6 as allowed host for inspector (Matteo Collina) nodejs-private/node-private#244v12.20.2
Compare Source
Notable changes
Commits
e8a4e560ea
] - async_hooks: fix leak in AsyncLocalStorage exit (Stephen Belanger) #35779427968d266
] - deps: upgrade npm to 6.14.11 (Ruy Adorno) #37173cd9a8106be
] - http: do not loop over prototype in Agent (Michaël Zasso) #364104ac8f37800
] - http2: check write not scheduled in scope destructor (David Halls) #36241v12.20.1
Compare Source
Notable changes
This is a security release.
Vulnerabilities fixed:
Affected Node.js versions are vulnerable to a use-after-free bug in its
TLS implementation. When writing to a TLS enabled socket,
node::StreamBase::Write calls node::TLSWrap::DoWrite with a freshly
allocated WriteWrap object as first argument. If the DoWrite method does
not return an error, this object is passed back to the caller as part of
a StreamWriteResult structure. This may be exploited to corrupt memory
leading to a Denial of Service or potentially other exploits
Affected versions of Node.js allow two copies of a header field in a
http request. For example, two Transfer-Encoding header fields. In this
case Node.js identifies the first header field and ignores the second.
This can lead to HTTP Request Smuggling
(https://cwe.mitre.org/data/definitions/444.html).
This is a vulnerability in OpenSSL which may be exploited through Node.js.
You can read more about it in
https://www.openssl.org/news/secadv/20201208.txt
Commits
5de5354918
] - deps: update http-parser to http-parser@ec8b5ee
(Richard Lau) nodejs-private/node-private#2362eacfbec68
] - deps: upgrade npm to 6.14.10 (Ruy Adorno) #3657196ec482d90
] - deps: update archs files for OpenSSL-1.1.1i (Myles Borins) #365217ec0eb408b
] - deps: upgrade openssl sources to 1.1.1i (Myles Borins) #3652176ea9c5a7a
] - deps: upgrade npm to 6.14.9 (Myles Borins) #36450420244e4d9
] - http: unsetF_CHUNKED
on newTransfer-Encoding
(Matteo Collina) nodejs-private/node-private#2364a30ac8c75
] - http: add test for http transfer encoding smuggling (Richard Lau) nodejs-private/node-private#23692d430917a
] - http: unsetF_CHUNKED
on newTransfer-Encoding
(Fedor Indutny) nodejs-private/node-private#2365b00de7d67
] - src: retain pointers to WriteWrap/ShutdownWrap (James M Snell) nodejs-private/node-private#230v12.20.0
Compare Source
Notable Changes
crypto: update certdata to NSS 3.56 nodejs/node#35546
deps: update llhttp to 2.1.3 nodejs/node#35435
deps: upgrade to libuv 1.40.0 nodejs/node#35333
doc: add aduh95 to collaborators nodejs/node#35542
fs: add .ref() and .unref() methods to the StatWatcher and FSWatcher nodejs/node#33134
http: added scheduling option to http agent nodejs/node#33278
module: exports patterns nodejs/node#34718
module: CJS exports detection for all CJS modules nodejs/node#35249
n-api: add more property defaults nodejs/node#35214
src: move node_contextify to modern THROW_ERR_* nodejs/node#35470
src: move node_process to modern THROW_ERR* nodejs/node#35472
src: expose v8::Isolate setup callbacks nodejs/node#35512
Commits
c6eb0b62d9
] - benchmark: ignore build artifacts for napi addons (Richard Lau) #35970f3a045720c
] - build: fuzzer that targets node::LoadEnvironment() (davkor) #3484448bc3fcd4c
] - build: improved release lint error message (Shelley Vohr) #355232e766a6adf
] - console: add Symbol.toStringTag property (Leko) #3539990244362cc
] - crypto: fix KeyObject garbage collection (Anna Henningsen) #3548142f64eba89
] - crypto: update certdata to NSS 3.56 (Shelley Vohr) #35546a6f58c0888
] - crypto: set env values in KeyObject Deserialize method (ThakurKarthik) #354166539cf2725
] - deps: upgrade to cjs-module-lexer@1.0.0 (Guy Bedford) #35928bdcc77bdf4
] - deps: update to cjs-module-lexer@0.5.2 (Guy Bedford) #359015b8d3c74e8
] - deps: upgrade to cjs-module-lexer@0.5.0 (Guy Bedford) #35871d7f0e3e5f0
] - deps: update to cjs-module-lexer@0.4.3 (Guy Bedford) #357450a1474d9df
] - deps: update llhttp to 2.1.3 (Fedor Indutny) #35435cf07a8695a
] - deps: upgrade to libuv 1.40.0 (Colin Ihrig) #35333cc11464b4e
] - deps: upgrade to c-ares v1.16.1 (Shelley Vohr) #353245405e62eaf
] - deps: update to uvwasi 0.0.11 (Colin Ihrig) #3510444c739cc49
] - deps: V8: cherry-pick6be2f6e
(Benjamin Coe) #35055b78a1a186f
] - doc: update releaser in v12.18.4 changelog (Beth Griggs) #352171cd1d0159d
] - doc: move package.import content higher (Myles Borins) #3553579f3c323f6
] - doc: fix broken links in modules.md (Rich Trott) #35182b4941cfaec
] - doc: make minor improvements to module.md (Rich Trott) #350837dc3b74c34
] - doc: add ESM examples inmodule
API doc page (Antoine du HAMEL) #34875f0b06b64ff
] - doc: move module core module doc to separate page (Antoine du HAMEL) #3474777555d8500
] - doc: put landing specifics in details tag (Rich Trott) #35296b50b34b30e
] - doc: put release script specifics in details (Myles Borins) #352601a8f3a844e
] - doc: copyedit esm.md (Rich Trott) #35414d99120040c
] - doc: error code fix in resolver spec (Guy Bedford) #34998df52814113
] - doc: document Buffer.concat may use internal pool (Andrey Pechkurov) #3554142a587f9ba
] - doc: use test username instead of real (Pooja D.P) #35611bfff4fc3c9
] - doc: revise description of process.ppid (Pooja D.P) #35589a9ac75480f
] - doc: add symlink information for process.execpath (Pooja D.P) #355905fea51b66c
] - doc: add PoojaDurgad as a triager (Pooja D.P) #35153a0b541c3e0
] - doc: use kbd element in process doc (Rich Trott) #35584992355cdf9
] - doc: simplify wording in tracing APIs doc (Pooja D.P) #3555605db4b8343
] - doc: improve SIGINT error text (Rich Trott) #3555842c479572c
] - doc: use sentence case for class property (Rich Trott) #35540fb9bb05ee2
] - doc: fix util.inspect change history (Antoine du Hamel) #355286952c45202
] - doc: add aduh95 to collaborators (Antoine du Hamel) #35542b5f752528b
] - doc: update AUTHORS list (Anna Henningsen) #35280370f8e3afd
] - doc: update sxa's email address to Red Hat from IBM (Stewart X Addison) #35442edf3fbbd14
] - doc: update contact information for @BethGriggs (Beth Griggs) #354518be289e58c
] - doc: update contact information for richardlau (Richard Lau) #3545042c0dfcc23
] - doc: importable node protocol URLs (Bradley Meck) #35434c192af66e7
] - doc: unhide resolver spec (Guy Bedford) #35358b0e43c718c
] - doc: add gpg key export directions to releases doc (Danielle Adams) #35298884755f1e5
] - doc: simplify circular dependencies text in modules.md (Rich Trott) #3512685c47d753c
] - doc: avoid double-while sentence in perf_hooks.md (Rich Trott) #3507868c5ee45a2
] - doc: update fs promise-based examples (Richard Lau) #3576066f8730441
] - doc: add history entry for exports patterns (Antoine du Hamel) #35410a7e66b635d
] - doc: fix conditional exports flag removal version (Antoine du Hamel) #354289197a6651d
] - doc: copyedit packages.md (Rich Trott) #35427f507ca9e21
] - doc: packages docs feedback (Guy Bedford) #353705330930128
] - doc: refine require/import conditions constraints (Guy Bedford) #353115f0b1571a7
] - doc: edit subpath export patterns introduction (Rich Trott) #35254d6a13a947e
] - doc: document support for package.json fields (Antoine du HAMEL) #349707c1700e143
] - doc: move package config docs to separate page (Antoine du HAMEL) #347487510667d87
] - doc: rename module pages (Antoine du HAMEL) #34663b644ab6ae6
] - doc: fix line length in worker_threads.md (Jucke) #34419fb9b66bdd7
] - doc: fix typos in n-api, tls and worker_threads (Jucke) #344191f34230373
] - doc,esm: document experimental warning removal (Antoine du Hamel) #35750985b96a7d5
] - doc,esm: add history support info (Antoine du Hamel) #35395548137f4ec
] - errors: simplify ERR_REQUIRE_ESM message generation (Rich Trott) #35123f22672de18
] - errors: improve ERR_INVALID_OPT_VALUE error (Denys Otrishko) #346717a98961a26
] - esm: fix hook mistypes and links to types (Derek Lewis) #342400f757bc2df
] - esm: use "node:" namespace for builtins (Guy Bedford) #35387b48473228c
] - events: assume an EventEmitter if emitter.on is a function (Luigi Pinca) #3581819d711391e
] - fs: simplify realpathSync (himself65) #35413decfc2ae5c
] - fs: add .ref() and .unref() methods to watcher classes (rickyes) #33134cce464513e
] - http: added scheduling option to http agent (delvedor) #33278d477e2e147
] - http: only set keep-alive when not exists (atian25@qq.com) #35138f10d721737
] - http: reset headers timeout on headers complete (Robert Nagy) #34578c8a778985b
] - http2: avoid unnecessary buffer resize (Denys Otrishko) #34480b732c92e3d
] - http2: use and support non-empty DATA frame with END_STREAM flag (Carlos Lopez) #33875bfce0eb13a
] - Revert "http2: streamline OnStreamRead streamline memory accounting" (Rich Trott) #34315e85ca7af43
] - http2: wait for session socket writable end on close/destroy (Denys Otrishko) #308542471197099
] - http2: wait for session to finish writing before destroy (Denys Otrishko) #3085482af8acc8e
] - http2,doc: minor fixes (Alba Mendez) #28044a3e8829d4a
] - inspector: do not hardcode Debugger.CallFrameId in tests (Dmitry Gozman) #355706efa140f8f
] - lib: change http client path assignment (Yohanan Baruchel) #35508ad7281b081
] - lib: use remaining typed arrays from primordials (Michaël Zasso) #35499a9a606f06b
] - lib: use full URL to GitHub issues in comments (Rich Trott) #34686ea239392c2
] - module: cjs-module-lexer@0.4.1 big endian fix (Guy Bedford) #35634354f358c1b
] - module: use Wasm CJS lexer when available (Guy Bedford) #3558376f76017bf
] - module: fix builtin reexport tracing (Guy Bedford) #35500992af4e112
] - module: fix specifier resolution option value (himself65) #350981ff956f49e
] - module: remove experimental modules warning (Guy Bedford) #3197441af927efb
] - module: exports pattern support (Guy Bedford) #34718a18d0df33a
] - module: update to cjs-module-lexer@0.4.0 (Guy Bedford) #355016ca8fb552d
] - module: refine module type mismatch error cases (Guy Bedford) #354269eb1fa1924
] - module: named exports for CJS via static analysis (Guy Bedford) #35249a93ca2d494
] - n-api: revert change to finalization (Michael Dawson) #357775faaa603d8
] - n-api: support for object freeze/seal (Shelley Vohr) #35359d938e8508b
] - n-api: add more property defaults (Gerhard Stoebich) #3521418f01ddcb5
] - repl: improve static import error message in repl (Myles Borins) #3358870768ce109
] - repl: give repl entries unique names (Bradley Meck) #34372e9bee3950c
] - src: move node_contextify to modern THROW_ERR_* (James M Snell) #35470b741f2ff84
] - src: move node_process to modern THROW_ERR* (James M Snell) #354722d5393bb28
] - src: fix freeing unintialized pointer bug in ParseSoaReply (Aastha Gupta) #35502dec004f742
] - src: expose v8::Isolate setup callbacks (Shelley Vohr) #355127f8834f76c
] - src: more idiomatic error pattern in node_wasi (James M Snell) #35493ade27b732b
] - src: use env->ThrowUVException in pipe_wrap (James M Snell) #35493e70b05208f
] - src: remove invalid ToLocalChecked in EmitBeforeExit (Anna Henningsen) #35484cd80195524
] - src: make MakeCallback() check can_call_into_js before getting method (Anna Henningsen) #354248a1091648c
] - stream: destroy wrapped streams on error (Robert Nagy) #34102fdc67ebf5f
] - test: replace annonymous functions with arrow (Pooja D.P) #34921c3e1bf78c4
] - test: add wasi readdir() test (Colin Ihrig) #35202607f3c5d84
] - test: fix comment about DNS lookup test (Tobias Nießen) #3508002787ce5d1
] - test: add ALPNProtocols option to clientOptions (Luigi Pinca) #3548212d76b8e8e
] - tls: reset secureConnecting on client socket (David Halls) #33209adf4f90bce
] - tools: refloat 7 Node.js patches to cpplint.py (Rich Trott) #355691173efca27
] - tools: bump cpplint.py to 1.4.6 (Rich Trott) #3556909552670fe
] - tools: add missing uv_setup_argv() calls (Anna Henningsen) #35491ae149232a1
] - tools: exclude gyp from markdown link checker (Michaël Zasso) #35423a9ce9b2614
] - tools: update ESLint to 7.10.0 (Colin Ihrig) #35366bc7da0c22c
] - tools: ignore build folder when checking links (Ash Cripps) #35315f29717437f
] - tools,doc: enforce alphabetical order for md refs (Antoine du Hamel) #3524411b10d7d1f
] - tools,doc: upgrade dependencies (Antoine du Hamel) #35244v12.19.1
Compare Source
Notable changes
This is a security release.
Vulnerabilities fixed:
Commits
022899e1d5
] - deps: cherry-pick0d252eb
from upstream c-ares (Michael Dawson) nodejs-private/node-private#231v12.19.0
Compare Source
Notable Changes
d065334d42
] - (SEMVER-MINOR) module: package "imports" field (Guy Bedford) #34117b9d0f73c7c
] - (SEMVER-MINOR) n-api: create N-API version 7 (Gabriel Schulhof) #3519953c9975673
] - (SEMVER-MINOR) crypto: add randomInt function (Oli Lalonde) #346009b53b4ddf2
] - deps: upgrade to libuv 1.39.0 (Colin Ihrig) #34915e9a8f0c127
] - doc: add Ricky Zhou to collaborators (rickyes) #34676260914c432
] - doc: add release key for Ruy Adorno (Ruy Adorno) #3462839f90346f8
] - doc: add DerekNonGeneric to collaborators (Derek Lewis) #346027ef1f6a71d
] - deps: upgrade npm to 6.14.7 (claudiahdz) #34468437b092eed
] - doc: add AshCripps to collaborators (Ash Cripps) #34494319d570a47
] - doc: add HarshithaKP to collaborators (Harshitha K P) #34417d60b13f2e3
] - zlib: switch to lazy init for zlib streams (Andrey Pechkurov) #34048ae60f50a69
] - doc: add rexagod to collaborators (Pranshu Srivastava) #3445739dea8f70d
] - doc: add release key for Richard Lau (Richard Lau) #34397a2107101be
] - doc: add danielleadams to collaborators (Danielle Adams) #34360c4f0cb65a1
] - doc: add sxa as collaborator (Stewart X Addison) #34338e9a514d13e
] - deps: upgrade to libuv 1.38.1 (Colin Ihrig) #34187a04d76d2ad
] - doc: add ruyadorno to collaborators (Ruy Adorno) #34297c9bd1a7d8a
] - (SEMVER-MINOR) module: deprecate module.parent (Antoine du HAMEL) #322170a927216cf
] - (SEMVER-MAJOR) doc: deprecate process.umask() with no arguments (Colin Ihrig) #32499Commits
27ceec0bc6
] - Forces Powershell to use tls1.2 (Bartosz Sosnowski) #33609d73b8346b8
] - (SEMVER-MINOR) assert: port common.mustCall() to assert (ConorDavenport) #31982148383fdc3
] - async_hooks: avoid GC tracking of AsyncResource in ALS (Gerhard Stoebich) #346530a4401713a
] - async_hooks: avoid unneeded AsyncResource creation (Gerhard Stoebich) #3461607968ac456
] - async_hooks: improve property descriptors in als.bind (Gerhard Stoebich) #3462045d2f4dd3c
] - (SEMVER-MINOR) async_hooks: add AsyncResource.bind utility (James M Snell) #3457461683e1763
] - async_hooks: don't read resource if ALS is disabled (Gerhard Stoebich) #3461795e0f8ef52
] - async_hooks: execute destroy hooks earlier (Gerhard Stoebich) #34342cfc769b048
] - async_hooks: fix resource stack for deep stacks (Anna Henningsen) #34573b2241e9fc1
] - async_hooks: improve resource stack performance (Anna Henningsen) #3431924fddba59b
] - benchmark: add benchmark script for resourceUsage (Yash Ladha) #34691145691b83e
] - benchmark: always throw the same Error instance (Anna Henningsen) #345237bc26c2e8c
] - bootstrap: correct --frozen-intrinsics override fix (Guy Bedford) #350416ee800f0c3
] - (SEMVER-MINOR) buffer: also alias BigUInt methods (Anna Henningsen) #349609d07217d2c
] - (SEMVER-MINOR) buffer: alias UInt ➡️ Uint in buffer methods (Anna Henningsen) #347298f2d2aa9e3
] - build: increase API requests for stale action (Phillip Johnsen) #35235ff0b1000d1
] - build: filter issues & PRs to auto close by matching on stalled label (Phillip Johnsen) #3515906c5120eef
] - (SEMVER-MINOR) build: add build flag for OSS-Fuzz integration (davkor) #347619107595acd
] - build: comment about auto close when stalled via with github action (Phillip Johnsen) #3455560774c08e3
] - build: close stalled issues and PRs with github action (Phillip Johnsen) #345559bb681458c
] - build: use autorebase option for git node land (Denys Otrishko) #349698d27998bd6
] - build: use latest node-core-utils from npm (Denys Otrishko) #34969d2f44a74f8
] - build: add support for build on arm64 (Evan Lucas) #34238ea56aea452
] - build: run link checker in linter workflow (Richard Lau) #348109e1f8fcb65
] - build: implement a Commit Queue in Actions (Mary Marchini) #34112380600dbe5
] - build: set --v8-enable-object-print by default (Mary Marchini) #34705191d0ae311
] - build: add flag to build V8 with OBJECT_PRINT (Mary Marchini) #32834f6ad59b60f
] - build: do not run auto-start-ci on forks (Evan Lucas) #3465090a44e198b
] - build: increase startCI verbosity and fix job name (Mary Marchini) #346357886e763f5
] - build: don't run auto-start-ci on push (Mary Marchini) #34588544a722de4
] - build: fix auto-start-ci script path (Mary Marchini) #34588e51b2680a8
] - build: auto start Jenkins CI via PR labels (Mary Marchini) #34089343894f990
] - build: toolchain.gypi and node_gyp.py cleanup (iandrc) #34268e7252df0b9
] - build: fix test-ci-js task in Makefile (Rich Trott) #34433833474f844
] - build: do not run benchmark tests on 'make test' (Rich Trott) #34434f14775e492
] - build: add benchmark tests to CI runs (Rich Trott) #34288acf63b009d
] - build,deps: add gen-openssl target (Evan Lucas) #34642b977672edc
] - build,tools: fix cmd_regen_makefile (Daniel Bevenius) #3425517a098b9e6
] - (SEMVER-MINOR) cli: add alias for report-directory to make it consistent (Ash Cripps) #33587b329a95c01
] - console: document the behavior of console.assert() (iandrc) #34501ed72d83802
] - crypto: simplify KeyObject constructor (Rich Trott) #35064b828560908
] - (SEMVER-MINOR) crypto: allow KeyObjects in postMessage (Tobias Nießen) #333602b7273b2ad
] - crypto: improve invalid arg type message for randomInt() (Rich Trott) #35089bf5a85b43a
] - crypto: improve randomInt out-of-range error message (Rich Trott) #350885ef9ee4254
] - crypto: fix randomInt range check (Tobias Nießen) #35052921129c1d8
] - crypto: align parameter names with documentation (Rich Trott) #3505453c9975673
] - (SEMVER-MINOR) crypto: add randomInt function (Oli Lalonde) #3460039dc4086fe
] - crypto: avoid unitializing ECDH objects on error (Tobias Nießen) #34302865f8e85c4
] - crypto: add OP flag constants added in OpenSSL v1.1.1 (Mateusz Krawczuk) #33929bf4e778e50
] - crypto: move typechecking for timingSafeEqual into C++ (Anna Henningsen) #341414ff6c77e17
] - deps: V8: cherry-picke06ace6
(Anna Henningsen) #346735db8b357ce
] - deps: V8: cherry-pickeec10a2
(Stephen Belanger) #33778e9e3390b18
] - deps: V8: backport3f071e3
(Milad Fa) #3530557564eb86d
] - deps: V8: cherry-pick7173685
(Daniel Bevenius) #35205481cced20e
] - deps: update brotli to v1.0.9 (Anna Henningsen) #34937f6c0b270e0
] - deps: add openssl support for arm64 (Evan Lucas) #342389b53b4ddf2
] - deps: upgrade to libuv 1.39.0 (Colin Ihrig) #34915f87b6c0f7c
] - deps: upgrade npm to 6.14.8 (Ruy Adorno) #34834f710dbf1b7
](https://tConfiguration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR has been generated by WhiteSource Renovate. View repository job log here.