Update ChangeLog.rst for 3.17 (#1085)
authorBernd Schubert <bernd@bsbernd.com>
Wed, 1 Jan 2025 22:02:52 +0000 (23:02 +0100)
committerBernd Schubert <bernd@bsbernd.com>
Mon, 10 Feb 2025 15:56:45 +0000 (16:56 +0100)
Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
ChangeLog.rst

index 8fd8cd34ec206ce3acef8cef3b32a27617b3e8cb..3bf401d99cd74b8ea5bab98e15ff05e66e5472a4 100644 (file)
@@ -1,12 +1,38 @@
-libfuse 3.17 (unreleased)
-========================
+libfuse 3.17 (2024-01-01)
+=========================
 
+* 3.11 and 3.14.2 introduced ABI incompatibilities, the ABI is restored
+  to 3.10, .so version was increased since there were releases with
+  the incompatible ABI
+
+* The libfuse version a program was compiled against is now encoded into
+  that program, using inlined functions in fuse_lowlevel.h and fuse.h
 * Allows to handle fatal signals and to print a backtrace.
-  New public function: fuse_set_fail_signal_handlers()
+  New API function: fuse_set_fail_signal_handlers()
+
 * Allows fuse_log() messages to be send to syslog instead of stderr
-  New public functions: fuse_log_enable_syslog() and fuse_log_close_syslog()
+  New API functions: fuse_log_enable_syslog() and fuse_log_close_syslog()
+
 * Handle buffer misalignment for FUSE_WRITE
 
+* Added support for filesystem passthrough read/write of files when
+  FUSE_PASSTHROUGH capability is enabled
+  New API functions:  fuse_passthrough_open() and fuse_passthrough_close(),
+                      also see example/passthrough_hp.cc
+
+* Added fmask and dmask options to high-level API
+  - dmask: umask applied to directories
+  - fmask: umask applied to non-directories
+
+* Added FUSE_FILL_DIR_DEFAULTS enum to support C++ programs using
+  fuse_fill_dir_t function
+
+* Added support for FUSE_CAP_HANDLE_KILLPRIV_V2
+
+Fixes:
+* Fixed compilation failure on FreeBSD (mount_bsd.c now points to correct
+  header)
+
 libfuse 3.16.2 (2023-10-10)
 ===========================