1
0
Fork 0
mirror of https://github.com/heartcombo/simple_form.git synced 2022-11-09 12:19:26 -05:00
heartcombo--simple_form/CHANGELOG.md
Rafael Mendonça França 028e762f00 Release 3.0.0
This version contains the Rails 4 support 🌟 and drops Rails 3.2.x support
and Ruby 1.8 💥

💚💛❤️💜💙
2013-09-21 12:05:58 -03:00

1.8 KiB

3.0.0

enhancements

  • New input_class global config option to set a class to be generated in all inputs.
  • Collection tags accept html attributes as the last element of collection @nashby
  • Change default :value_method of collection tags from :last to :second @nashby
  • Support Proc object in :conditions option of associations @bradly
  • input_field supports html5 component @nashby
  • Make field_error_proc configurable @dfens
  • Support to Rails 4.
  • Removed deprecated methods.
  • SimpleForm no longer sets the size attribute automatically and the default_input_size setting is now deprecated.
  • Support to aria-required attribute to required fields @ckundo

bug fix

  • Make DateTimeInput#label_target method to work with string values in I18n.t('date.order') (default behaviour in Rails 4) Closes #846 @mjankowski
  • Add "checkbox" class to the label of boolean input when there is no :label in generate_additional_classes_for config option @nashby
  • Support models with digits in their names @webgago
  • Remove deprecation warnings related to Relation#all from Rails 4.
  • Form builder can be used outside the context of a controller @jasonwebster
  • Skip pattern attribute when using validates_format_of with :without option @glebm

Please check v2.1 for previous changes.