Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit facfd90

Browse files
committedNov 11, 2022
2022-11-14, Version 19.1.0 (Current)
Notable changes: * deps: * update ICU to 72.1 (Michaël Zasso) [#45068](#45068) * doc: * add lukekarrys to collaborators (Luke Karrys) [#45180](#45180) * add anonrig to collaborators (Yagiz Nizipli) [#45002](#45002) * fs: * (SEMVER-MINOR) fs: add recursive watch to linux (Yagiz Nizipli) [#45098](#45098) * lib: * drop fetch experimental warning (Matteo Collina) [#45287](#45287) * util * (SEMVER-MINOR) add MIME utilities (Bradley Farias) [#21128](#21128) * improve textdecoder decode performance (Yagiz Nizipli) [#45294](#45294) PR-URL: #45269
1 parent e2181e0 commit facfd90

File tree

10 files changed

+258
-24
lines changed

10 files changed

+258
-24
lines changed
 

‎doc/api/fs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4320,7 +4320,7 @@ The `atime` and `mtime` arguments follow these rules:
43204320
<!-- YAML
43214321
added: v0.5.10
43224322
changes:
4323-
- version: REPLACEME
4323+
- version: v19.1.0
43244324
pr-url: https://github.com/nodejs/node/pull/45098
43254325
description: Added recursive support for Linux, AIX and IBMi.
43264326
- version:

‎doc/api/stream.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1684,7 +1684,7 @@ has less then 64 KiB of data because no `highWaterMark` option is provided to
16841684
##### `readable.compose(stream[, options])`
16851685

16861686
<!-- YAML
1687-
added: REPLACEME
1687+
added: v19.1.0
16881688
-->
16891689

16901690
> Stability: 1 - Experimental

‎doc/api/test.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ describe('tests', async () => {
730730
## Class: `MockFunctionContext`
731731

732732
<!-- YAML
733-
added: REPLACEME
733+
added: v19.1.0
734734
-->
735735

736736
The `MockFunctionContext` class is used to inspect or manipulate the behavior of
@@ -739,7 +739,7 @@ mocks created via the [`MockTracker`][] APIs.
739739
### `ctx.calls`
740740

741741
<!-- YAML
742-
added: REPLACEME
742+
added: v19.1.0
743743
-->
744744

745745
* {Array}
@@ -761,7 +761,7 @@ mock. Each entry in the array is an object with the following properties.
761761
### `ctx.callCount()`
762762

763763
<!-- YAML
764-
added: REPLACEME
764+
added: v19.1.0
765765
-->
766766

767767
* Returns: {integer} The number of times that this mock has been invoked.
@@ -773,7 +773,7 @@ is a getter that creates a copy of the internal call tracking array.
773773
### `ctx.mockImplementation(implementation)`
774774

775775
<!-- YAML
776-
added: REPLACEME
776+
added: v19.1.0
777777
-->
778778

779779
* `implementation` {Function|AsyncFunction} The function to be used as the
@@ -810,7 +810,7 @@ test('changes a mock behavior', (t) => {
810810
### `ctx.mockImplementationOnce(implementation[, onCall])`
811811

812812
<!-- YAML
813-
added: REPLACEME
813+
added: v19.1.0
814814
-->
815815

816816
* `implementation` {Function|AsyncFunction} The function to be used as the
@@ -854,7 +854,7 @@ test('changes a mock behavior once', (t) => {
854854
### `ctx.restore()`
855855

856856
<!-- YAML
857-
added: REPLACEME
857+
added: v19.1.0
858858
-->
859859

860860
Resets the implementation of the mock function to its original behavior. The
@@ -863,7 +863,7 @@ mock can still be used after calling this function.
863863
## Class: `MockTracker`
864864

865865
<!-- YAML
866-
added: REPLACEME
866+
added: v19.1.0
867867
-->
868868

869869
The `MockTracker` class is used to manage mocking functionality. The test runner
@@ -874,7 +874,7 @@ Each test also provides its own `MockTracker` instance via the test context's
874874
### `mock.fn([original[, implementation]][, options])`
875875

876876
<!-- YAML
877-
added: REPLACEME
877+
added: v19.1.0
878878
-->
879879

880880
* `original` {Function|AsyncFunction} An optional function to create a mock on.
@@ -925,7 +925,7 @@ test('mocks a counting function', (t) => {
925925
### `mock.method(object, methodName[, implementation][, options])`
926926

927927
<!-- YAML
928-
added: REPLACEME
928+
added: v19.1.0
929929
-->
930930

931931
* `object` {Object} The object whose method is being mocked.
@@ -979,7 +979,7 @@ test('spies on an object method', (t) => {
979979
### `mock.reset()`
980980

981981
<!-- YAML
982-
added: REPLACEME
982+
added: v19.1.0
983983
-->
984984

985985
This function restores the default behavior of all mocks that were previously
@@ -995,7 +995,7 @@ function manually is recommended.
995995
### `mock.restoreAll()`
996996

997997
<!-- YAML
998-
added: REPLACEME
998+
added: v19.1.0
999999
-->
10001000

10011001
This function restores the default behavior of all mocks that were previously

‎doc/api/tls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1173,7 +1173,7 @@ certificate.
11731173

11741174
<!-- YAML
11751175
changes:
1176-
- version: REPLACEME
1176+
- version: v19.1.0
11771177
pr-url: https://github.com/nodejs/node/pull/44935
11781178
description: Add "ca" property.
11791179
- version:

‎doc/api/util.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1027,7 +1027,7 @@ equality.
10271027
## Class: `util.MIMEType`
10281028

10291029
<!-- YAML
1030-
added: REPLACEME
1030+
added: v19.1.0
10311031
-->
10321032

10331033
> Stability: 1 - Experimental
@@ -1226,7 +1226,7 @@ console.log(JSON.stringify(myMIMES));
12261226
### Class: `util.MIMEParams`
12271227

12281228
<!-- YAML
1229-
added: REPLACEME
1229+
added: v19.1.0
12301230
-->
12311231

12321232
The `MIMEParams` API provides read and write access to the parameters of a

‎doc/api/v8.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ following properties:
6666
<!-- YAML
6767
added: v11.13.0
6868
changes:
69-
- version: REPLACEME
69+
- version: v19.1.0
7070
pr-url: https://github.com/nodejs/node/pull/44989
7171
description: Support options to configure the heap snapshot.
7272
-->
@@ -304,7 +304,7 @@ disk unless [`v8.stopCoverage()`][] is invoked before the process exits.
304304
<!-- YAML
305305
added: v11.13.0
306306
changes:
307-
- version: REPLACEME
307+
- version: v19.1.0
308308
pr-url: https://github.com/nodejs/node/pull/44989
309309
description: Support options to configure the heap snapshot.
310310
- version: v18.0.0

‎doc/api/vm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ console.log(globalVar);
347347
### `script.sourceMapURL`
348348

349349
<!-- YAML
350-
added: REPLACEME
350+
added: v19.1.0
351351
-->
352352

353353
* {string|undefined}

‎doc/api/worker_threads.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@ added:
10741074
- v13.9.0
10751075
- v12.17.0
10761076
changes:
1077-
- version: REPLACEME
1077+
- version: v19.1.0
10781078
pr-url: https://github.com/nodejs/node/pull/44989
10791079
description: Support options to configure the heap snapshot.
10801080
-->

‎doc/changelogs/CHANGELOG_V19.md

+235-1
Large diffs are not rendered by default.

‎src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 19
26-
#define NODE_MINOR_VERSION 0
27-
#define NODE_PATCH_VERSION 2
26+
#define NODE_MINOR_VERSION 1
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)
Please sign in to comment.