Sbt S3 Resolver Versions Save

:cloud:Amazon S3-based resolver for sbt

v0.19.0

6 years ago
  • #57: Changed awsProfile type to Option[String] and changed s3region and s3credentials defaults to depend on it (by @tsuyoshizawa):

    By default awsProfile is set to None which means that both region and credentials will be set from the default provider chains. And if you change it, s3region and s3credentials will both use given profile region and credentials.

    This makes these two settings more consistent, but also introduces a potentially breaking change: if you used some unusual setting for s3region or s3credentials, check their values after this update:

    > show s3region
    > showS3Credentials
    
  • This release also deprecates conversions related to credential providers: | for chaining and implicit conversion from File. Use AWS Java SDK explicitly instead.

v0.18.0

6 years ago
  • #55: Changed s3acl type to Option[S3ACL]: when it's unset, artifacts will be published inheriting the bucket ACL (by @hkupty)

v0.17.1

6 years ago

This is a bugfix release, it updates to ivy-s3-resolver v0.12.0 which solves the problem with redundant delimiters the ivy-style patterns introduced in sbt 1.0 (see sbt/sbt#3573).

The problem was reported and handled in the underlying library by Michael Ahlers @michaelahlers:

v0.17.0

6 years ago
  • #51: Upgraded to SBT 1.x (by @macalinao)
  • #25: Published to Bintray community repository
  • #35: Added storage class setting
  • Upgraded to ivy-s3-resolver v0.11.0

IMPORTANT

This release is affected by the problem with redundant delimiters in the ivy-style patterns introduced in sbt 1.0 (see sbt/sbt#3573). You are strongly recommended to update to the next version which contains a fix for it.

v0.16.0

6 years ago
  • Updates for compatibility with EU Frankfurt AWS Region (See #49 & #47)
  • Updated ivy-resolver dependency (with important updates to AWS Java SDK)
  • Fixed how toHttps method works for different regions with different endpoint prefixes
  • Changed Region type to com.amazonaws.regions.Region
  • Changed default region setting to DefaultAwsRegionProviderChain; added implicit conversions

v0.15.0

7 years ago
  • Upgraded to the ivy-s3-resolver v0.9.0

v0.14.0

8 years ago
  • Upgraded to the ivy-s3-resolver v0.8.0 with support for server side encryption (see #46) by @pityka

v0.13.1

8 years ago
  • Updated ivy-s3-resolver to 0.7.1. It solves the Java incompatibility issue #38.

v0.13.0

8 years ago
  • It is now an auto plugin, meaning that you don't need to load any defaults and do manual imports, just add it to your project/plugins.sbt and enjoy
  • Added profile credentials provider; simplified the default providers chain:
    • profile credentials from ~/.aws/credentials (same as you use form AWS command line tools). You can choose profile by setting awsProfile key.
    • EC2 instance metadata.
  • Added s3acl Access Control List configuration parameter (which defaults to PublicRead) (thanks @anzecesar, see #36)
  • Added converter of an S3 bucket address to https

v0.12.0

9 years ago