------------------
- Added CSRF test to pass coverage on schema.py.
See https://github.com/Pylons/deform/pull/403
- Modified the DateTimeInputWidget to use HTML5 date/time input types on
browsers that support it.
See https://github.com/Pylons/deform/pull/406
- Add new translations for Swahili (sw_KE) locale.
See https://github.com/Pylons/deform/pull/409
- Add boolean HTML attributes per Chameleon 3.8.0.
All checkboxes, radios, and selects that use boolean HTML attributes
(selected, checked, etc.) previously used `literal_false` and would drop any
`False` value from rendering as an HTML attribute. In Chameleon 3.8.0,
`literal_false` is removed and must instead use `boolean_attributes` to set
defaults.
See https://github.com/Pylons/deform/issues/417