From b322bf5314d9d1e34786bc4c42fa639e55ade080 Mon Sep 17 00:00:00 2001 From: RafaelGSS Date: Tue, 1 Nov 2022 14:01:40 -0300 Subject: [PATCH] 2022-11-14, Version 19.1.0 (Current) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Notable changes: * deps: * update ICU to 72.1 (Michaël Zasso) [#45068](https://github.com/nodejs/node/pull/45068) * doc: * add lukekarrys to collaborators (Luke Karrys) [#45180](https://github.com/nodejs/node/pull/45180) * add anonrig to collaborators (Yagiz Nizipli) [#45002](https://github.com/nodejs/node/pull/45002) * fs: * (SEMVER-MINOR) fs: add recursive watch to linux (Yagiz Nizipli) [#45098](https://github.com/nodejs/node/pull/45098) * util * (SEMVER-MINOR) add MIME utilities (Bradley Farias) [#21128](https://github.com/nodejs/node/pull/21128) PR-URL: https://github.com/nodejs/node/pull/45269 --- doc/changelogs/CHANGELOG_V19.md | 35 ++++++++++++++++++++++++++++++++- src/node_version.h | 6 +++--- 2 files changed, 37 insertions(+), 4 deletions(-) diff --git a/doc/changelogs/CHANGELOG_V19.md b/doc/changelogs/CHANGELOG_V19.md index 6a20b3aa26483a..6a317f470cf6f3 100644 --- a/doc/changelogs/CHANGELOG_V19.md +++ b/doc/changelogs/CHANGELOG_V19.md @@ -8,7 +8,8 @@ -19.0.1
+19.1.0
+19.0.1
19.0.0
@@ -35,6 +36,38 @@ * [io.js](CHANGELOG_IOJS.md) * [Archive](CHANGELOG_ARCHIVE.md) + + +## 2022-11-14, Version 19.1.0 (Current), @RafaelGSS + +### Notable changes + +#### fs.watch recursive support on Linux + +`fs.watch` supports recursive watch using the `recursive: true` option. + +```js +const watcher = fs.watch(testDirectory, { recursive: true }); +watcher.on('change', function(event, filename) { +}); +``` + +Contributed by Yagiz Nizipli in [#45098](https://github.com/nodejs/node/pull/45098) + +#### Other notable changes + +* **deps** + * update ICU to 72.1 (Michaël Zasso) [#45068](https://github.com/nodejs/node/pull/45068) +* **doc** + * add lukekarrys to collaborators (Luke Karrys) [#45180](https://github.com/nodejs/node/pull/45180) + * add anonrig to collaborators (Yagiz Nizipli) [#45002](https://github.com/nodejs/node/pull/45002) +* **util** + * (SEMVER-MINOR) add MIME utilities (Bradley Farias) [#21128](https://github.com/nodejs/node/pull/21128) + +### Commits + +TBD + ## 2022-11-04, Version 19.0.1 (Current), @RafaelGSS diff --git a/src/node_version.h b/src/node_version.h index 7042c450936acc..6dcee0ce011678 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -23,13 +23,13 @@ #define SRC_NODE_VERSION_H_ #define NODE_MAJOR_VERSION 19 -#define NODE_MINOR_VERSION 0 -#define NODE_PATCH_VERSION 2 +#define NODE_MINOR_VERSION 1 +#define NODE_PATCH_VERSION 0 #define NODE_VERSION_IS_LTS 0 #define NODE_VERSION_LTS_CODENAME "" -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)