Skip to content

Releases: veeso/suppaftp

SuppaFTP 4.1.3

01 Dec 18:18
Compare
Choose a tag to compare

4.1.3

Released on 01/12/2021

  • UNIX file parser:
    • Fixed file parsing, which didn't allow any other characters than alphanumerics for groups, users and dates
  • put_file() will now return the number of bytes written
  • Updated dependencies

SuppaFTP 4.1.2

23 Aug 10:18
Compare
Choose a tag to compare

4.1.2

Released on 23/08/2021

  • Renamed InvalidResponse to UnexpectedResponse, which makes more sense
  • Renamed File::from_unix_line to File::from_posix_line
  • Renamed UnixPexQuery to PosixPexQuery
  • Made parse_dostime private

suppaftp 4.1.1

22 Aug 18:34
Compare
Choose a tag to compare

4.1.1

Released on 22/08/2021

  • Fixed missing cli/ directory on Cargo registry.
  • Added Response struct, which will be returned in case of InvalidResponse error.
    • This adds the possibility to get the exact error code and the message
  • Added async support
  • API changes
    • renamed simple_retr to retr_as_buffer
    • renamed get to retr_as_stream
    • renamed finalize_get_stream to finalize_retr_stream
  • LIST command output parser
  • Optimized code to reuse stream functions as much as possible
  • size() and mdtm() methods will return an option no more.
  • Improved code with linter
  • Added CI tests