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.43.0 doc/release_notes/3.15.0.txt
roda-3.42.0 doc/release_notes/3.15.0.txt
roda-3.41.0 doc/release_notes/3.15.0.txt
roda-3.40.0 doc/release_notes/3.15.0.txt
roda-3.39.0 doc/release_notes/3.15.0.txt
roda-3.38.0 doc/release_notes/3.15.0.txt
roda-3.37.0 doc/release_notes/3.15.0.txt
roda-3.36.0 doc/release_notes/3.15.0.txt
roda-3.35.0 doc/release_notes/3.15.0.txt
roda-3.34.0 doc/release_notes/3.15.0.txt
roda-3.33.0 doc/release_notes/3.15.0.txt
roda-3.32.0 doc/release_notes/3.15.0.txt
roda-3.31.0 doc/release_notes/3.15.0.txt
roda-3.30.0 doc/release_notes/3.15.0.txt
roda-3.29.0 doc/release_notes/3.15.0.txt
roda-3.28.0 doc/release_notes/3.15.0.txt
roda-3.27.0 doc/release_notes/3.15.0.txt
roda-3.26.0 doc/release_notes/3.15.0.txt
roda-3.25.0 doc/release_notes/3.15.0.txt
roda-3.24.0 doc/release_notes/3.15.0.txt