Releases: libfuse/sshfs
SSHFS 3.7.5
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
- @g-easy made their first contribution in #277
- @thomasmerz made their first contribution in #289
- @h4sh5 made their first contribution in #295
- @jpalus made their first contribution in #305
- @manu0401 made their first contribution in #314
Full Changelog: sshfs-3.7.3...sshfs-3.7.5
SSHFS 3.7.3
-
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
- Added a secondary check so if a mkdir request fails with EPERM an access request will be retried
SSHFS 3.7.1
- minor bugfixes.
SSHFS 3.7.0
-
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
buflimitworkaround 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
- 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
- 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
- Documentation updates
- Build system updates
- Added "BindInterface" as valid "-o" option.
SSHFS 3.5.0
- Fixed error code returned by rename(), allowing proper fallback.
- Port to Cygwin.
SSHFS 3.4.0
- Make utimens(NULL) result in timestamp "now" -- no more touched files dated 1970-01-01
- New
createmodeworkaround. - Fix
fstatworkaround regression.