diff --git a/docs/changelog.md b/docs/changelog.md index a0704ce9..f102b9bf 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -12,6 +12,14 @@ Requires libvips v8.2.3 [@anandthakker](https://github.com/anandthakker) [@kentongray](https://github.com/kentongray) +* Use final output image for metadata passed to callback. + [#399](https://github.com/lovell/sharp/pull/399) + [@salzhrani](https://github.com/salzhrani) + +* Add support for writing tiled images to a zip container. + [#402](https://github.com/lovell/sharp/pull/402) + [@felixbuenemann](https://github.com/felixbuenemann) + * Allow use of embed with 1 and 2 channel images. [#411](https://github.com/lovell/sharp/issues/411) [@janaz](https://github.com/janaz) diff --git a/package.json b/package.json index 12afd284..654e8c24 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sharp", - "version": "0.14.0", + "version": "0.14.1", "author": "Lovell Fuller ", "contributors": [ "Pierre Inglebert ", @@ -20,7 +20,9 @@ "Chris Riley ", "David Carley ", "John Tobin ", - "Kenton Gray " + "Kenton Gray ", + "Felix Bünemann ", + "Samy Al Zahrani " ], "description": "High performance Node.js module to resize JPEG, PNG, WebP and TIFF images using the libvips library", "scripts": { @@ -49,11 +51,11 @@ "vips" ], "dependencies": { - "bluebird": "^3.3.4", + "bluebird": "^3.3.5", "color": "^0.11.1", "nan": "^2.2.1", "semver": "^5.1.0", - "request": "^2.69.0", + "request": "^2.71.0", "tar": "^2.2.1" }, "devDependencies": { @@ -62,7 +64,7 @@ "coveralls": "^2.11.9", "exif-reader": "^1.0.0", "icc": "^0.0.2", - "istanbul": "^0.4.2", + "istanbul": "^0.4.3", "mocha": "^2.4.5", "mocha-jshint": "^2.3.1", "node-cpplint": "^0.4.0", diff --git a/test/unit/alpha.js b/test/unit/alpha.js index bc7114c7..026cc8f3 100644 --- a/test/unit/alpha.js +++ b/test/unit/alpha.js @@ -53,7 +53,7 @@ describe('Alpha transparency', function() { assert.strictEqual(true, info.size > 0); assert.strictEqual(32, info.width); assert.strictEqual(32, info.height); - fixtures.assertSimilar(fixtures.expected('flatten-rgb16-orange.jpg'), data, done); + fixtures.assertSimilar(fixtures.expected('flatten-rgb16-orange.jpg'), data, { threshold: 6 }, done); }); });