Skip to content

Releases: althonos/fs.sshfs

0.6.0

28 Jan 23:32
Compare
Choose a tag to compare

Fixed

  • Test dependencies being unconditionally installed
    (@ReimarBauer #1).

0.5.2

28 Jan 23:35
Compare
Choose a tag to compare

Added

  • Semantic version specifiers to dependencies in setup.cfg.

0.5.1

28 Jan 23:32
Compare
Choose a tag to compare

Fixed

  • Potential bug occuring with _SSHFileWrapper.truncate(0).
  • seek and truncate methods of _SSHFileWrapper returning None.

0.5.0

28 Jan 23:32
Compare
Choose a tag to compare

Added

  • Missing docstrings to fs.sshfs module members.
  • SSFS.geturl implementation, allowing to retrieve an SSH URL
    for the download purpose.
  • Allow SSHFS to use SSH configuration values (from ~/.ssh/config for instance)
    if the given host is found in it.

Changed

  • Make tests run against the local version of the code, allowing tests to
    run without having to install the module first.
  • Rewrite docstrings in Google style to be consistent with PyFilesystem2
    documentation style.

Removed

  • SSHFS.getsyspath implementation.

0.4.0

31 Aug 17:50
Compare
Choose a tag to compare

Added

  • Extraction of user/group with uid/gid if remote platform is Unix.

Changed

  • Switched to green to run tests in CI environment.

0.3.0

31 Aug 17:50
Compare
Choose a tag to compare

Changed

  • Added opener entry points to setup.cfg to be compatible with the new
    plugin architecture for FS URL openers.

0.2.0

26 Jun 14:23
Compare
Choose a tag to compare

Added

  • Heuristic to guess the server platform using either uname or sysinfo.

Changed

  • Use custom function to extract info and details from status results
    instead of using the builtin OSFS one.
  • Use plain enums instead of enum.Flag to record the server platform.

Fixed

  • Invalid license classifiers in project metadata.

0.1.0

26 Jun 14:24
Compare
Choose a tag to compare

Initial release.

0.2.2

31 Aug 12:11
Compare
Choose a tag to compare

Fixed

  • Typo in README.rst.

Changed

  • Make setuptools build version-specific wheels.

0.2.1

31 Aug 12:10
Compare
Choose a tag to compare

Changed

  • Use setup.cfg to configure the project installation.
  • Dynamically load version of the installed package in fs.sshfs and
    fs.opener.sshfs instead of hardcoding it in a file.

Fixed

  • nosetests mistaking base TestSSHFS for a test case.
  • nosetests requiring rednose as a setup requirement.
  • Typos in README.rst.