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 nodejs#38905
* crypto:
  * (SEMVER-MINOR) allow zero-length IKM in HKDF and in webcrypto PBKDF2
  (Filip Skokan) nodejs#44201
  * (SEMVER-MINOR) allow zero-length secret KeyObject
  (Filip Skokan) nodejs#44201
* deps:
  * upgrade npm to 8.18.0 (npm team) nodejs#44263 - Adds a new npm query cmd
* doc:
  * add Erick Wendel to collaborators (Erick Wendel) nodejs#44088
  * add theanarkh to collaborators (theanarkh) nodejs#44131
  * add MoLow to collaborators (Moshe Atlow) nodejs#44214
  * add cola119 to collaborators (cola119) nodejs#44248
  * deprecate --trace-atomics-wait (Keyhan Vakil) nodejs#44093
* http:
  * (SEMVER-MINOR) make idle http parser count configurable
  (theanarkh) nodejs#43974
* net:
  * (SEMVER-MINOR) add local family (theanarkh) nodejs#43975
* src:
  * (SEMVER-MINOR) print source map error source on demand
  (Chengzhong Wu) nodejs#43875
* tls:
  * (SEMVER-MINOR) pass a valid socket on tlsClientError
  (Daeyeon Jeong) nodejs#44021

PR-URL: nodejs#44353
  • Loading branch information
ruyadorno authored and sidwebworks committed Aug 26, 2022
1 parent 50e63f7 commit 51f5ab6
Show file tree
Hide file tree
Showing 11 changed files with 268 additions and 29 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 @@ -1142,7 +1142,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 @@ -1199,7 +1199,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 @@ -1348,7 +1348,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 @@ -1509,7 +1509,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 @@ -3547,7 +3547,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 @@ -4217,7 +4217,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 @@ -4280,7 +4280,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 @@ -3185,7 +3185,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 @@ -3675,7 +3675,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 @@ -1053,7 +1053,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 @@ -315,7 +315,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 @@ -401,7 +401,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 @@ -352,7 +352,7 @@ added:
- v18.0.0
- v16.17.0
changes:
- version: REPLACEME
- version: v18.8.0
pr-url: https://github.com/nodejs/node/pull/43554
description: Add a `signal` option.
- version:
Expand Down Expand Up @@ -482,7 +482,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 @@ -510,7 +510,7 @@ describe('tests', async () => {
### `after([, fn][, options])`

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

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

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

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

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

* `fn` {Function|AsyncFunction} The hook function.
Expand Down Expand Up @@ -649,7 +649,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 @@ -681,7 +681,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 @@ -733,7 +733,7 @@ test('top level test', (t) => {
### `context.name`

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

The name of the test.
Expand Down Expand Up @@ -831,7 +831,7 @@ added:
- v18.0.0
- v16.17.0
changes:
- version: REPLACEME
- version: v18.8.0
pr-url: https://github.com/nodejs/node/pull/43554
description: Add a `signal` option.
- version:
Expand Down Expand Up @@ -898,7 +898,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 51f5ab6

Please sign in to comment.