Skip to content

Releases: openssh-rust/openssh-sftp-client

0.14.3

21 Apr 10:08
8a7c0b6
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.14.2...0.14.3

0.14.2

17 Apr 11:27
79afed9
Compare
Choose a tag to compare

What's Changed

  • Add new async fn Sftp::from_session_with_check_connection by @NobodyXu in #117

Full Changelog: 0.14.1...0.14.2

0.14.1

16 Nov 04:03
8ef69be
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.14.0...0.14.1

0.14.0

23 Aug 08:42
7e88f40
Compare
Choose a tag to compare

What's Changed

  • dep: Bump openssh from v0.9.9 to v0.10.0 (#106)

Full Changelog: 0.13.10...0.14.0

0.13.10

12 Aug 02:05
e9135a6
Compare
Choose a tag to compare

What's Changed

  • Set tokio_compat_file_write_limit to 640K by default by @NobodyXu in #103

Full Changelog: 0.13.9...0.13.10

0.13.9

09 Aug 11:00
9f7243d
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.13.8...0.13.9

0.13.8

07 Aug 08:04
5f4799a
Compare
Choose a tag to compare

Fixed

  • Drop implementation for OwnedHandle to make sure they never panic if tokio runtime is not avilable.

Full Changelog: 0.13.7...0.13.8

0.13.7

06 Aug 13:19
7ac96c1
Compare
Choose a tag to compare

Fixed

  • Drop implementation to make sure they never panic if tokio runtime is not avilable.
    • file::TokioCompatFile
    • fs::ReadDir

Full Changelog: 0.13.6...0.13.7

0.13.6

06 Jun 08:19
cd467dc
Compare
Choose a tag to compare

What's Changed

Add new option SftpOptions::tokio_compat_file_write_limit() to set write buffer limit
for file::TokioCompatFile.

Full Changelog: 0.13.5...0.13.6

0.13.5

17 May 14:17
a31798d
Compare
Choose a tag to compare

Fixed

  • Fixed #80 [file::TokioCompatFile]: Incorrect behavior about AsyncSeek
  • Fixed [file::TokioCompatFile]: leave error of exceeding buffer len in consume to handle by BytesMut
  • Fixed [file::TokioCompatFile]: Implement PinnedDrop to poll read and write futures to end,
    otherwise it would drop the internal request ids too early, causing read task to fail
    when they should not fail.
  • Fixed [fs::ReadDir]: Implement PinnedDrop to poll future stored internally,
    otherwise it would drop the internal request ids too early, causing read task to fail
    when they should not fail.

Added

  • Add new fn [Sftp::support_expand_path] to check if the server supports expand-path extension
  • Add new fn [Sftp::support_fsync] to check if the server supports fsync extension
  • Add new fn [Sftp::support_hardlink] to check if the server supports hardlink extension
  • Add new fn [Sftp::support_posix_rename] to check if the server supports posix-rename extension
  • Add new fn [Sftp::support_copy] to check if the server supports copy extension

Full Changelog: 0.13.4...0.13.5