From 71fb839e2ba46327f8fc6a69eb811f6f72b79205 Mon Sep 17 00:00:00 2001 From: Lovell Fuller Date: Mon, 4 Apr 2016 12:48:53 +0100 Subject: [PATCH] Speed up limitInputPixels test case Update changelog --- docs/changelog.md | 8 ++++++++ test/unit/io.js | 1 + 2 files changed, 9 insertions(+) diff --git a/docs/changelog.md b/docs/changelog.md index 9c8978dd..fd0c2d44 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,6 +4,14 @@ Requires libvips v8.2.3 +#### v0.14.1 - TBC + +* Allow removal of limitation on input pixel count via limitInputPixels. Use with care. + [#250](https://github.com/lovell/sharp/issues/250) + [#316](https://github.com/lovell/sharp/pull/316) + [@anandthakker](https://github.com/anandthakker) + [@kentongray](https://github.com/kentongray) + #### v0.14.0 - 2nd April 2016 * Add ability to extend (pad) the edges of an image. diff --git a/test/unit/io.js b/test/unit/io.js index 30df745f..a6083208 100644 --- a/test/unit/io.js +++ b/test/unit/io.js @@ -879,6 +879,7 @@ describe('Input/output', function() { it('Disabling limit works', function(done) { sharp(fixtures.inputPngLarge) .limitInputPixels(false) + .resize(2) .toBuffer(function(err) { assert.strictEqual(true, !err); done();