Skip to content

Latest commit

 

History

History
77 lines (47 loc) · 3.2 KB

changelog.md

File metadata and controls

77 lines (47 loc) · 3.2 KB

Changelog

Version 1.1.0

  • Added better ETag (AWS vs. local) comparison from pull request #16
    • Added option etag_hash just in case AWS ETag comparison is not MD5 algorithm. More info here.
  • Plugin is now ASYNC!
    • @thomaswelton beat me to the punch, but I've added it (and the ETag comparing) to be the first feature in our next minor version! Horray!
    • From pull request #14
  • Updated Readme, cleaned up code.

Version 1.0.5

  • Added SDK config discovery + https_proxy support from pull request #12.
  • Removed requirement to have AWS Key/Secret (due to settings be in IAM), as per pull request #13.

Version 1.0.4

  • Forgot to add a Readme entry for charset option.

Version 1.0.3

  • Allow charset option so S3 will give the correct Content-Type, as per pull request #8
  • Update some comments

Version 1.0.2

  • Put metadata into its own var to prevent mutation between files, as per pull request #7
  • Clean up comments and update others.

3/11/2015

Version 1.0.1

  • Update to use headObject as reccomended by pull request #6
  • Update logging and colors.
  • Fix typos in Readme.

Version 1.0

  • See changes beta-1.0 changes.
  • Added uploadNewFilesOnly flag option.
  • Fixed issue #3, files stopping at a certain number consistently.

Version beta-1.0

  • AWS constructor now follows AWS-SDK constructor parameters..
  • pipe transform s3() now only takes one options param that is parallel to the AWS-S3 putObject method.
    • This makes the parameters case-sensitive.
    • Transforms are filtered out of the options param.
  • Changed lookup/transform options:
    • name_transform to keyTransform (or nameTransform)
    • mime_type_lookup to mimeTypeLookup
  • Added metadataMapper as an option (see docs for more details).
  • ACL option for putObject no longer defaults to public-read. Must be user defined.

Version 0.8.6

  • Unchanged the name_transform & mime_type_lookup function names; could break. Will change in Version 1

Version 0.8.5

  • Added optional second paramter that takes
  • Merged a pull request to allow the AWS constructor to take any parameters based on the AWS Config documentation.
  • Merged a pull request to allow for an different mime-type lookup.
  • Updated Readme.md to reflect new updates.
  • Added roadmap.md to document upcoming changes.
  • Added a changlog!