All Versions
11
Latest Version
Avg Release Cycle
53 days
Latest Release
1549 days ago

Changelog History
Page 1

  • v2.0.19 Changes

    December 31, 2019
    • ๐Ÿ‘Œ Support for Rails 6.0 (file upload bug is fixed)
  • v2.0.18 Changes

    March 16, 2019
    • ๐Ÿ›  Fixing bugs mostly related to ActiveStorage attachments
    • ๐Ÿ—„ Since Ruby SASS is getting deprecated dependency is changed from sass-rails to sassc-rails
    • Minor tweaks that accumulated over the last several months.

    Note that existing Files might get their labels blanked-out. There was a label method that would output filename if label is blank. Now label is always set during creation.

  • v2.0.17 Changes

    March 18, 2019

    ๐Ÿ— Quick fix so proper form builder is used.

  • v2.0.16 Changes

    May 23, 2018
    • ๐Ÿ›  Fixing ERB injection vulnerability with #825. Good idea to upgrade if you're letting un-trusted users edit content.
    • โšก๏ธ Updating vendored Bootstrap to v4.1.1
  • v2.0.15 Changes

    April 30, 2018
    • โšก๏ธ Updated Spanish translations
    • ๐Ÿ†• New Finnish translations
    • Fixing issue with cms_snippet_render and cms_fragment_render not working with some tags.
  • v2.0.14 Changes

    April 09, 2018

    ๐Ÿ‘ Content tags have support for nested hashes and arrays. For example:

    {{ cms:partial "path/to/partial", foo: { a: b, c: d }, bar: [a, b, c] }}
    

    Will translate to:

    <%= render partial: "path/to/partial", locals: {"foo" => {"a" => "b", "c" => "d"}, "bar" => ["a", "b", "c"] } %>
    

    Keep in mind that hash keys and values are always going to be strings

    ๐Ÿ‘€ Also fixed how AS variants are using image magic options. See rails/rails#31518 for details

  • v2.0.13 Changes

    March 13, 2018

    ๐Ÿš€ This release is brought you by @glebm

    New tag: page_file_link

    It's similar to file_link tag that you can link previously uploaded files into content somewhere. Difference is that this tag links files uploaded for a specific page. Basically, you set up a bucket with all the files and then you can selectively drop them into the content.

    Example set up:

    On Layout content have {{ cms:files attachments, render: false }} tag defined.

    ๐Ÿ‘€ During page creation populate that field with files and save. Now, during editing you may drag-and-drop previously uploaded files. See PR for more details: #799

    Ability to drag and drop is also extended to files uploaded site-wide.

    ๐Ÿ‘€ See it in action:

    File linking in action

    • ๐Ÿš… All Javascript is converted from Coffeescript back to Javascript. Dependency on coffee-rails is dropped.
    • ๐Ÿ‘Œ Support for Ruby < 2.3 is dropped. All strings are frozen now.
  • v2.0.12

    February 17, 2018
  • v2.0.11

    February 08, 2018
  • v2.0.10 Changes

    February 08, 2018
    • ๐Ÿ’… From 2.0.0 to 2.0.10 there were mostly small bug fixes and general polish updates.
    • Now CMS is using Bootstrap 4 final in the admin area.
    • ๐Ÿ’… Bootstrap is shipped inside /app/assets/{stylesheets|javascripts}/comfy/vendor/bootstrap
    • ๐Ÿ’Ž bootstrap_form is replaced with comfy_bootstrap_form as former doesn't support Bootstrap 4 still.
    • ๐Ÿ‘€ Locale files are a little bit more complete. See: #771