Releases: libfuse/sshfs
Releases · libfuse/sshfs
SSHFS 3.3.1
- Manpage is now installed in correct directory.
- SSHFS now supports (or rather: ignores) some options that it may receive as result of being mounted from
/etc/mtab
. This includes things likeuser
,netdev
, orauto
.
SSHFS 3.3.0
- Dropped support for writeback caching (and, as a consequence, "unreliable append" operation). As of kernel 4.14, the FUSE module's writeback implementation is not compatible with network filesystems and there are no imminent plans to change that.
- Add support for mounting from /etc/fstab
- Dropped support for building with autotools.
- Added missing options to man page.
SSHFS 3.2.0
- Re-enabled writeback cache.
- SSHFS now supports O_APPEND.
SSHFS 3.1.0
-
Temporarily disabled the writeback cache feature, since there have been reports of dataloss when appending to files when writeback caching is enabled.
-
Fixed a crash due to a race condition when listing directory contents.
-
For improved backwards compatibility, SSHFS now also silently accepts the old
-o cache_*
options.
SSHFS 2.10
This is a maintenance release of the SSHFS 2.x line.
Please use a SSHFS 3.x release if you can!
- Fixed a crash due to a race condition when listing directory contents.
- Added unit tests
- Documented limited hardlink support.
- Added support for building with Meson.
- Added support for more SSH options.
- Dropped support for the nodelay workaround - the last OpenSSH version for which this was useful was released in 2006.
- Dropped support for the nodelaysrv workaround. The same effect (enabling NODELAY on the server side and enabling X11 forwarding) can be achieved by explicitly passing
-o ForwardX11
- Removed support for
-o workaround=all
. Workarounds should always enabled explicitly and only when needed. There is no point in always enabling a potentially changing set of workarounds.
SSHFS 3.0.0
- sshfs now requires libfuse 3.1.0 or newer.
- When supported by the kernel, sshfs now uses writeback caching.
- The
cache
option has been renamed todir_cache
for clarity. - Added unit tests
- --debug now behaves like -o debug_sshfs, i.e. it enables sshfs debugging messages rather than libfuse debugging messages.
- Documented limited hardlink support.
- Added support for building with Meson.
- Added support for more SSH options.
- Dropped support for the nodelay workaround - the last OpenSSH version for which this was useful was released in 2006.
- Dropped support for the nodelaysrv workaround. The same effect (enabling NODELAY on the server side and enabling X11 forwarding) can be achieved by explicitly passing
-o ForwardX11
- Removed support for
-o workaround=all
. Workarounds should always enabled explicitly and only when needed. There is no point in always enabling a potentially changing set of workarounds.
SSHFS 2.9
SSHFS 2.8
SSHFS 2.7
- Integrated osxfuse's copy of sshfs, which means that sshfs now works
on OS X out of the box. - Added -o cache_max_size=N option to let users tune the maximum size of
the cache in number of entries. - Added -o cache_clean_interval=N and -o cache_min_clean_interval=N
options to let users tune the cleaning behavior of the cache.