File tree Expand file tree Collapse file tree 2 files changed +37
-4
lines changed Expand file tree Collapse file tree 2 files changed +37
-4
lines changed Original file line number Diff line number Diff line change 8
8
</tr >
9
9
<tr >
10
10
<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 />
12
13
<a href =" #19.0.0 " >19.0.0</a ><br />
13
14
</td >
14
15
</tr >
35
36
* [ io.js] ( CHANGELOG_IOJS.md )
36
37
* [ Archive] ( CHANGELOG_ARCHIVE.md )
37
38
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
+
38
71
<a id =" 19.0.1 " ></a >
39
72
40
73
## 2022-11-04, Version 19.0.1 (Current), @RafaelGSS
Original file line number Diff line number Diff line change 23
23
#define SRC_NODE_VERSION_H_
24
24
25
25
#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
28
28
29
29
#define NODE_VERSION_IS_LTS 0
30
30
#define NODE_VERSION_LTS_CODENAME ""
31
31
32
- #define NODE_VERSION_IS_RELEASE 0
32
+ #define NODE_VERSION_IS_RELEASE 1
33
33
34
34
#ifndef NODE_STRINGIFY
35
35
#define NODE_STRINGIFY (n ) NODE_STRINGIFY_HELPER(n)
You can’t perform that action at this time.
0 commit comments