diff options
author | cjihrig <cjihrig@gmail.com> | 2018-06-23 16:26:29 -0400 |
---|---|---|
committer | cjihrig <cjihrig@gmail.com> | 2018-06-27 11:37:17 -0400 |
commit | 7ff50f9e9cf5459c60f10f3919e79223c8b7446c (patch) | |
tree | d6b8221698f8582406f54385bdcd583c21c0ec26 /doc/api/deprecations.md | |
parent | 4750ce26f2e6079b5fee92bdee5356c279171d22 (diff) | |
download | node-new-7ff50f9e9cf5459c60f10f3919e79223c8b7446c.tar.gz |
fs: undeprecate lchown()
uv_fs_lchown() exists, as of libuv 1.21.0. fs.lchown() can now
be undeprecated. This commit also adds tests, as there were
none.
PR-URL: https://github.com/nodejs/node/pull/21498
Fixes: https://github.com/nodejs/node/issues/19868
Reviewed-By: Wyatt Preul <wpreul@gmail.com>
Diffstat (limited to 'doc/api/deprecations.md')
-rw-r--r-- | doc/api/deprecations.md | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index df6371056d..0773166720 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -351,20 +351,6 @@ Type: Documentation-only The [`fs.lchmodSync(path, mode)`][] API is deprecated. -<a id="DEP0037"></a> -### DEP0037: fs.lchown(path, uid, gid, callback) - -Type: Documentation-only - -The [`fs.lchown(path, uid, gid, callback)`][] API is deprecated. - -<a id="DEP0038"></a> -### DEP0038: fs.lchownSync(path, uid, gid) - -Type: Documentation-only - -The [`fs.lchownSync(path, uid, gid)`][] API is deprecated. - <a id="DEP0039"></a> ### DEP0039: require.extensions @@ -1049,8 +1035,6 @@ The option `produceCachedData` has been deprecated. Use [`fs.exists(path, callback)`]: fs.html#fs_fs_exists_path_callback [`fs.lchmod(path, mode, callback)`]: fs.html#fs_fs_lchmod_path_mode_callback [`fs.lchmodSync(path, mode)`]: fs.html#fs_fs_lchmodsync_path_mode -[`fs.lchown(path, uid, gid, callback)`]: fs.html#fs_fs_lchown_path_uid_gid_callback -[`fs.lchownSync(path, uid, gid)`]: fs.html#fs_fs_lchownsync_path_uid_gid [`fs.read()`]: fs.html#fs_fs_read_fd_buffer_offset_length_position_callback [`fs.readSync()`]: fs.html#fs_fs_readsync_fd_buffer_offset_length_position [`fs.stat()`]: fs.html#fs_fs_stat_path_callback |