diff --git a/CHANGELOG.md b/CHANGELOG.md index a3e70dac2c848a..38efc53174665b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ Select a Node.js version below to view the changelog history: +* [Node.js 17](doc/changelogs/CHANGELOG\_V17.md) **Current** * [Node.js 16](doc/changelogs/CHANGELOG\_V16.md) **Current** * [Node.js 15](doc/changelogs/CHANGELOG\_V15.md) End-of-Life * [Node.js 14](doc/changelogs/CHANGELOG\_V14.md) **Long Term Support** @@ -27,11 +28,15 @@ release.
17Current | 16Current | 14LTS | 12LTS |
---|---|---|---|
+17.0.0 + |
16.11.1 16.11.0 diff --git a/doc/abi_version_registry.json b/doc/abi_version_registry.json index 94193b26706b79..85b79d1096d80c 100644 --- a/doc/abi_version_registry.json +++ b/doc/abi_version_registry.json @@ -1,6 +1,6 @@ { "NODE_MODULE_VERSION": [ - { "modules": 102,"runtime": "node", "variant": "v8_9.5", "versions": "17.0.0-pre" }, + { "modules": 102,"runtime": "node", "variant": "v8_9.5", "versions": "17.0.0" }, { "modules": 101,"runtime": "electron", "variant": "electron", "versions": "17" }, { "modules": 100,"runtime": "node", "variant": "v8_9.4", "versions": "17.0.0-pre" }, { "modules": 99, "runtime": "electron", "variant": "electron", "versions": "16" }, diff --git a/doc/api/cli.md b/doc/api/cli.md index 74057706bf8d51..1ef013dd019303 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -623,7 +623,7 @@ Silence deprecation warnings. ### `--no-extra-info-on-fatal-exception` Hide extra information on fatal exception that causes exit. diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index ef73392a52b74d..6acd98db64d60e 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -2707,7 +2707,7 @@ Use `fs.rm(path, { recursive: true, force: true })`, ### DEP0148: Folder mappings in `"exports"` (trailing `"/"`) diff --git a/doc/api/dgram.md b/doc/api/dgram.md index 53df74120849d5..d23249afd955a6 100644 --- a/doc/api/dgram.md +++ b/doc/api/dgram.md @@ -468,7 +468,7 @@ if the socket is not connected. > Stability: 1 - Experimental diff --git a/doc/api/globals.md b/doc/api/globals.md index 701ab79d57b733..abb992ebe9a87f 100644 --- a/doc/api/globals.md +++ b/doc/api/globals.md @@ -383,7 +383,7 @@ added: v0.0.1 ## `DOMException` diff --git a/doc/api/http.md b/doc/api/http.md index d059469de294c6..9c9d8303627550 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -407,7 +407,7 @@ body which has been transmitted are equal or not. ### Event: `'abort'` > Stability: 0 - Deprecated. Listen for the `'close'` event instead. @@ -648,7 +648,7 @@ in the response to be dropped and the socket to be destroyed. ### `request.aborted` > Stability: 0 - Deprecated. Listen for `'close'` event instead. @@ -2011,7 +2011,7 @@ Indicates that the underlying connection was closed. ### `message.aborted` > Stability: 0 - Deprecated. Check `message.destroyed` from {stream.Readable}. diff --git a/doc/api/readline.md b/doc/api/readline.md index 6c782fcc2d4364..b9e4c286994d94 100644 --- a/doc/api/readline.md +++ b/doc/api/readline.md @@ -536,14 +536,14 @@ line prompts are included in the calculations. ## Promises API > Stability: 1 - Experimental ### Class: `readlinePromises.Interface` * Extends: {readline.InterfaceConstructor} @@ -556,7 +556,7 @@ and is read from, the `input` stream. #### `rl.question(query[, options])` * `query` {string} A statement or query to write to `output`, prepended to the @@ -602,12 +602,12 @@ setTimeout(() => ac.abort(), 10000); ### Class: `readlinePromises.Readline` #### `new readlinePromises.Readline(stream[, options])` * `stream` {stream.Writable} A [TTY][] stream. @@ -616,7 +616,7 @@ added: REPLACEME #### `rl.clearLine(dir)` * `dir` {integer} @@ -633,7 +633,7 @@ was passed to the constructor. #### `rl.clearScreenDown()` * Returns: this @@ -646,7 +646,7 @@ was passed to the constructor. #### `rl.commit()` * Returns: {Promise} @@ -656,7 +656,7 @@ The `rl.commit()` method sends all the pending actions to the associated #### `rl.cursorTo(x[, y])` * `x` {integer} @@ -670,7 +670,7 @@ was passed to the constructor. #### `rl.moveCursor(dx, dy)` * `dx` {integer} @@ -685,7 +685,7 @@ was passed to the constructor. #### `rl.rollback()` * Returns: this @@ -695,7 +695,7 @@ sending it to the associated `stream`. ### `readlinePromises.createInterface(options)` * `options` {Object} @@ -797,7 +797,7 @@ added: v0.1.104 diff --git a/doc/api/stream.md b/doc/api/stream.md index 7042cbb1180c5f..ca183d14314633 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -2108,7 +2108,7 @@ Returns whether the stream has been read from or cancelled. ### `stream.Readable.toWeb(streamReadable)` > Stability: 1 - Experimental @@ -2118,7 +2118,7 @@ added: REPLACEME ### `stream.Writable.fromWeb(writableStream[, options])` > Stability: 1 - Experimental @@ -2133,7 +2133,7 @@ added: REPLACEME ### `stream.Writable.toWeb(streamWritable)` > Stability: 1 - Experimental @@ -2171,7 +2171,7 @@ A utility method for creating duplex streams. ### `stream.Duplex.fromWeb(pair[, options])` > Stability: 1 - Experimental @@ -2190,7 +2190,7 @@ added: REPLACEME ### `stream.Duplex.toWeb(streamDuplex)` > Stability: 1 - Experimental diff --git a/doc/api/url.md b/doc/api/url.md index 1f3f510a18e029..e6415e2a59925b 100644 --- a/doc/api/url.md +++ b/doc/api/url.md @@ -1386,7 +1386,7 @@ forward-slash characters (`/`) are required following the colon in the #### `new CompressionStream(format)` * `format` {string} One of either `'deflate'` or `'gzip'`. #### `compressionStream.readable` * Type: {ReadableStream} #### `compressionStream.writable` * Type: {WritableStream} ### Class: `DecompressionStream` #### `new DecompressionStream(format)` * `format` {string} One of either `'deflate'` or `'gzip'`. #### `decompressionStream.readable` * Type: {ReadableStream} #### `decompressionStream.writable` * Type: {WritableStream} diff --git a/doc/changelogs/CHANGELOG_IOJS.md b/doc/changelogs/CHANGELOG_IOJS.md index 57b3946b201d08..63466d6bb993cf 100644 --- a/doc/changelogs/CHANGELOG_IOJS.md +++ b/doc/changelogs/CHANGELOG_IOJS.md @@ -62,6 +62,7 @@ |
Current | +
---|
+17.0.0 + |
+