All Versions
13
Latest Version
Avg Release Cycle
110 days
Latest Release
1591 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v4.11.0 Changes
November 06, 2020 -
v4.10.1 Changes
January 06, 2020- Still pick up ImageMagick over GraphicsMagick if both are installed
-
v4.10.0 Changes
January 06, 2020- Prioritize discovery of ImageMagick 7 over 6 if both are installed (@drnic)
- โ Add
MiniMagick::Image#landscape?
and#portrait?
methods for checking orientiation (@theomarkkuspaul) - ๐ Fix Ruby 2.7 warnings (@kamipo)
-
v4.9.5 Changes
July 18, 2019- ๐ Fixed
MiniMagick::Image.open
not working with non-ASCII filenames anymore after previous version (thanks to @meganemura)
- ๐ Fixed
-
v4.9.4 Changes
July 11, 2019- ๐ Fixed a remote shell execution vulnerability when using
MiniMagick::Image.open
with URL coming from unsanitized user input (thanks to @rootxharsh) - ๐ Fixed some Ruby warnings (thanks to @koic)
- ๐ Fixed a remote shell execution vulnerability when using
-
v4.9.3 Changes
April 08, 2019- ๐ make
MiniMagick::Tool
not respond to everything
- ๐ make
-
v4.9.2 Changes
September 21, 2018- ๐ Fix breakage for MRI 2.3 and below
-
v4.9.1 Changes
September 21, 2018- ๐ Properly handle EXIF parsing with ImageMagick 7
- ๐ป Show an informative exception message on
Timeout::Error
- Wait for the MiniMagick command to terminate after sending SIGTERM with open3
-
v4.9.0 Changes
September 21, 2018๐ New features
๐ Support ImageMagick 7
MiniMagick::Tool::Convert
will now generatemagick convert
commands (and the same for others)
-
MiniMagick::Tool::Magick
was added for generatingmagick
commands๐ง
MiniMagick.cli_prefix
was added to configure a prefix for commandsMiniMagick.cli\_prefix = "firejail"MiniMagick::Tool::Magick.new { |magick| ... } # executes `firejail magick ...`
Other Improvements
๐ Fix deadlocks when using
posix-spawn
as a shell backend๐ Fix
Errno::ESRCH
sometimes being raised when the ImageMagick command would time out#label
and#caption
will now generate regular optionsMiniMagick::Tool::Convert.new do |convert| # BEFORE: NOW: convert.label("foo") # label:foo -label foo convert.caption("bar") # caption:bar -caption barend
โ Add
pango
creation operatorMiniMagick::Tool::Magick.new do |magick| magick.pango("...") # pango:...# ...end
๐ Handle GraphicsMagick returning
unknown
in EXIF data -
v4.8.0 Changes
July 06, 2017- โ Add options to
MiniMagick::Image.open
which are forwarded toopen-uri
when URL is used (@acrogenesis) - ๐ Fixed
MiniMagick::Image#get_pixels
not returning all pixels for images that have first or last bytes that could be interpreted as control characters in their RGB output (@LAndreas)
- โ Add options to