Skip to content

Releases: lendup/fs2-blobstore

Add GcsStore (Google Cloud storage)

03 Sep 23:17
14b32de
Compare
Choose a tag to compare
Merge pull request #53 from matthewgraf/master

Bump version to 0.5.0, add changelog for GcsStore

Update S3Store to use other TransferManager methods when possible

17 Dec 18:34
7b6c6d6
Compare
Choose a tag to compare

Migrating AmazonS3 method calls to their TransferManager equivalent, which may improve reliability of transferring large files.

S3Store can now put(file.size > 5GB)

05 Dec 20:04
a2ab6bb
Compare
Choose a tag to compare

Instantiating the S3Store will require the s3.transfer.TransferManager, instead of the s3.AmazonS3.

Recommended migration:

val transferManager: TransferManager = TransferManagerBuilder.standard()
.withS3Client(yourOldClient)
.build()

val store: Store[IO] = S3Store[IO](transferManager, blockingExecutionContext = yourOldExecutionContext)