In this release we have added a uri
method to the FileDescriptor
data type. The uri
method can be used to produce a java.net.URI
from a FileDescriptor
.
import com.kevel.apso.io._
val localFD = FileDescriptor("file:///tmp/one/two/three")
localFD.uri
// Returns java.net.URI = file:///tmp/one/two/three
val s3FD = FileDescriptor("s3://my-bucket/key")
s3FD.uri
// Returns java.net.URI = s3://my-bucket/key
Added
- Add a
uri
method toFileDescriptor
(#756).
Changed
- Update aws-java-sdk-core, aws-java-sdk-s3 to 1.12.776 (#749).
- Update sbt, scripted-plugin to 1.10.3 (#750).
- Update aws-java-sdk-s3 to 1.12.777 (#751).
- Update sbt, scripted-plugin to 1.10.4 (#752).
- Update bcpkix-jdk18on, bcprov-jdk18on to 1.79 (#753).
- Update unirest-java-core to 4.4.5 (#754).
- Update sbt, scripted-plugin to 1.10.5 (#755).