Releases: openssh-rust/openssh-sftp-client
Releases · openssh-rust/openssh-sftp-client
0.14.3
0.14.2
0.14.1
What's Changed
- Bump actions/checkout from 3 to 4 by @dependabot in #108
- Release openssh-sftp-client v0.14.1 by @silver-ymz in #113
Full Changelog: 0.14.0...0.14.1
0.14.0
0.13.10
0.13.9
What's Changed
- Fix invalid response id after closing file in blocking context by @silver-ymz in (#100 #101)
Full Changelog: 0.13.8...0.13.9
0.13.8
Fixed
Drop
implementation forOwnedHandle
to make sure they never panic if tokio runtime is not avilable.
Full Changelog: 0.13.7...0.13.8
0.13.7
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
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
Fixed
- Fixed #80 [
file::TokioCompatFile
]: Incorrect behavior aboutAsyncSeek
- Fixed [
file::TokioCompatFile
]: leave error of exceeding buffer len inconsume
to handle byBytesMut
- Fixed [
file::TokioCompatFile
]: ImplementPinnedDrop
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
]: ImplementPinnedDrop
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