Skip to content

Commit 703aec8

Browse files
committed
2021-03-17, Version 15.12.0 (Current)
PR-URL: #37766 Notable changes: * crypto: * add optional callback to crypto.sign and crypto.verify (Filip Skokan) #37500 * support JWK objects in create\*Key (Filip Skokan) #37254 * deps: * switch openssl to quictls/openssl (James M Snell) #37601 * fs: * improve fsPromises writeFile performance (Nitzan Uziely) #37610 * improve fsPromises readFile performance (Nitzan Uziely) #37608 * lib: * implement AbortSignal.abort() (James M Snell) #37693 * node-api: * define version 8 (Gabriel Schulhof) #37652 * worker: * add setEnvironmentData/getEnvironmentData (James M Snell) #37486
1 parent 72af5d9 commit 703aec8

File tree

7 files changed

+137
-13
lines changed

7 files changed

+137
-13
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ release.
3232
</tr>
3333
<tr>
3434
<td valign="top">
35-
<b><a href="doc/changelogs/CHANGELOG_V15.md#15.11.0">15.11.0</a></b><br/>
35+
<b><a href="doc/changelogs/CHANGELOG_V15.md#15.12.0">15.12.0</a></b><br/>
36+
<a href="doc/changelogs/CHANGELOG_V15.md#15.11.0">15.11.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V15.md#15.10.0">15.10.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V15.md#15.9.0">15.9.0</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V15.md#15.8.0">15.8.0</a><br/>

doc/api/crypto.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -3164,7 +3164,7 @@ input.on('readable', () => {
31643164
<!-- YAML
31653165
added: v11.6.0
31663166
changes:
3167-
- version: REPLACEME
3167+
- version: v15.12.0
31683168
pr-url: https://github.com/nodejs/node/pull/37254
31693169
description: The key can also be a JWK object.
31703170
- version: v15.0.0
@@ -3197,7 +3197,7 @@ of the passphrase is limited to 1024 bytes.
31973197
<!-- YAML
31983198
added: v11.6.0
31993199
changes:
3200-
- version: REPLACEME
3200+
- version: v15.12.0
32013201
pr-url: https://github.com/nodejs/node/pull/37254
32023202
description: The key can also be a JWK object.
32033203
- version: v15.0.0
@@ -4956,7 +4956,7 @@ Throws an error if FIPS mode is not available.
49564956
<!-- YAML
49574957
added: v12.0.0
49584958
changes:
4959-
- version: REPLACEME
4959+
- version: v15.12.0
49604960
pr-url: https://github.com/nodejs/node/pull/37500
49614961
description: Optional callback argument added.
49624962
- version:
@@ -5036,7 +5036,7 @@ not introduce timing vulnerabilities.
50365036
<!-- YAML
50375037
added: v12.0.0
50385038
changes:
5039-
- version: REPLACEME
5039+
- version: v15.12.0
50405040
pr-url: https://github.com/nodejs/node/pull/37500
50415041
description: Optional callback argument added.
50425042
- version: v15.0.0

doc/api/globals.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The `AbortSignal` is used to notify observers when the
6969

7070
#### Static method: `AbortSignal.abort()`
7171
<!-- YAML
72-
added: REPLACEME
72+
added: v15.12.0
7373
-->
7474

7575
* Returns: {AbortSignal}

doc/api/http.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2272,7 +2272,7 @@ will result in a `TypeError` being thrown.
22722272
### `outgoingMessage.connection`
22732273
<!-- YAML
22742274
added: v0.3.0
2275-
deprecated: REPLACEME
2275+
deprecated: v15.12.0
22762276
-->
22772277

22782278
> Stability: 0 - Deprecated: Use [`outgoingMessage.socket`][] instead.

doc/api/worker_threads.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ specifically `argv` and `execArgv` options.
6363

6464
## `worker.getEnvironmentData(key)`
6565
<!-- YAML
66-
added: REPLACEME
66+
added: v15.12.0
6767
-->
6868

6969
> Stability: 1 - Experimental
@@ -212,7 +212,7 @@ if (isMainThread) {
212212
<!-- YAML
213213
added: v12.3.0
214214
changes:
215-
- version: REPLACEME
215+
- version: v15.12.0
216216
pr-url: https://github.com/nodejs/node/pull/37535
217217
description: The port argument can also refer to a `BroadcastChannel` now.
218218
-->
@@ -280,7 +280,7 @@ new Worker('process.env.SET_IN_WORKER = "foo"', { eval: true, env: SHARE_ENV })
280280

281281
## `worker.setEnvironmentData(key[, value])`
282282
<!--YAML
283-
added: REPLACEME
283+
added: v15.12.0
284284
-->
285285

286286
> Stability: 1 - Experimental

doc/changelogs/CHANGELOG_V15.md

+123
Large diffs are not rendered by default.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 15
26-
#define NODE_MINOR_VERSION 11
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 12
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)