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.62.0 doc/release_notes/3.15.0.txt
roda-3.61.0 doc/release_notes/3.15.0.txt
roda-3.60.0 doc/release_notes/3.15.0.txt
roda-3.59.0 doc/release_notes/3.15.0.txt
roda-3.58.0 doc/release_notes/3.15.0.txt
roda-3.57.0 doc/release_notes/3.15.0.txt
roda-3.56.0 doc/release_notes/3.15.0.txt
roda-3.55.0 doc/release_notes/3.15.0.txt
roda-3.54.0 doc/release_notes/3.15.0.txt
roda-3.53.0 doc/release_notes/3.15.0.txt
roda-3.52.0 doc/release_notes/3.15.0.txt
roda-3.51.0 doc/release_notes/3.15.0.txt
roda-3.50.0 doc/release_notes/3.15.0.txt
roda-3.49.0 doc/release_notes/3.15.0.txt
roda-3.48.0 doc/release_notes/3.15.0.txt
roda-3.47.0 doc/release_notes/3.15.0.txt
roda-3.46.0 doc/release_notes/3.15.0.txt
roda-3.45.0 doc/release_notes/3.15.0.txt
roda-3.44.0 doc/release_notes/3.15.0.txt
roda-3.43.1 doc/release_notes/3.15.0.txt