Skip to content

Releases: veeso/suppaftp

suppaftp 5.1.1

03 Apr 08:12
Compare
Choose a tag to compare

5.1.1

Released on 03/04/2023

  • ImplFtpStream and ImplAsyncFtpStream are now public

suppaftp 5.1.0

02 Mar 16:49
686e450
Compare
Choose a tag to compare

5.1.0

Released on 02/03/2023

  • Implemented new connection method connect_timeout with the possibility to specify a timeout on connect

suppaftp 5.0.1

26 Feb 13:03
Compare
Choose a tag to compare

5.0.1

Released on 26/02/2023

  • Exposed publicly DataStream and AsyncDataStream

suppaftp 5.0.0

24 Feb 15:07
7b252ed
Compare
Choose a tag to compare

5.0.0

Released on 24/02/2023

  • Issue 33 ‼️ BREAKING CHANGES ‼️
    • Features are now additive. This means that you can successfully build suppaftp with all the features enabled at the same time.
    • Ftp stream has now been split into different types:
      • FtpStream: sync no-tls stream
      • NativeTlsFtpStream: ftp stream with TLS with native-tls
      • RustlsFtpStream: ftp stream with TLS with rustls
      • AsyncFtpStream: async no-tls stream
      • AsyncNativeTlsFtpStream: async ftp stream with TLS with async-native-tls
      • AsyncRustlsFtpStream: async ftp stream with TLS with async-rustls

suppaftp 4.7.0

01 Feb 14:28
Compare
Choose a tag to compare

4.7.0

Released on 01/02/2023

  • RFC 2428 implementation
  • Updated suppaftp-cli to suppaftp 4.7.0

suppaftp 4.6.1

26 Jan 13:39
Compare
Choose a tag to compare

4.6.1

Released on 26/01/2023

  • suppaftp::list::File now derives the core::hash::Hash trait

suppaftp 4.6.0

09 Jan 11:05
Compare
Choose a tag to compare

4.6.0

Released on 09/01/2023

  • MDTM now returns NaiveDateTime since the command won't provide timezone

suppaftp 4.5.2

10 Oct 12:54
Compare
Choose a tag to compare

4.5.2

Released on 10/10/2022

  • Fixed missing export of tls stream

suppaftp 4.5.1

08 Oct 16:46
Compare
Choose a tag to compare

4.5.1

Released on 08/10/2022

  • Export TlsStream when async secure

suppaftp 4.5.0

08 Oct 14:16
Compare
Choose a tag to compare

4.5.0

Released on 08/10/2022

  • Added native-tls-vendored and async-native-tls-vendored features to link OpenSSL statically
  • suppaftp-cli as a separate package.
  • Rustls support
  • ‼️ BREAKING CHANGE: refactored secure features:
    • REMOVED secure/async-secure feature
    • Use native-tls to enable TLS support with native-tls crate
    • Use async-native-tls to enable async TLS support with async-native-tls crate
    • Use rustls to enable TLS support with rustls crate
    • Use async-rustls to enable TLS support with async-tls crate