From 2e222e69ddf8a6e132ee95ac90922cf0a9bda849 Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Tue, 17 Dec 2019 18:23:12 -0500 Subject: [PATCH] 2019-12-18, Version 13.5.0 (Current) Notable Changes: * cli: * add --trace-exit cli option (legendecas) https://github.com/nodejs/node/pull/30516 * http,https: * increase server headers timeout (Tim Costa) https://github.com/nodejs/node/pull/30071 * readline: * update ansi-regex (Ruben Bridgewater) https://github.com/nodejs/node/pull/30907 * promote \_getCursorPos to public api (Jeremy Albright) https://github.com/nodejs/node/pull/30687 * repl: * add completion preview (Ruben Bridgewater) https://github.com/nodejs/node/pull/30907 * util: * add Set and map size to inspect output (Ruben Bridgewater) https://github.com/nodejs/node/pull/30225 * wasi: * require CLI flag to require() wasi module (Colin Ihrig) https://github.com/nodejs/node/pull/30963 PR-URL: https://github.com/nodejs/node/pull/31010 --- CHANGELOG.md | 3 +- doc/api/cli.md | 2 +- doc/api/readline.md | 2 +- doc/api/util.md | 2 +- doc/changelogs/CHANGELOG_V13.md | 92 +++++++++++++++++++++++++++++++++ src/node_version.h | 6 +-- 6 files changed, 100 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 166336dcb8e7b2..cb947ad02ab90b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,7 +30,8 @@ release. -13.4.0
+13.5.0
+13.4.0
13.3.0
13.2.0
13.1.0
diff --git a/doc/api/cli.md b/doc/api/cli.md index 37065087e17f53..6050e3dc0fb7fe 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -786,7 +786,7 @@ Enables the collection of trace event tracing information. ### `--trace-exit` Prints a stack trace whenever an environment is exited proactively, diff --git a/doc/api/readline.md b/doc/api/readline.md index bae063f0b2193c..b98f7055045ef1 100644 --- a/doc/api/readline.md +++ b/doc/api/readline.md @@ -400,7 +400,7 @@ as well as the column where the terminal caret will be rendered. ### rl.getCursorPos() * Returns: {Object} diff --git a/doc/api/util.md b/doc/api/util.md index 4727cdb88e9678..ae435365b91d16 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -398,7 +398,7 @@ stream.write('With ES6');