diff options
author | Bernd Schubert <bernd@bsbernd.com> | 2025-04-23 23:14:56 +0200 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-04-24 01:16:19 +0200 |
commit | db2a1652f0351162a4f39d9f15f1e8ff036f7a6a (patch) | |
tree | ed44cb2aba720a7c21246b8396473f57731c7925 | |
parent | 712c885098156b5d66d87ef3f017b395e91f281b (diff) | |
download | libfuse-db2a1652f0351162a4f39d9f15f1e8ff036f7a6a.tar.gz |
Update to 3.17.2
-rw-r--r-- | AUTHORS | 4 | ||||
-rw-r--r-- | ChangeLog.rst | 16 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 21 insertions, 1 deletions
@@ -271,3 +271,7 @@ Vassili Tchersky <vt+git@vbcy.org> # New authors since fuse-3.17.1-rc1 jnr0006 <jacob.nick.riley@gmail.com> Vassili Tchersky <vt+git@vbc.su> + +# New authors since fuse-3.17.1 +swj <1186093704@qq.com> +Ben Dooks <ben.dooks@codethink.co.uk> diff --git a/ChangeLog.rst b/ChangeLog.rst index 6c157da..5113f44 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,3 +1,19 @@ +libfuse 3.17.2 (2025-04-23) +=========================== +* Fixed uninitized bufsize value (compilation warning and real + issue when HAVE_SPLICE was not defined) +* Fixed initialization races related to buffer realocation when + large buf sizes are used (/proc/sys/fs/fuse/max_pages_limit) +* Fix build with kernel < 5.9 +* Fix static_assert build failure with C++ version < 11 +* Compilation fix (remove second fuse_main_real_versioned declaration) +* Another conn.want flag conversion fix for high-level applications +* Check if pthread_setname_np() exists before use it +* fix example/memfs_ll rename deadlock error +* signal handlers: Store fuse_session unconditionally and restore + previous behavior that with multiple sessions the last session + was used for the signal exist handler + libfuse 3.17.1 (2025-03-24) =========================== * fuse: Fix want conn.want flag conversion diff --git a/meson.build b/meson.build index 39cff23..ba551ed 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libfuse3', ['c'], - version: '3.17.1', + version: '3.17.2', meson_version: '>= 0.51.0', default_options: [ 'buildtype=debugoptimized', |