Fs.sshfs Versions Save

Pyfilesystem2 over SSH using paramiko

v1.0.2

9 months ago

Changed

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

v1.0.1

2 years ago

Fixed

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

v1.0.0

3 years ago

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.

v0.5.2

3 years ago

Added

  • Semantic version specifiers to dependencies in setup.cfg.

v0.12.3

3 years ago

Added

  • Explicit support for Python 3.8.

Fixed

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

v0.12.2

3 years ago

Added

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

v0.12.1

3 years ago

Fixed

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

v0.12.0

3 years ago

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

  • Typos in README.rst (@jayvdb #28, @timnyborg #32).

v0.11.1

3 years ago

Changed

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

v0.11.0

3 years ago

Added

  • prefetch argument to SSHFS.openbin to enable prefetching files when they are open in reading mode.