Skip to content

Releases: libfuse/sshfs

SSHFS 3.7.5

11 Nov 20:01

Choose a tag to compare

Note: it's 3.7.5 and not 3.7.4 because some upstreams used the 3.7.4/a provided by an old fork (https://github.com/deadbeefsociety/sshfs). A decent number of changes have since occured now that new maintainers exist for SSHFS, so I thought it's time to make a new release. Big thanks to all new contributors for helping out!

What's Changed

  • Implement connect to vsock. by @g-easy in #277
  • 👷 use latest major version for actions/checkout by @thomasmerz in #289
  • remove README.rst file since README.md file exists by @h4sh5 in #295
  • Fix memleak in cache after readlink by @jpalus in #305
  • Fill stat info when returning cached data for readdir by @jpalus in #306
  • Windows native OpenSSH fix by @manu0401 in #314
  • Add support for macOS (macFUSE 4.10.0) by @bfleischer in #325
  • ipv6 support for directport connection by @h4sh5 in #336

New Contributors

Full Changelog: sshfs-3.7.3...sshfs-3.7.5

SSHFS 3.7.3

26 May 13:27
sshfs-3.7.3

Choose a tag to compare

  • Minor bugfixes.

  • This is the last release from the current maintainer. SSHFS is now no longer maintained
    or developed. Github issue tracking and pull requests have therefore been disabled. The
    mailing list (see below) is still available for use.

    If you would like to take over this project, you are welcome to do so. Please fork it
    and develop the fork for a while. Once there has been 6 months of reasonable activity,
    please contact [email protected] and I'll be happy to give you ownership of this
    repository or replace with a pointer to the fork.

SSHFS 3.7.2

08 Jun 08:56
sshfs-3.7.2

Choose a tag to compare

  • Added a secondary check so if a mkdir request fails with EPERM an access request will be retried

SSHFS 3.7.1

09 Nov 09:54
sshfs-3.7.1

Choose a tag to compare

  • minor bugfixes.

SSHFS 3.7.0

03 Jan 11:07
sshfs-3.7.0

Choose a tag to compare

  • New max_conns option enables the use of multiple connections to improve responsiveness during large file transfers. Thanks to Timo Savola for doing most of the implementation work, and thanks to CEA.fr for sponsoring remaining bugfixes and cleanups!

  • The buflimit workaround is now disabled by default. The corresponding bug in OpenSSH has been fixed in 2007 (cf. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=365541#37), so this shouldn't be needed anymore. If you depend on this workaround, please let the SSHFS maintainers know, otherwise support for the workaround will be removed completely in a future version.

SSHFS 3.6.0

03 Nov 09:40
sshfs-3.6.0

Choose a tag to compare

  • Added "-o direct_io" option.
    This option disables the use of page cache in kernel.
    This is useful for example if the file size is not known before reading it.
    For example if you mount /proc dir from a remote host without the direct_io
    option, the read always will return zero bytes instead of actual data.
  • Added --verbose option.
  • Fixed a number of compiler warnings.
  • Improved performance under OS X.

SSHFS 3.5.2

13 Apr 08:31
sshfs-3.5.2

Choose a tag to compare

  • Fixed "-o idmap=user" to map both UID and GID on all OSs.
  • Fixed improper handling of sequential spaces spaces in "ssh_command" option

SSHFS 3.5.1

22 Dec 14:37
sshfs-3.5.1

Choose a tag to compare

  • Documentation updates
  • Build system updates
  • Added "BindInterface" as valid "-o" option.

SSHFS 3.5.0

28 Aug 14:02
sshfs-3.5.0

Choose a tag to compare

  • Fixed error code returned by rename(), allowing proper fallback.
  • Port to Cygwin.

SSHFS 3.4.0

29 Jun 08:38
sshfs-3.4.0

Choose a tag to compare

  • Make utimens(NULL) result in timestamp "now" -- no more touched files dated 1970-01-01
  • New createmode workaround.
  • Fix fstat workaround regression.