Skip to content

Release v2.2.25 - 2016-03-08

Compare
Choose a tag to compare
@awood45 awood45 released this 08 Mar 22:14
· 4169 commits to version-3 since this release

Tag release v2.2.25

  • Feature - Aws::DeviceFarm - Adds support for XCUI.

  • Feature - Aws::CodeCommit - Adds new APIs for code browsing and triggers.

  • Issue - Aws::S3 - Aws::S3::Object#presigned_url now correctly defaults the
    URL scheme to the HTTP scheme of the configured endpoint.

    s3 = Aws::S3::Resource.new(endpoint:'http://localhost:3000')
    obj = s3.bucket('bucket-name').object('object-key')
    obj.presigned_url(:get)
    #=> "http://..."

    See related GitHub pull request #1027