Skip to content

Commit b322bf5

Browse files
committed
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) * util * (SEMVER-MINOR) add MIME utilities (Bradley Farias) [#21128](#21128) PR-URL: #45269
1 parent e8075fd commit b322bf5

File tree

2 files changed

+37
-4
lines changed

2 files changed

+37
-4
lines changed

doc/changelogs/CHANGELOG_V19.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
</tr>
99
<tr>
1010
<td>
11-
<b><a href="#19.0.1">19.0.1</a></b><br/>
11+
<b><a href="#19.1.0">19.1.0</a></b><br/>
12+
<a href="#19.0.1">19.0.1</a><br/>
1213
<a href="#19.0.0">19.0.0</a><br/>
1314
</td>
1415
</tr>
@@ -35,6 +36,38 @@
3536
* [io.js](CHANGELOG_IOJS.md)
3637
* [Archive](CHANGELOG_ARCHIVE.md)
3738

39+
<a id="19.1.0"></a>
40+
41+
## 2022-11-14, Version 19.1.0 (Current), @RafaelGSS
42+
43+
### Notable changes
44+
45+
#### fs.watch recursive support on Linux
46+
47+
`fs.watch` supports recursive watch using the `recursive: true` option.
48+
49+
```js
50+
const watcher = fs.watch(testDirectory, { recursive: true });
51+
watcher.on('change', function(event, filename) {
52+
});
53+
```
54+
55+
Contributed by Yagiz Nizipli in [#45098](https://github.com/nodejs/node/pull/45098)
56+
57+
#### Other notable changes
58+
59+
* **deps**
60+
* update ICU to 72.1 (Michaël Zasso) [#45068](https://github.com/nodejs/node/pull/45068)
61+
* **doc**
62+
* add lukekarrys to collaborators (Luke Karrys) [#45180](https://github.com/nodejs/node/pull/45180)
63+
* add anonrig to collaborators (Yagiz Nizipli) [#45002](https://github.com/nodejs/node/pull/45002)
64+
* **util**
65+
* (SEMVER-MINOR) add MIME utilities (Bradley Farias) [#21128](https://github.com/nodejs/node/pull/21128)
66+
67+
### Commits
68+
69+
TBD
70+
3871
<a id="19.0.1"></a>
3972

4073
## 2022-11-04, Version 19.0.1 (Current), @RafaelGSS

src/node_version.h

Lines changed: 3 additions & 3 deletions
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)