diff --git a/CHANGELOG.md b/CHANGELOG.md index 559e44c1d1079f..b9aebbe7dc5602 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,10 @@ Select a Node.js version below to view the changelog history: -* [Node.js 12](doc/changelogs/CHANGELOG_V12.md) - **Current** +* [Node.js 13](doc/changelogs/CHANGELOG_V13.md) - **Current** +* [Node.js 12](doc/changelogs/CHANGELOG_V12.md) - **Long Term Support** * [Node.js 11](doc/changelogs/CHANGELOG_V11.md) - End-of-Life -* [Node.js 10](doc/changelogs/CHANGELOG_V10.md) — **Long Term Support** +* [Node.js 10](doc/changelogs/CHANGELOG_V10.md) — Long Term Support * [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 @@ -22,12 +23,16 @@ release.
12Current | +13Current | +12LTS | 10LTS | 8LTS |
---|---|---|---|---|
+ 13.0.0 + |
+
12.12.0 12.11.1 12.11.0 diff --git a/doc/abi_version_registry.json b/doc/abi_version_registry.json index bd437ddd076821..3234b95fd1fe2e 100644 --- a/doc/abi_version_registry.json +++ b/doc/abi_version_registry.json @@ -1,6 +1,6 @@ { "NODE_MODULE_VERSION": [ - { "modules": 79, "runtime": "node", "variant": "v8_7.8", "versions": "13.0.0-pre" }, + { "modules": 79, "runtime": "node", "variant": "v8_7.8", "versions": "13" }, { "modules": 78, "runtime": "node", "variant": "v8_7.7", "versions": "13.0.0-pre" }, { "modules": 77, "runtime": "node", "variant": "v8_7.6", "versions": "13.0.0-pre" }, { "modules": 76, "runtime": "electron", "variant": "electron", "versions": "8" }, diff --git a/doc/api/cli.md b/doc/api/cli.md index ed2a0f1b1ce9a5..13c0b102837af3 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -1123,7 +1123,7 @@ to an empty string (`''` or `' '`) disables persistent REPL history. ### `NODE_REPL_EXTERNAL_MODULE=file` Path to a Node.js module which will be loaded in place of the built-in REPL. diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index e4c53d57c754d3..ca832060e19de8 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -2441,7 +2441,7 @@ Node.js versions. ### DEP0129: ChildProcess._channel diff --git a/doc/api/http.md b/doc/api/http.md index 1870de25941cb8..e52da24779bdcf 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -567,7 +567,7 @@ been aborted. ### request.connection > Stability: 0 - Deprecated. Use [`request.socket`][]. @@ -679,7 +679,7 @@ request.removeHeader('Content-Type'); ### request.reusedSocket * {boolean} Whether the request is send through a reused socket. @@ -1104,7 +1104,7 @@ Limits maximum incoming headers count. If set to 0, no limit will be applied. @@ -1128,7 +1128,7 @@ explicitly. @@ -1222,7 +1222,7 @@ will result in a [`TypeError`][] being thrown. ### response.connection > Stability: 0 - Deprecated. Use [`response.socket`][]. diff --git a/doc/api/http2.md b/doc/api/http2.md index 9b30a694ce5ca1..fbd51fd86a62d3 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -1742,7 +1742,7 @@ server.on('stream', (stream, headers, flags) => { @@ -1771,7 +1771,7 @@ closed, although the server has already stopped allowing new sessions. See @@ -1939,7 +1939,7 @@ error will be thrown. > Stability: 0 - Deprecated. Use [`request.socket`][]. @@ -3004,7 +3004,7 @@ will result in a [`TypeError`][] being thrown. #### response.connection > Stability: 0 - Deprecated. Use [`response.socket`][]. diff --git a/doc/api/n-api.md b/doc/api/n-api.md index bbec2cc3ac75c3..cefb66b614808a 100644 --- a/doc/api/n-api.md +++ b/doc/api/n-api.md @@ -167,7 +167,7 @@ listed as supporting a later version. | v10.x | | | v10.0.0 | v10.16.0 | | | v11.x | | | v11.0.0 | v11.8.0 | | | v12.x | | | | v12.0.0 | v12.11.0 | -| v13.x | | | | | REPLACEME | +| v13.x | | | | | v13.0.0 | \* Indicates that the N-API version was released as experimental @@ -3152,7 +3152,7 @@ defined in [Section 7.2.14][] of the ECMAScript Language Specification. ### napi_detach_arraybuffer ```C diff --git a/doc/api/util.md b/doc/api/util.md index fdb90505b1c0ec..5cb5786a5274de 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -398,7 +398,7 @@ stream.write('With ES6'); > Stability: 1 - Experimental @@ -626,7 +626,7 @@ const contextifiedSandbox = vm.createContext({ secret: 42 }); ## Class: vm.SyntheticModule > Stability: 1 - Experimental @@ -655,7 +655,7 @@ const module = new vm.SyntheticModule(['default'], function() { ### Constructor: new vm.SyntheticModule(exportNames, evaluateCallback\[, options\]) * `exportNames` {string[]} Array of names that will be exported from the module. @@ -675,7 +675,7 @@ the module to access information outside the specified `context`. Use ### syntheticModule.setExport(name, value) * `name` {string} Name of the export to set. diff --git a/doc/changelogs/CHANGELOG_IOJS.md b/doc/changelogs/CHANGELOG_IOJS.md index 6c5f87e557443a..fceeac2d5fcd0a 100644 --- a/doc/changelogs/CHANGELOG_IOJS.md +++ b/doc/changelogs/CHANGELOG_IOJS.md @@ -63,6 +63,7 @@ |
Current | +
---|
+13.0.0 + |
+