Uh oh!
There was an error while loading. Please reload this page.
Update Node.js to v14.2.0 - autoclosed - #685
Closed
renovate[bot] wants to merge 1 commit into
Closed
Conversation
renovateBotforce-pushed
the
renovate/node-14.x
branch
4 times, most recently
from
May 7, 2020 22:46
f1c546a to
0a4465eComparerenovateBotforce-pushed
the
renovate/node-14.x
branch
from
May 7, 2020 22:53
0a4465e to
aaabc2aCompare
This file contains hidden or 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
Sign up for freeto 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.
This PR contains the following updates:
14.1.0->14.2.0Release Notes
nodejs/node
v14.2.0Compare Source
Notable Changes
Track function calls with
assert.CallTracker(experimental)assert.CallTrackeris a new experimental API that allows to track and laterverify the number of times a function was called. This works by creating a
CallTrackerobject and using itscallsmethod to create wrapper functionsthat will count each time they are called. Then the
verifymethod can be usedto assert that the expected number of calls happened:
Additionally,
tracker.report()will return an array which contains informationabout the errors, if there are any:
Contributed by ConorDavenport - #31982.
Console
groupIndentationoptionThe Console constructor (
require('console').Console) now supports different group indentations.This is useful in case you want different grouping width than 2 spaces.
Contributed by rickyes - #32964.
Commits
Semver-minor commits
c87ed21fdf] - (SEMVER-MINOR)assert: port common.mustCall() to assert (ConorDavenport) #31982c49e3ea20c] - (SEMVER-MINOR)console: support console constructor groupIndentation option (rickyes) #32964bc9e413dae] - (SEMVER-MINOR)worker: add stack size resource limit option (Anna Henningsen) #33085Semver-patch commits
f62d92b900] - build: add --error-on-warn configure flag (Daniel Bevenius) #32685db293c47dd] - cluster: fix error on worker disconnect/destroy (Santiago Gimeno) #3279383e165bf88] - crypto: check DiffieHellman p and g params (Ben Noordhuis) #32739e07cca6af6] - crypto: generator must be int32 in DiffieHellman() (Ben Noordhuis) #32739637442fec9] - crypto: key size must be int32 in DiffieHellman() (Ben Noordhuis) #32739c5a4534d5c] - deps: V8: backporte29c62b(Anna Henningsen) #331258325c29e92] - deps: update to uvwasi 0.0.8 (Colin Ihrig) #330782174159598] - esm: improve commonjs hint on module not found (Daniele Belardi) #3190674b0e8c3a8] - http: ensure client request emits close (Robert Nagy) #33178a4ec01c55b] - http: simplify sending header (Robert Nagy) #33200451993ea94] - http: set default timeout in agent keepSocketAlive (Owen Smith) #331273cb1713a59] - http2,doc: minor fixes (Alba Mendez) #28044eab4be1b93] - lib: cosmetic change to builtinLibs list for maintainability (James M Snell) #33106542da430ff] - lib: fix validateport error message when allowZero is false (rickyes) #328615eccf1e9ad] - module: no type module resolver side effects (Guy Bedford) #33086466213d726] - n-api: simplify uv_idle wrangling (Ben Noordhuis) #32997ed45b51642] - path: fix comment grammar (thecodrr) #32942bb2d2f6e0e] - src: remove unused v8 Message namespace (Adrian Estrada) #33180de643bc325] - src: use unique_ptr for CachedData in ContextifyScript::New (Anna Henningsen) #33113f61928ba35] - src: return undefined when validation err == 0 (James M Snell) #33107f4e5ab14da] - src: crypto::UseSNIContext to use BaseObjectPtr (James M Snell) #33107541ea035bf] - src: separate out NgLibMemoryManagerBase (James M Snell) #3310410a87c81cf] - src: remove unnecessary fully qualified names (rickyes) #3307745032a39e8] - stream: fix stream.finished on Duplex (Robert Nagy) #331334cfa7e0716] - stream: simplify Readable push/unshift logic (himself65) #32899bc40ed31b3] - stream: add null check in Readable.from (Pranshu Srivastava) #32873b183d0a18a] - stream: let Duplex re-use Writable properties (Robert Nagy) #33079ec24577406] - v8: use AliasedBuffers for passing heap statistics around (Joyee Cheung) #32929d39254ada6] - vm: fix vm.measureMemory() and introduce execution option (Joyee Cheung) #329884423304ac4] - vm: throw error when duplicated exportNames in SyntheticModule (himself65) #328103866dc1311] - wasi: use free() to release preopen array (Anna Henningsen) #33110d7d9960d38] - wasi: update start() behavior to match spec (Colin Ihrig) #330738d5ac1bbf0] - wasi: rename __wasi_unstable_reactor_start() (Colin Ihrig) #33073c6d632a72a] - worker: unify custom error creation (Anna Henningsen) #33084Documentation commits
6925b358f9] - doc: mark assert.CallTracker experimental (Ruben Bridgewater) #33124413f5d3581] - doc: add missing deprecation not (Robert Nagy) #332037893bde07e] - doc: fix a typo in crypto.generateKeyPairSync() (himself65) #33187d02ced8af6] - doc: add util.types.isArrayBufferView() (Kevin Locke) #3309236d50027af] - doc: clarify when not to run CI on docs (Juan José Arboleda) #33101a99013718c] - doc: fix the spelling error in stream.md (白一梓) #3156123962191c1] - doc: correct Nodejs to Node.js spelling (Nick Schonning) #33088de15edcfc0] - doc: improve worker pool example (Ranjan Purbey) #33082289a5c8dfb] - doc: some grammar fixes (Chris Holland) #3308182e459d9af] - doc: don't check links in tmp dirs (Ben Noordhuis) #32996c5a2f9a02a] - doc: fix markdown parsing on doc/api/os.md (Juan José Arboleda) #33067Other commits
60ebbc4386] - test: update c8 ignore comment (Benjamin Coe) #33151e276524fcc] - test: skip memory usage tests when ASAN is enabled (Anna Henningsen) #3312989ed7a5862] - test: move test-process-title to sequential (Anna Henningsen) #33150af7da46d9b] - test: fix out-of-bound reads from invalid sizeof usage (Anna Henningsen) #331159ccb6b2e8c] - test: add missing calls to napi_async_destroy (Anna Henningsen) #331143c2f608a8d] - test: correct typo in test name (Colin Ihrig) #3308392c7e0620f] - test: check args on SourceTextModule cachedData (Juan José Arboleda) #32956f79ef96fea] - test: mark test flaky on freebsd (Sam Roberts) #32849aced1f5d70] - test: flaky test-stdout-close-catch on freebsd (Sam Roberts) #328496734cc43df] - tools: bump remark-preset-lint-node to 1.15.0 (Rich Trott) #33157a87d371014] - tools: fix redundant-move warning in inspector (Daniel Bevenius) #3268512426f59f5] - tools: update remark-preset-lint-node@1.14.0 (Rich Trott) #330728c40ffc329] - tools: update broken types in type parser (Colin Ihrig) #33068Renovate configuration
📅 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 this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.