Skip to content

Releases: Turistforeningen/node-s3-uploader

v2.0.3

24 Nov 20:32
Compare
Choose a tag to compare

<a name"2.0.3">

2.0.3 (2016-11-24)

Bug Fixes

  • upload: correct url for cn-north-1 S3 region (ebb4dcc5)

v2.0.2

19 Aug 21:33
Compare
Choose a tag to compare

<a name"2.0.2">

2.0.2 (2016-08-19)

Bug Fixes

  • eslint:
    • resolve import/no-extraneous-dependencies error (191d07dc)
    • resolve no-mixed-operators errors (d2ad1525)
  • upload: re-order async.auto callback popperties (c0c53aaf)

v2.0.1

24 Jun 11:35
Compare
Choose a tag to compare

<a name"2.0.1">

2.0.1 (2016-06-24)

Bug Fixes

  • package: remove test dir from npm to reduce package size (a35892ab)

v2.0.0

24 Jun 10:49
Compare
Choose a tag to compare
npm install s3-uploader@2.0.0

Breaking Changes:

  • image file size is now returned as bytes #55
  • node-uuid is now default random path generator #60 #52

You can configure s3-uploader to use the old path generator, but be warned that we do not recommend this for production systems with a lot of uploads as it may be prone to collisions.

var upload = new Upload(process.env.AWS_BUCKET_NAME, {
  randomPath: require('@starefossen/rand-path')
});

Major Changes:

  • replace all CoffeeScript with vanilla JavaScript #57 #40
  • rewritten in EcmaScript 6, and require Node.JS v4 #79 #63

v2.0.0-rc.1

12 Nov 21:45
Compare
Choose a tag to compare
v2.0.0-rc.1 Pre-release
Pre-release
npm install s3-uploader@2.0.0-rc.1

Breaking Changes:

  • image file size is now returned as bytes #55
  • node-uuid is now default random path generator #60 #52

You can configure s3-uploader to use the old path generator, but be warned that we do not recommend this for production systems with a lot of uploads as it may be prone to collisions.

var upload = new Upload(process.env.AWS_BUCKET_NAME, {
  randomPath: require('@starefossen/rand-path')
});

Major Changes:

  • replace all CoffeeScript with vanilla JavaScript #57 #40

v1.1.0

12 Nov 12:17
Compare
Choose a tag to compare
npm install s3-uploader@1.1.0 --save

New Features:

  • add support for custom random path generator functions #41
  • add support for AWS Cache Control headers #45 (thanks to @DavidBennettUK)
  • add support for uploading image with absolute path #47 (thanks to @yudapc)

Dependencies:

  • upgrade aws-sdk to ^2.2.9

Documentation:

  • update list of project collaborators #53

v1.1.0-rc.2

14 Oct 19:21
Compare
Choose a tag to compare
v1.1.0-rc.2 Pre-release
Pre-release
npm install s3-uploader@1.1.0-rc.2 --save

New Features:

  • add support for uploading image with absolute path #47 (thanks to @yudapc)

Dependencies:

  • upgrade aws-sdk to ^2.2.9

v1.1.0-rc.1

14 Oct 17:19
Compare
Choose a tag to compare
v1.1.0-rc.1 Pre-release
Pre-release
npm install s3-uploader@1.1.0-rc.1 --save

New Features:

  • add support for custom random path generator functions #41
  • add support for AWS Cache Control headers #45 (thanks to @DavidBennettUK)

v1.0.1

22 Sep 10:57
Compare
Choose a tag to compare
npm install s3-uploader@1.0.1 --save

Bug Fixes:

  • Fixed typo in default acl param #44
  • Fixing typo in acl documentation #43

v1.0.0

29 Jul 07:32
Compare
Choose a tag to compare
npm install s3-uploader@1.0.0 --save

Major Changes:

This package now requires ImageMagick! ImageMagick v6.8 or more recent.

  • gm has been replaced by im-resize and im-metadata #24

Breaking Changes:

  • awsBucketRegion is replaced by aws.region (deprecated since v0.7.0)
  • awsBucketPath is replaced by aws.path (deprecated since v0.7.0)
  • awsBucketAcl is replaced by aws.acl (deprecated since v0.7.0)
  • awsMaxRetries is replaced by aws.maxRetries (deprecated since v0.7.0)
  • awsHttpTimeout is replaced by aws.httpOptions.timeout (deprecated since v0.7.0)
  • awsAccessKeyId is replaced by aws.accessKeyId (deprecated since v0.7.0)
  • awsSecretAccessKey is replaced by aws.secretAccessKey (deprecated since v0.7.0)
  • tmpDir is replaced by resize.path
  • resizeQuality is replaced by resize.quality

New Features:

Bug Fixes:

  • Correctly resolve AWS S3 URL for us-east-1 region #28