Skip to content

Commit

Permalink
2022-12-13, Version 19.3.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

build:
  * disable v8 snapshot compression by default (Joyee Cheung) #45716
deps:
  * upgrade npm to 9.3.0 (npm team) #45780
doc:
  * add doc-only deprecation for headers/trailers setters (Rich Trott) #45697
  * add Rafael Gonzaga to the TSC (Michael Dawson) #45691
net:
  * (SEMVER-MINOR) add autoSelectFamily and autoSelectFamilyAttemptTimeout options (Paolo Insogna) #44731
src:
  * (SEMVER-MINOR) add uvwasi version (Jithil P Ponnan) #45639
test_runner:
  * (SEMVER-MINOR) add t.after() hook (Colin Ihrig) #45792
  * (SEMVER-MINOR) don't use a symbol for runHook() (Colin Ihrig) #45792
tls:
  * remove trustcor root ca certificates (Ben Noordhuis) #45776

PR-URL: #45831
  • Loading branch information
targos committed Dec 13, 2022
1 parent ed8ae88 commit d98cf20
Show file tree
Hide file tree
Showing 6 changed files with 206 additions and 11 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_V19.md#19.2.0">19.2.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.3.0">19.3.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.2.0">19.2.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.1.0">19.1.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.0.1">19.0.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.0.0">19.0.0</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/deprecations.md
Expand Up @@ -3313,7 +3313,7 @@ an error in future versions of Node.js, as the [WHATWG URL API][] does already.
<!-- YAML
changes:
- version:
- REPLACEME
- v19.3.0
pr-url: https://github.com/nodejs/node/pull/45697
description: Documentation-only deprecation.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/net.md
Expand Up @@ -856,7 +856,7 @@ behavior.
<!-- YAML
added: v0.1.90
changes:
- version: REPLACEME
- version: v19.3.0
pr-url: https://github.com/nodejs/node/pull/44731
description: Added the `autoSelectFamily` option.
- version:
Expand Down
8 changes: 4 additions & 4 deletions doc/api/test.md
Expand Up @@ -873,7 +873,7 @@ test('changes a mock behavior once', (t) => {
### `ctx.resetCalls()`

<!-- YAML
added: REPLACEME
added: v19.3.0
-->

Resets the call history of the mock function.
Expand Down Expand Up @@ -952,7 +952,7 @@ test('mocks a counting function', (t) => {
### `mock.getter(object, methodName[, implementation][, options])`

<!-- YAML
added: REPLACEME
added: v19.3.0
-->

This function is syntax sugar for [`MockTracker.method`][] with `options.getter`
Expand Down Expand Up @@ -1041,7 +1041,7 @@ not disassociate the mocks from the `MockTracker` instance.
### `mock.setter(object, methodName[, implementation][, options])`

<!-- YAML
added: REPLACEME
added: v19.3.0
-->

This function is syntax sugar for [`MockTracker.method`][] with `options.setter`
Expand Down Expand Up @@ -1136,7 +1136,7 @@ test('top level test', async (t) => {
### `context.after([fn][, options])`

<!-- YAML
added: REPLACEME
added: v19.3.0
-->

* `fn` {Function|AsyncFunction} The hook function. The first argument
Expand Down

0 comments on commit d98cf20

Please sign in to comment.