Skip to content

Releases: C2FO/vfs

[6.18.0] - 2024-09-12

12 Sep 19:27
5ba83da
Compare
Choose a tag to compare

Added

  • Updated mocks to use mockery Expecter. Resolves #200.

[6.17.0] - 2024-09-10

10 Sep 20:56
8b7451b
Compare
Choose a tag to compare

Added

  • Added additionally-supported HostKeyAlgorithms for SFTP backend. Resolves #198.

[6.16.0] - 2024-08-24

26 Aug 15:42
27839d3
Compare
Choose a tag to compare

Security

  • Fixes #196 - Update to latest go and dependencies
    • Update .gvmrc to 1.23.0.
    • Update go.mod min version to Go 1.23.
    • Update actions to test only supported Go versions (1.22, 1.23).
    • Updated dependencies.
    • Update golangci-lint.yml for latest golang-ci-lint version.

[6.15.1] - 2024-06-18

18 Jun 20:02
535704f
Compare
Choose a tag to compare

Fixed

  • Fixed #193 - Correct method signature for EncodeAuthority to not return an error.

Security

  • Updated dependencies.

[6.15.0] - 2024-06-18

18 Jun 14:59
61cd0b1
Compare
Choose a tag to compare

Added

  • Fixed #191 - Add a util functions to encode authority strictly following RFC 3986.

[6.14.3] - 2024-06-11

11 Jun 18:26
290d57b
Compare
Choose a tag to compare

Fixed

  • Fixed #189 - Update utils authority package to handle proper encoding/decoding of uri with reserved characters.

[6.14.2] - 2024-05-30

30 May 22:00
7017a37
Compare
Choose a tag to compare

Fixed

  • Fixed #187 - Update to latest jlaffaye/ftp library to fix issue where FTPS connections were failing due to a bug in the library. Also updated dataconn to continue even if it fails to MakeDir.

[6.14.1] - 2024-05-28

28 May 17:01
71131bb
Compare
Choose a tag to compare

Fixed

  • Fixed #185 - location.Exists in FTP backend was checking if a list entry was a directory but it was was only checking the first entry.

[6.14.0] - 2024-05-15

15 May 21:52
7d662f2
Compare
Choose a tag to compare

Security

  • updated dependencies
  • update go.mod toolchain format from 1.N to 1.N.P (1.20 to 1.20.0)

[6.13.2] - 2024-05-15

15 May 21:22
a42e320
Compare
Choose a tag to compare

Fixed

  • Fixed #182 - location.Exists was checking the wrong dir for existence. Now it checks the file's parent dir for the subdir's existence.
  • Corrected where file.Close() occurs then file.Location().NewFile("somefile.txt") but was not repsecting the connection reset. Now it does.