Skip to content

Commit

Permalink
2021-03-17, Version 15.12.0 (Current)
Browse files Browse the repository at this point in the history
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:
  * update to cjs-module-lexer@1.1.0 (Guy Bedford) #37712
  * 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
  • Loading branch information
danielleadams committed Mar 17, 2021
1 parent 90008f8 commit 3b3b02f
Show file tree
Hide file tree
Showing 6 changed files with 136 additions and 10 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -32,7 +32,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V15.md#15.11.0">15.11.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V15.md#15.12.0">15.12.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V15.md#15.11.0">15.11.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V15.md#15.10.0">15.10.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V15.md#15.9.0">15.9.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V15.md#15.8.0">15.8.0</a><br/>
Expand Down
8 changes: 4 additions & 4 deletions doc/api/crypto.md
Expand Up @@ -3164,7 +3164,7 @@ input.on('readable', () => {
<!-- YAML
added: v11.6.0
changes:
- version: REPLACEME
- version: v15.12.0
pr-url: https://github.com/nodejs/node/pull/37254
description: The key can also be a JWK object.
- version: v15.0.0
Expand Down Expand Up @@ -3197,7 +3197,7 @@ of the passphrase is limited to 1024 bytes.
<!-- YAML
added: v11.6.0
changes:
- version: REPLACEME
- version: v15.12.0
pr-url: https://github.com/nodejs/node/pull/37254
description: The key can also be a JWK object.
- version: v15.0.0
Expand Down Expand Up @@ -4956,7 +4956,7 @@ Throws an error if FIPS mode is not available.
<!-- YAML
added: v12.0.0
changes:
- version: REPLACEME
- version: v15.12.0
pr-url: https://github.com/nodejs/node/pull/37500
description: Optional callback argument added.
- version:
Expand Down Expand Up @@ -5036,7 +5036,7 @@ not introduce timing vulnerabilities.
<!-- YAML
added: v12.0.0
changes:
- version: REPLACEME
- version: v15.12.0
pr-url: https://github.com/nodejs/node/pull/37500
description: Optional callback argument added.
- version: v15.0.0
Expand Down
2 changes: 1 addition & 1 deletion doc/api/globals.md
Expand Up @@ -69,7 +69,7 @@ The `AbortSignal` is used to notify observers when the

#### Static method: `AbortSignal.abort()`
<!-- YAML
added: REPLACEME
added: v15.12.0
-->

* Returns: {AbortSignal}
Expand Down
2 changes: 1 addition & 1 deletion doc/api/http.md
Expand Up @@ -2296,7 +2296,7 @@ will result in a `TypeError` being thrown.
### `outgoingMessage.connection`
<!-- YAML
added: v0.3.0
deprecated: REPLACEME
deprecated: v15.12.0
-->

> Stability: 0 - Deprecated: Use [`outgoingMessage.socket`][] instead.
Expand Down
6 changes: 3 additions & 3 deletions doc/api/worker_threads.md
Expand Up @@ -63,7 +63,7 @@ specifically `argv` and `execArgv` options.

## `worker.getEnvironmentData(key)`
<!-- YAML
added: REPLACEME
added: v15.12.0
-->

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

## `worker.setEnvironmentData(key[, value])`
<!--YAML
added: REPLACEME
added: v15.12.0
-->

> Stability: 1 - Experimental
Expand Down

0 comments on commit 3b3b02f

Please sign in to comment.