Comfortable Mexican Sofa v2.0.14 Release Notes

Release Date: 2018-04-09 // about 6 years ago
  • ๐Ÿ‘ 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