Skip to content

Commit

Permalink
2022-08-24, Version 18.8.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

* bootstrap:
  * implement run-time user-land snapshots via --build-snapshot and
  --snapshot-blob (Joyee Cheung) in #38905
* crypto:
  * (SEMVER-MINOR) allow zero-length IKM in HKDF and in webcrypto PBKDF2
  (Filip Skokan) #44201
  * (SEMVER-MINOR) allow zero-length secret KeyObject
  (Filip Skokan) #44201
* deps:
  * upgrade npm to 8.18.0 (npm team) #44263 - Adds a new npm query cmd
* doc:
  * add Erick Wendel to collaborators (Erick Wendel) #44088
  * add MoLow to collaborators (Moshe Atlow) #44214
  * deprecate --trace-atomics-wait (Keyhan Vakil) #44093
* http:
  * (SEMVER-MINOR) make idle http parser count configurable
  (theanarkh) #43974
* net:
  * (SEMVER-MINOR) add local family (theanarkh) #43975
* src:
  * (SEMVER-MINOR) print source map error source on demand
  (Chengzhong Wu) #43875
* tls:
  * (SEMVER-MINOR) pass a valid socket on tlsClientError
  (Daeyeon Jeong) #44021

PR-URL: TBD
  • Loading branch information
ruyadorno committed Aug 23, 2022
1 parent ab73cc8 commit c7a672a
Show file tree
Hide file tree
Showing 12 changed files with 269 additions and 32 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -35,7 +35,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.7.0">18.7.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.8.0">18.8.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V18.md#18.7.0">18.7.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V18.md#18.6.0">18.6.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V18.md#18.5.0">18.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V18.md#18.4.0">18.4.0</a><br/>
Expand Down
6 changes: 3 additions & 3 deletions doc/api/assert.md
Expand Up @@ -325,7 +325,7 @@ const callsfunc = tracker.calls(func);
### `tracker.getCalls(fn)`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

* `fn` {Function}.
Expand Down Expand Up @@ -439,7 +439,7 @@ tracker.report();
### `tracker.reset([fn])`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

* `fn` {Function} a tracked function to reset.
Expand Down Expand Up @@ -2092,7 +2092,7 @@ argument gets considered.
## `assert.snapshot(value, name)`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

> Stability: 1 - Experimental
Expand Down
10 changes: 5 additions & 5 deletions doc/api/cli.md
Expand Up @@ -103,7 +103,7 @@ If this flag is passed, the behavior can still be set to not abort through
### `--build-snapshot`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

> Stability: 1 - Experimental
Expand Down Expand Up @@ -1107,7 +1107,7 @@ Default signal is `SIGUSR2`.
<!-- YAML
added: v11.8.0
changes:
- version: REPLACEME
- version: v18.8.0
pr-url: https://github.com/nodejs/node/pull/44208
description: Report is not generated if the uncaught exception is handled.
- version:
Expand Down Expand Up @@ -1164,7 +1164,7 @@ The value given must be a power of two.
### `--snapshot-blob=path`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

> Stability: 1 - Experimental
Expand Down Expand Up @@ -1300,7 +1300,7 @@ for TLSv1.2, which is not as secure as TLSv1.3.

<!-- YAML
added: v14.3.0
deprecated: REPLACEME
deprecated: v18.8.0
-->

> Stability: 0 - Deprecated
Expand Down Expand Up @@ -1461,7 +1461,7 @@ loading phase, it will always raise it as an uncaught exception.
### `--update-assert-snapshot`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

Force updating snapshot files for [`assert.snapshot()`][]
Expand Down
6 changes: 3 additions & 3 deletions doc/api/crypto.md
Expand Up @@ -3533,7 +3533,7 @@ and it will be impossible to extract the private key from the returned object.
<!-- YAML
added: v11.6.0
changes:
- version: REPLACEME
- version: v18.8.0
pr-url: https://github.com/nodejs/node/pull/44201
description: The key can now be zero-length.
- version: v15.0.0
Expand Down Expand Up @@ -4203,7 +4203,7 @@ web-compatible code use [`crypto.webcrypto.getRandomValues()`][] instead.
<!-- YAML
added: v15.0.0
changes:
- version: REPLACEME
- version: v18.8.0
pr-url: https://github.com/nodejs/node/pull/44201
description: The input keying material can now be zero-length.
- version: v18.0.0
Expand Down Expand Up @@ -4266,7 +4266,7 @@ hkdf('sha512', 'key', 'salt', 'info', 64, (err, derivedKey) => {
<!-- YAML
added: v15.0.0
changes:
- version: REPLACEME
- version: v18.8.0
pr-url: https://github.com/nodejs/node/pull/44201
description: The input keying material can now be zero-length.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/deprecations.md
Expand Up @@ -3173,7 +3173,7 @@ strings (e.g., '1') are deprecated as parameter in [`process.exit()`][].

<!-- YAML
changes:
- version: REPLACEME
- version: v18.8.0
pr-url: https://github.com/nodejs/node/pull/44093
description: Documentation-only deprecation.
-->
Expand Down
4 changes: 2 additions & 2 deletions doc/api/dgram.md
Expand Up @@ -464,15 +464,15 @@ This method throws [`ERR_SOCKET_BUFFER_SIZE`][] if called on an unbound socket.
### `socket.getSendQueueSize()`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

* Returns: {number} Number of bytes queued for sending.

### `socket.getSendQueueCount()`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

* Returns: {number} Number of send requests currently in the queue awaiting
Expand Down
2 changes: 1 addition & 1 deletion doc/api/http.md
Expand Up @@ -3618,7 +3618,7 @@ try {
## `http.setMaxIdleHTTPParsers`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

* {number}
Expand Down
2 changes: 1 addition & 1 deletion doc/api/net.md
Expand Up @@ -1049,7 +1049,7 @@ The numeric representation of the local port. For example, `80` or `21`.
### `socket.localFamily`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

* {string}
Expand Down
4 changes: 2 additions & 2 deletions doc/api/perf_hooks.md
Expand Up @@ -311,7 +311,7 @@ the start of the current `node` process.
### `performance.setResourceTimingBufferSize(maxSize)`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

Sets the global performance resource timing buffer size to the specified number
Expand Down Expand Up @@ -397,7 +397,7 @@ is similar to [`window.performance.toJSON`][] in browsers.
#### Event: `'resourcetimingbufferfull'`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

The `'resourcetimingbufferfull'` event is fired when the global performance
Expand Down
20 changes: 10 additions & 10 deletions doc/api/test.md
Expand Up @@ -321,7 +321,7 @@ internally.
<!-- YAML
added: v18.0.0
changes:
- version: REPLACEME
- version: v18.8.0
pr-url: https://github.com/nodejs/node/pull/43554
description: Add a `signal` option.
- version: v18.7.0
Expand Down Expand Up @@ -449,7 +449,7 @@ same as [`it([name], { todo: true }[, fn])`][it options].
### `before([, fn][, options])`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

* `fn` {Function|AsyncFunction} The hook function.
Expand Down Expand Up @@ -477,7 +477,7 @@ describe('tests', async () => {
### `after([, fn][, options])`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

* `fn` {Function|AsyncFunction} The hook function.
Expand Down Expand Up @@ -505,7 +505,7 @@ describe('tests', async () => {
### `beforeEach([, fn][, options])`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

* `fn` {Function|AsyncFunction} The hook function.
Expand Down Expand Up @@ -534,7 +534,7 @@ describe('tests', async () => {
### `afterEach([, fn][, options])`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

* `fn` {Function|AsyncFunction} The hook function.
Expand Down Expand Up @@ -573,7 +573,7 @@ exposed as part of the API.
### `context.beforeEach([, fn][, options])`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

* `fn` {Function|AsyncFunction} The hook function. The first argument
Expand Down Expand Up @@ -605,7 +605,7 @@ test('top level test', async (t) => {
### `context.afterEach([, fn][, options])`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

* `fn` {Function|AsyncFunction} The hook function. The first argument
Expand Down Expand Up @@ -655,7 +655,7 @@ test('top level test', (t) => {
### `context.name`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

The name of the test.
Expand Down Expand Up @@ -743,7 +743,7 @@ test('top level test', (t) => {
<!-- YAML
added: v18.0.0
changes:
- version: REPLACEME
- version: v18.8.0
pr-url: https://github.com/nodejs/node/pull/43554
description: Add a `signal` option.
- version: v18.7.0
Expand Down Expand Up @@ -806,7 +806,7 @@ exposed as part of the API.
### `context.name`

<!-- YAML
added: REPLACEME
added: v18.8.0
-->

The name of the suite.
Expand Down

0 comments on commit c7a672a

Please sign in to comment.