Skip to content

Releases: robtimus/sftp-fs

2.0.2

12 Nov 17:18
Compare
Choose a tag to compare

SFTPFileSystemProvider now returns false instead of throwing a ClassCastException if the second argument to isSameFile is not an SFTP path.

2.0.1

10 Nov 11:04
Compare
Choose a tag to compare

Added missing provides clause to the module descriptor.

2.0

10 Oct 13:19
Compare
Choose a tag to compare
2.0

Updated to require Java 8; Java 7 is no longer supported.

Specified an explicit automatic module name: com.github.robtimus.filesystems.sftp. There's no proper module descriptor yet, as not all dependencies define a module name.

Remove all deprecated methods from SFTPEnvironment.

sftp-fs-1.4

26 Feb 20:05
Compare
Choose a tag to compare

Added Identity.fromData that accepts the private key and public key as byte arrays, so no files are needed.

sftp-fs-1.3.3

24 Sep 16:15
Compare
Choose a tag to compare

SFTPFileSystemProvider.createDirectory now correctly throws a FileAlreadyExistsException if the directory to create already exists.

sftp-fs-1.3.2

18 Aug 12:59
Compare
Choose a tag to compare

Added logging to SSHChannelPool. If SLF4J is present, SSHChannelPool will add debug logging of major events like removing channels from or adding channels to the pool.

sftp-fs-1.3.1

31 Jul 13:48
Compare
Choose a tag to compare

When . and .. are not returned when listing a directory, the file attributes are checked to prevent throwing an incorrect NotDirectoryException.

sftp-fs-1.3

25 May 14:02
Compare
Choose a tag to compare

Using SFTPEnvironment.withClientConnectionWaitTimeout it's now possible to specify how long operations should wait when retrieving a connection from the connection pool. If this timeout expires an exception is thrown. The default is to wait indefinitely.

sftp-fs-1.2.1

21 Feb 21:33
Compare
Choose a tag to compare

SFTPFileSystemProvider.keepAlive no longer throws a ProviderMismatchException for SFTPFileSystems.

sftp-fs-1.2

28 Dec 19:49
Compare
Choose a tag to compare

Added SFTPEnvironment.withIdentity, SFTPEnvironment.withIdentities and SFTPEnvironment.withKnownHosts.
Fixed a NullPointerException if a null password was set.