DragonFly v1.2.1 Release Notes

Release Date: 2020-07-24 // over 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 with escape 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 an after_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.