2.0.14
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