- Setup Greenkeeper
- Feature: Support s3 options (custom metadata, etc...)
- Feature: replace graphicsmagick-stream by gm
- Fix: Content-Type not set in AWS S3
- Update dev. dependencies
BREAKING CHANGE:
Before:
apt-get install build-essential libgraphicsmagick++1-dev libarchive-dev
After:
apt-get install graphicsmagick
Before:
gm: {
pool: 5, // how many graphicsmagick processes to use
format: 'png', // format to convert to
scale: {
width: 200, // scale input to this width
height: 200, // scale input this height
type: 'contain' // scale type (either contain/cover/fixed)
},
crop: {
width: 200, // crop input to this width
height: 200, // crop input this height
x: 0, // crop using this x offset
y: 0 // crop using this y offset
},
rotate: 'auto', // auto rotate image based on exif data
// or use rotate:degrees
density: 300, // set the image density. useful when converting pdf to images
}
After:
gm: { // [Optional]: define graphicsmagick options
width: 200, // doc: http://aheckmann.github.io/gm/docs.html#resize
height: 200,
options: '!',
format: 'png' // Default: jpg
}
- Update dev. supertest
- Update dev. dependencies
- fix code style issues
- Update s3fs 2.3->2.4
- Update dev. dependencies
- BREAKING CHANGE: option reqfilename replaced by filename (function)
- Update dependencies
- Remove global variables
- Update dependencies
- Tests NodeJS 2-4
- Addd Travis tests with nodejs 4.0
- Update dependencies
- Add Travis build
- First release