Skip to content

Releases: althonos/fs.sshfs

v1.0.2

17 Aug 09:46
Compare
Choose a tag to compare

Changed

  • Add explicit support for Paramiko 3 (#57).

1.0.1

21 Dec 19:07
Compare
Choose a tag to compare

Fixed

  • SSHFS.move not supporting the preserve_time argument (#51).

1.0.0

29 Jan 00:33
Compare
Choose a tag to compare

Added

  • SSHFS.upload (resp. download) implementation using paramiko.SFTP.putfo
    (resp. getfo).
  • This changelog file.

Changed

  • Switched from Travis-CI and AppVeyor to GitHub Actions for continuous integration.
  • Rewrote README.rst in Markdown format.
  • Mark the project as Stable in setup.cfg classifiers.

0.13.1

18 Jan 14:00
Compare
Choose a tag to compare

Fixed

  • Make SSHFile record the mode it was created with.

0.13.0

08 Jan 17:58
v0.13.0
Compare
Choose a tag to compare

Added

  • semantic-version test requirement.
  • SSHFS.islink method with behaviour matching OSFS.islink.
  • Additional documentation of constructor arguments in SSHFS docstring.
  • Independent timeout for arbitrary SSH commands (#39).
  • Support for passing arbitrary paramiko.MissingHostKeyPolicy to SSHFS.

Changed

  • SSHFS.getinfo now follows symlinks like OSFS.getinfo.

0.12.3

28 Jan 23:32
v0.12.3
Compare
Choose a tag to compare

Added

  • Explicit support for Python 3.8.

Fixed

  • Issue with SSHFS.close when exiting while an SSHFS instance is still open.

0.12.2

28 Jan 23:32
v0.12.2
Compare
Choose a tag to compare

Added

  • Dedicated implementation of SSHFS.scandir using paramiko.SFTP.listdir_attr
    (@jwnimmer-tri #37).

0.12.1

28 Jan 23:32
v0.12.1
Compare
Choose a tag to compare

Fixed

  • Assume unknown platform is _exec_command throws an exception
    (@mrk-its #35).

0.12.0

28 Jan 23:32
v0.12.0
Compare
Choose a tag to compare

Added

  • Explicit support for Python 3.7.
  • Section documenting the support of sftp FS URLs to README.rst.
  • support_rename key to the SSHFS.getmeta options.
  • SSHFS.move implementation using the paramiko.SFTP.rename function.

Fixed

0.11.1

28 Jan 23:32
v0.11.1
Compare
Choose a tag to compare

Changed

  • Replace cached-property dependency with improved property-cached fork.