From db34b8c913e3106160e7a8c602d5279f2dcf5bf0 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Thu, 18 Apr 2019 20:45:56 -0700 Subject: [PATCH] update changelog --- Changelog.asciidoc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Changelog.asciidoc b/Changelog.asciidoc index 8c2a4d14..7bb25136 100644 --- a/Changelog.asciidoc +++ b/Changelog.asciidoc @@ -5,9 +5,11 @@ v1.5B2 (2019.3 B2):: Changes since v1.4: -* Extended attribute support has been added for all WinFsp API's: native, .NET, FUSE2 and FUSE3. -* Initial FastIO support has been added. FastIO operations are enabled on cache-enabled file systems with the notable exception of `FastIoQueryOpen`, which allows opening files in kernel mode; this operation requires the file system to specify the `FSP_FSCTL_VOLUME_PARAMS::AllowOpenInKernelMode` flag. +* WinFsp file systems can now be used by WSLinux. Use the command `sudo mount -t drvfs x: /mnt/x` to mount. * FUSE has new `-o dothidden` option that is used to add the Windows hidden file attribute to files that start with a dot. +* FUSE has new `-o create_file_umask=nnn` and `-o create_dir_umask=nnn` options that allow for more control than the `-o create_umask=nnn` option. +* Extended attribute support has been added for all WinFsp API's: native, .NET, FUSE2 and FUSE3. +* FastIO support has been added. FastIO operations are enabled on cache-enabled file systems with the notable exception of `FastIoQueryOpen`, which allows opening files in kernel mode; this operation requires the file system to specify the `FSP_FSCTL_VOLUME_PARAMS::AllowOpenInKernelMode` flag. * Fixes for very large (> 4GiB) files. (Thanks @dworkin.) * A fix for an invalid UID to SID mapping on domains with a lot of users. (Thanks @sganis.) * A fix on the C++ layer. (Thanks @colatkinson.)