diff --git a/CHANGELOG.md b/CHANGELOG.md
index c2be3803991919..61482b076d9247 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -33,7 +33,8 @@ release.
-18.12.1
+18.13.0
+18.12.1
18.12.0
18.11.0
18.10.0
diff --git a/doc/api/async_context.md b/doc/api/async_context.md
index 76d2b36e7583a5..49c5ea564da7da 100644
--- a/doc/api/async_context.md
+++ b/doc/api/async_context.md
@@ -123,7 +123,7 @@ added:
- v13.10.0
- v12.17.0
changes:
- - version: REPLACEME
+ - version: v18.13.0
pr-url: https://github.com/nodejs/node/pull/45386
description: Add option onPropagate.
-->
diff --git a/doc/api/buffer.md b/doc/api/buffer.md
index e4d9c0968d89e1..f3d53b01931872 100644
--- a/doc/api/buffer.md
+++ b/doc/api/buffer.md
@@ -5025,7 +5025,7 @@ See [`Buffer.from(string[, encoding])`][`Buffer.from(string)`].
## Class: `File`
> Stability: 1 - Experimental
@@ -5037,7 +5037,7 @@ A [`File`][] provides information about files.
### `new buffer.File(sources, fileName[, options])`
* `sources` {string\[]|ArrayBuffer\[]|TypedArray\[]|DataView\[]|Blob\[]|File\[]}
@@ -5055,7 +5055,7 @@ added: REPLACEME
### `file.name`
* Type: {string}
@@ -5065,7 +5065,7 @@ The name of the `File`.
### `file.lastModified`
* Type: {number}
diff --git a/doc/api/cli.md b/doc/api/cli.md
index a907c6cc686bb5..bdc2b5c4fcb47e 100644
--- a/doc/api/cli.md
+++ b/doc/api/cli.md
@@ -418,7 +418,7 @@ Use this flag to disable top-level await in REPL.
### `--experimental-shadow-realm`
Use this flag to enable [ShadowRealm][] support.
@@ -1199,7 +1199,7 @@ status code 1.
@@ -1567,7 +1567,7 @@ amount of CPUs, but it may diverge in environments such as VMs or containers.
diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md
index b19ab50cd68b57..090edd9ad00dc1 100644
--- a/doc/api/deprecations.md
+++ b/doc/api/deprecations.md
@@ -2288,7 +2288,7 @@ future release.
@@ -3288,7 +3288,7 @@ issued for `url.parse()` vulnerabilities.
@@ -3304,7 +3304,7 @@ an error in future versions of Node.js, as the [WHATWG URL API][] does already.
diff --git a/doc/api/diagnostics_channel.md b/doc/api/diagnostics_channel.md
index 1010c87559600c..ac48ad78ee6159 100644
--- a/doc/api/diagnostics_channel.md
+++ b/doc/api/diagnostics_channel.md
@@ -3,7 +3,7 @@
diff --git a/doc/api/n-api.md b/doc/api/n-api.md
index 8689f6bf90f5c1..bc70638f3443f6 100644
--- a/doc/api/n-api.md
+++ b/doc/api/n-api.md
@@ -901,7 +901,7 @@ handle and/or callback scope inside the function body is not necessary.
#### `napi_cleanup_hook`
diff --git a/doc/api/net.md b/doc/api/net.md
index ba39e6bd3458c1..18837f5a0d5bdf 100644
--- a/doc/api/net.md
+++ b/doc/api/net.md
@@ -854,7 +854,7 @@ behavior.
> Stability: 1 - Experimental
diff --git a/doc/api/test.md b/doc/api/test.md
index 005dc8dab1e232..5fd6191d1d5778 100644
--- a/doc/api/test.md
+++ b/doc/api/test.md
@@ -294,7 +294,7 @@ test('a test that creates asynchronous activity', (t) => {
## Watch mode
> Stability: 1 - Experimental
@@ -735,7 +735,7 @@ describe('tests', async () => {
## Class: `MockFunctionContext`
The `MockFunctionContext` class is used to inspect or manipulate the behavior of
@@ -744,7 +744,7 @@ mocks created via the [`MockTracker`][] APIs.
### `ctx.calls`
* {Array}
@@ -766,7 +766,7 @@ mock. Each entry in the array is an object with the following properties.
### `ctx.callCount()`
* Returns: {integer} The number of times that this mock has been invoked.
@@ -778,7 +778,7 @@ is a getter that creates a copy of the internal call tracking array.
### `ctx.mockImplementation(implementation)`
* `implementation` {Function|AsyncFunction} The function to be used as the
@@ -815,7 +815,7 @@ test('changes a mock behavior', (t) => {
### `ctx.mockImplementationOnce(implementation[, onCall])`
* `implementation` {Function|AsyncFunction} The function to be used as the
@@ -859,7 +859,7 @@ test('changes a mock behavior once', (t) => {
### `ctx.resetCalls()`
Resets the call history of the mock function.
@@ -867,7 +867,7 @@ Resets the call history of the mock function.
### `ctx.restore()`
Resets the implementation of the mock function to its original behavior. The
@@ -876,7 +876,7 @@ mock can still be used after calling this function.
## Class: `MockTracker`
The `MockTracker` class is used to manage mocking functionality. The test runner
@@ -887,7 +887,7 @@ Each test also provides its own `MockTracker` instance via the test context's
### `mock.fn([original[, implementation]][, options])`
* `original` {Function|AsyncFunction} An optional function to create a mock on.
@@ -938,7 +938,7 @@ test('mocks a counting function', (t) => {
### `mock.getter(object, methodName[, implementation][, options])`
This function is syntax sugar for [`MockTracker.method`][] with `options.getter`
@@ -947,7 +947,7 @@ set to `true`.
### `mock.method(object, methodName[, implementation][, options])`
* `object` {Object} The object whose method is being mocked.
@@ -1001,7 +1001,7 @@ test('spies on an object method', (t) => {
### `mock.reset()`
This function restores the default behavior of all mocks that were previously
@@ -1017,7 +1017,7 @@ function manually is recommended.
### `mock.restoreAll()`
This function restores the default behavior of all mocks that were previously
@@ -1027,7 +1027,7 @@ not disassociate the mocks from the `MockTracker` instance.
### `mock.setter(object, methodName[, implementation][, options])`
This function is syntax sugar for [`MockTracker.method`][] with `options.setter`
@@ -1118,7 +1118,7 @@ test('top level test', async (t) => {
### `context.after([fn][, options])`
* `fn` {Function|AsyncFunction} The hook function. The first argument
diff --git a/doc/api/tls.md b/doc/api/tls.md
index 29ac852683d863..00ba977db7b243 100644
--- a/doc/api/tls.md
+++ b/doc/api/tls.md
@@ -1173,7 +1173,7 @@ certificate.
> Stability: 1 - Experimental
@@ -1222,7 +1222,7 @@ console.log(JSON.stringify(myMIMES));
### Class: `util.MIMEParams`
The `MIMEParams` API provides read and write access to the parameters of a
diff --git a/doc/api/vm.md b/doc/api/vm.md
index 09cdd4adf03c27..09081fad2240bf 100644
--- a/doc/api/vm.md
+++ b/doc/api/vm.md
@@ -347,7 +347,7 @@ console.log(globalVar);
### `script.sourceMapURL`
* {string|undefined}
diff --git a/doc/changelogs/CHANGELOG_V18.md b/doc/changelogs/CHANGELOG_V18.md
index 82e5eb9c9c9696..0444cbdf7d9109 100644
--- a/doc/changelogs/CHANGELOG_V18.md
+++ b/doc/changelogs/CHANGELOG_V18.md
@@ -9,6 +9,7 @@
|