DragonFly v1.2.1 Release Notes
Release Date: 2020-07-24 // about 3 years ago-
๐ Features
- ๐ Allow having no logger (setting to
nil
) (kaimou1357) Fixes
- ๐ Fix URI.unescape deprecation warning (alberto-mota)
# 1.2.0 (2018-11-13)
Fixes
- Replaced
quote
withescape
for escaping shell commands - works with paths with apostrophes Changes
- Replaced Open3.popen3 with now recommended Open3.capture3 (tomasc)
# 1.1.5 (2018-03-23)
Fixes
- Moved
destroy_dragonfly_attachments
into anafter_destroy
- issue #477 (eldotz)
# 1.1.4 (2017-12-31)
Fixes
- ๐ Fixed data uris not working for long strings (reported dlibanori)
- โ Removed syntax warnings (swamp09)
- ๐ Correct ActiveRecord hook with
ActiveSupport.on_load
(efatsi)
# 1.1.3 (2017-06-02)
Fixes
- โก๏ธ Make sure imagemagick convert processor updates mime_type correctly when format is changed
# 1.1.2 (2017-05-06)
Fixes
- ๐ Allow relative redirect urls in
fetch_url
(zorec) - ๐ Fixed Forwardable deprecation warnings (neodude)
- ๐ Fixed incorrect detection of empty directories in ruby 2.4 (yuszuv)
- Store content type in meta if it's available so we don't lose information (Lukas Svoboda)
# 1.1.1 (2016-10-26)
Features
- โ Added delegate option for imagemagick (Will Fisher)
๐ Fixes
- ๐ Use
Base64.urlsafe_encode64
(Jan Raasch) Note that this changes b64 encodings from '/' to'_'
and '+' to '-' in URLs, which will change a very small number of generated URLs (but shouldn't be enough to cause big recaching problems) URLs are encoded now according to the URL safe base64 specification in RFC 4648. Old URLs are still recognized so won't break.
- ๐ Allow having no logger (setting to