Skip to content

Commit ced2829

Browse files
committed
2022-12-13, Version 19.3.0 (Current)
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
1 parent 3f26499 commit ced2829

File tree

6 files changed

+207
-11
lines changed

6 files changed

+207
-11
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ release.
3535
</tr>
3636
<tr>
3737
<td valign="top">
38-
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.2.0">19.2.0</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.3.0">19.3.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V19.md#19.2.0">19.2.0</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V19.md#19.1.0">19.1.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V19.md#19.0.1">19.0.1</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V19.md#19.0.0">19.0.0</a><br/>

doc/api/deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3313,7 +3313,7 @@ an error in future versions of Node.js, as the [WHATWG URL API][] does already.
33133313
<!-- YAML
33143314
changes:
33153315
- version:
3316-
- REPLACEME
3316+
- v19.3.0
33173317
pr-url: https://github.com/nodejs/node/pull/45697
33183318
description: Documentation-only deprecation.
33193319
-->

doc/api/net.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ behavior.
856856
<!-- YAML
857857
added: v0.1.90
858858
changes:
859-
- version: REPLACEME
859+
- version: v19.3.0
860860
pr-url: https://github.com/nodejs/node/pull/44731
861861
description: Added the `autoSelectFamily` option.
862862
- version:

doc/api/test.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,7 @@ test('changes a mock behavior once', (t) => {
873873
### `ctx.resetCalls()`
874874

875875
<!-- YAML
876-
added: REPLACEME
876+
added: v19.3.0
877877
-->
878878

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

954954
<!-- YAML
955-
added: REPLACEME
955+
added: v19.3.0
956956
-->
957957

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

10431043
<!-- YAML
1044-
added: REPLACEME
1044+
added: v19.3.0
10451045
-->
10461046

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

11381138
<!-- YAML
1139-
added: REPLACEME
1139+
added: v19.3.0
11401140
-->
11411141

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

0 commit comments

Comments
 (0)