Releases: anthonycastelli/s3-storage
Releases · anthonycastelli/s3-storage
Latest Vapor Release
Merge pull request #4 from vkill/patch-1 Support the latest Vapor
Signing Package
1.0.0-rc.4 adapter: Fix a double self
Encoding Fix
1.0.0-rc.3.1 encoding: Fix an an issue with NSCharacterSets
ACL Headers
Added basic ACL headers to StorageMetadata
Content MD5 Hash Fix
Thank you @jimmya for the MD5 Fix
Cleanup
Clean up a few files and make sure things actually work as expected.
DELETE
return req.withStorage(to: .s3) { storage in
return try storage.delete(object: "path/to/file.png", in: "bucket", on: req)
}
PUT
return req.withStorage(to: .s3) { storage in
return try storage.create(object: "path/to/file.png", in: "bucket", with: data, metadata: nil, on: req)
}
Initial Release
1.0.0-rc Clean up the project a bit