diff --git a/CHANGELOG.md b/CHANGELOG.md index 5687eed7f8f1ec..21026a2c705af7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,8 @@ release lines. Select a Node.js version below to view the changelog history: -* [Node.js 10](doc/changelogs/CHANGELOG_V10.md) — **Current** +* [Node.js 11](doc/changelogs/CHANGELOG_V11.md) - **Current** +* [Node.js 10](doc/changelogs/CHANGELOG_V10.md) — Current * [Node.js 9](doc/changelogs/CHANGELOG_V9.md) — End-of-Life * [Node.js 8](doc/changelogs/CHANGELOG_V8.md) — **Long Term Support** * [Node.js 7](doc/changelogs/CHANGELOG_V7.md) — End-of-Life @@ -25,12 +26,16 @@ release.
11Current | 10Current | 8LTS | 6LTS |
---|---|---|---|
+11.0.0 + |
+
10.11.0 10.10.0 10.9.0 diff --git a/doc/api/buffer.md b/doc/api/buffer.md index 11f3795741b3d3..82d04deb1a697c 100644 --- a/doc/api/buffer.md +++ b/doc/api/buffer.md @@ -1197,7 +1197,7 @@ console.log(buf1.equals(buf3)); Print source-able bash completion script for Node.js. diff --git a/doc/api/cluster.md b/doc/api/cluster.md index 54b470e0f0e3d5..baea9ffb207e3f 100644 --- a/doc/api/cluster.md +++ b/doc/api/cluster.md @@ -698,7 +698,7 @@ values are `'rr'` and `'none'`. * `type`: {string} Must be `'rsa'`, `'dsa'` or `'ec'`. * `options`: {Object} @@ -1736,7 +1736,7 @@ a `Promise` for an `Object` with `publicKey` and `privateKey` properties. ### crypto.generateKeyPairSync(type, options) * `type`: {string} Must be `'rsa'`, `'dsa'` or `'ec'`. * `options`: {Object} diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index dc12efb9069f12..cc4a3a01510376 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -227,7 +227,7 @@ to the `constants` property exposed by the relevant module. For instance, ### DEP0009: crypto.pbkdf2 without digest @@ -2118,7 +2118,7 @@ only. Use of `process.binding()` by userland code is unsupported. ### DEP0112: dgram private APIs @@ -2136,7 +2136,7 @@ accessed outside of Node.js core: `Socket.prototype._handle`, ### DEP0113: Cipher.setAuthTag(), Decipher.getAuthTag() @@ -2152,7 +2152,7 @@ release. ### DEP0114: crypto._toBuf() @@ -2166,7 +2166,7 @@ of Node.js core and will be removed in the future. ### DEP0115: crypto.prng(), crypto.pseudoRandomBytes(), crypto.rng() diff --git a/doc/api/errors.md b/doc/api/errors.md index f9005c3bb19940..c602d08c9fac4b 100644 --- a/doc/api/errors.md +++ b/doc/api/errors.md @@ -1929,7 +1929,7 @@ Used when an invalid character is found in an HTTP response status message ### ERR_INDEX_OUT_OF_RANGE A given index was out of the accepted range (e.g. negative offsets). diff --git a/doc/api/fs.md b/doc/api/fs.md index 68f3611225058e..c6a096962ebf08 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -1410,7 +1410,7 @@ fs.copyFileSync('source.txt', 'destination.txt', COPYFILE_EXCL); @@ -180,7 +180,7 @@ added: v0.0.1 ## TextDecoder @@ -189,7 +189,7 @@ The WHATWG `TextDecoder` class. See the [`TextDecoder`][] section. ## TextEncoder diff --git a/doc/api/http.md b/doc/api/http.md index e500db033e4770..d56e3b23a1611e 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -532,7 +532,7 @@ in the response to be dropped and the socket to be destroyed. diff --git a/doc/api/http2.md b/doc/api/http2.md index 698f1bf2d87e58..74f456e673854b 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -224,7 +224,7 @@ session.on('localSettings', (settings) => { #### Event: 'ping' * `payload` {Buffer} The `PING` frame 8-byte payload @@ -684,7 +684,7 @@ are passed through as provided by the user or received from the peer. #### serverhttp2session.origin(...origins) * `origins` { string | URL | Object } One or more URL Strings passed as @@ -764,7 +764,7 @@ client.on('altsvc', (alt, origin, streamId) => { #### Event: 'origin' * `origins` {string[]} @@ -2000,7 +2000,7 @@ server.listen(80); * `filename` {string} Filename to be used to construct the relative require diff --git a/doc/api/process.md b/doc/api/process.md index 07d9b43b55b8c5..850a4687124cff 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -99,7 +99,7 @@ not be the same as what is originally sent. ### Event: 'multipleResolves' * `type` {string} The error type. One of `'resolve'` or `'reject'`. diff --git a/doc/api/timers.md b/doc/api/timers.md index df645c104a286d..0221cc86be0a9a 100644 --- a/doc/api/timers.md +++ b/doc/api/timers.md @@ -25,7 +25,7 @@ functions that can be used to control this default behavior. ### immediate.hasRef() * Returns: {boolean} @@ -72,7 +72,7 @@ control this default behavior. ### timeout.hasRef() * Returns: {boolean} diff --git a/doc/api/url.md b/doc/api/url.md index 33b99398eeeb28..40a673aca8de33 100644 --- a/doc/api/url.md +++ b/doc/api/url.md @@ -969,7 +969,7 @@ pathToFileURL('/some/path%.js'); // Correct: file:///some/path%25 (POSIX) ### Legacy `urlObject` @@ -1078,7 +1078,7 @@ forward-slash characters (`/`) are required following the colon in the @@ -934,8 +934,8 @@ is not supported. @@ -995,8 +995,8 @@ mark. diff --git a/doc/changelogs/CHANGELOG_ARCHIVE.md b/doc/changelogs/CHANGELOG_ARCHIVE.md index 945038201eb2a4..5ee962a21564d2 100644 --- a/doc/changelogs/CHANGELOG_ARCHIVE.md +++ b/doc/changelogs/CHANGELOG_ARCHIVE.md @@ -154,6 +154,7 @@ |
Current | +
---|
+11.0.0 + |
+