Sha256: 2ac384c57dbe214f7d92d0500b0725f5ceed71de45f4aa63ac0bbcde00f6d51c

Contents?: true

Size: 729 Bytes

Versions: 69

Compression:

Stored size: 729 Bytes

Contents

= New Features

* The render plugin :escape option value can now be a string or an
  array of strings, and then the plugin will will only add the
  :escape template option for those specific template engines given.
  By default, the :escape plugin option adds the :escape template
  option for all engines, which breaks the usage with some engines
  (such as the rcsv engine).

* The convert! and convert_each! methods in the typecast_params plugin
  now support a :skip_missing option to support not storing missing
  parameters:

    typecast_params.convert! do |tp|
      tp.int('missing')
    end
    # => {'missing'=>nil}
    typecast_params.convert!(skip_missing: false) do |tp|
      tp.int('missing')
    end
    # => {}

Version data entries

69 entries across 69 versions & 1 rubygems

Version Path
roda-3.83.0 doc/release_notes/3.15.0.txt
roda-3.82.0 doc/release_notes/3.15.0.txt
roda-3.81.0 doc/release_notes/3.15.0.txt
roda-3.79.0 doc/release_notes/3.15.0.txt
roda-3.78.0 doc/release_notes/3.15.0.txt
roda-3.77.0 doc/release_notes/3.15.0.txt
roda-3.76.0 doc/release_notes/3.15.0.txt
roda-3.75.0 doc/release_notes/3.15.0.txt
roda-3.74.0 doc/release_notes/3.15.0.txt
roda-3.73.0 doc/release_notes/3.15.0.txt
roda-3.72.0 doc/release_notes/3.15.0.txt
roda-3.71.0 doc/release_notes/3.15.0.txt
roda-3.70.0 doc/release_notes/3.15.0.txt
roda-3.69.0 doc/release_notes/3.15.0.txt
roda-3.68.0 doc/release_notes/3.15.0.txt
roda-3.67.0 doc/release_notes/3.15.0.txt
roda-3.66.0 doc/release_notes/3.15.0.txt
roda-3.65.0 doc/release_notes/3.15.0.txt
roda-3.64.0 doc/release_notes/3.15.0.txt
roda-3.63.0 doc/release_notes/3.15.0.txt