heartcombo--simple_form/CHANGELOG.rdoc

121 lines
5.0 KiB
Plaintext
Raw Normal View History

2011-06-14 14:51:39 +00:00
== 1.4.1
2011-06-03 14:54:23 +00:00
* enhancements
* ignore required attribute when conditional validations are present
2011-06-03 14:54:23 +00:00
* bug fix
* Do not use required='required' when browser validations are turned off
* Sanitize HMTL attributes in error and hint helpers when options are present
* Improve i18n lookup by ignoring explicit child index given to form builder (tests by github.com/rywall)
2011-06-03 18:46:48 +00:00
* Fixes the form specific validation option if specified on the form itself (by github.com/medihack)
2011-06-03 14:54:23 +00:00
2011-05-18 16:26:55 +00:00
== 1.4.0
2011-02-12 15:57:03 +00:00
* enhancements
2011-03-08 19:32:37 +00:00
* Add label class configuration option (by github.com/reu)
2011-02-12 15:57:03 +00:00
* Improve i18n lookup (labels/hints/placeholders) for nested models
2011-03-02 02:51:21 +00:00
* Use the given custom builder with simple_fields_for (by github.com/giniedp)
2011-03-08 19:32:37 +00:00
* Add slim form generator (by github.com/fagiani)
* Add form_class configuration option (by github.com/fagiani)
2011-03-16 22:48:03 +00:00
* Default step of "any" for number input with non integer attributes (by github.com/fedesoria)
* Add option to disable HTML5 browser validations on all forms (by github.com/coryschires)
2011-04-08 01:22:22 +00:00
* Add option to disable all HTML5 extensions (by github.com/wolframarnold)
2011-04-19 19:02:24 +00:00
* Add input_field helper to form builder (by github.com/jeroenhouben)
2011-04-27 19:26:48 +00:00
* Allow inputs to be discovered on demand by placing them at app/inputs (a la formtastic)
2011-04-27 19:58:59 +00:00
* Add full_error on that shows the error with the attribute name
2011-02-12 15:57:03 +00:00
2011-02-12 17:10:51 +00:00
* bug fix
* Fix for file attributes automatic detection, to work with virtual attributes
2011-03-12 16:32:05 +00:00
* Fix for numeric fields validation options using symbols and procs
* Fix password attributes to add size and maxlength options the same way as string (by github.com/fedesoria)
* Fix bug with custom form builders and new mappings being added to the superclass builder (by github.com/rdvdijk)
2011-04-06 03:23:45 +00:00
* Fix HTML validation issue with collection_check_boxes
2011-02-12 17:10:51 +00:00
2011-02-12 15:57:03 +00:00
== 1.3.1
2011-01-02 23:31:52 +00:00
* enhancements
* Add :autofocus HTML5 attribute support (by github.com/jpzwarte)
2011-02-06 17:48:21 +00:00
* Add possibility to specify custom builder and inherit mappings (by github.com/rejeep)
* Make custom mappings work with all attributes types (by github.com/rafaelfranca)
2011-02-06 23:11:13 +00:00
* Add support for procs/lambdas in text/value methods for collection_select
2011-01-02 23:31:52 +00:00
* deprecation
* removed the deprecated :remote_form_for
2010-12-10 23:02:53 +00:00
* bug fix
* Only add the "required" HTML 5 attribute for valid inputs, disable in selects (not allowed)
* Fix error when using hints without an attribute (by github.com/butsjoh and github.com/rafaelfranca)
* Fix messy html output for hint, error and label components (by github.com/butsjoh and github.com/rafaelfranca)
2011-02-06 17:48:21 +00:00
* Allow direct setting of for attribute on label (by github.com/Bertg)
2010-12-10 23:02:53 +00:00
2010-12-08 19:53:41 +00:00
== 1.3.0
2010-08-31 08:29:39 +00:00
* enhancements
* Allow collection input to accept a collection of symbols
* Add default css class to button
* Allow forms for objects that don't respond to the "errors" method
* collection_check_boxes and collection_radio now wrap the input in the label
* Automatic add min/max values for numeric attributes based on validations and step for integers - HTML5 (by github.com/dasch)
2010-09-24 03:59:47 +00:00
* Add :placeholder option for string inputs, allowing customization through I18n - HTML5 (by github.com/jonathan)
* Add :search and :tel input types, with :tel mapping automatically from attributes matching "phone" - HTML5
2010-09-27 23:55:23 +00:00
* Add :required html attribute for required inputs - HTML5
* Add optional :components option to input to control component rendering (by github.com/khoan)
* Add SimpleForm.translate as an easy way to turn off SimpleForm internal translations
2010-11-22 00:08:42 +00:00
* Add :disabled option for all inputs (by github.com/fabiob)
* Add collection wrapper tag and item wrapper tag to wrap elements in collection helpers - radio / check boxes
2010-11-26 00:35:38 +00:00
* Add SimpleForm.input_mappings to allow configuring custom mappings for inputs (by github.com/TMaYaD)
2010-08-31 08:29:39 +00:00
* bug fix
* Search for validations on both association and attribute
* Use controller.action_name to lookup action only when available, to fix issue with Rspec views tests (by github.com/rafaelfranca)
2010-08-31 08:29:39 +00:00
2010-07-27 09:49:22 +00:00
== 1.2.2
* enhancements
* Compatibility with Rails 3 RC
2010-07-24 09:02:01 +00:00
== 1.2.1
* enhancements
2010-07-24 09:02:01 +00:00
* Added haml generator support (by github.com/grimen)
* Added error_notification message to form builder
2010-07-06 09:39:23 +00:00
* Added required by default as configuration option
* Added label_input as component, allowing boolean to change its order (input appearing first than label)
* Added error_method to tidy up how errors are exhibited
* Added error class on wrappers (by github.com/jduff)
* Changed numeric types to have type=number for HTML5
== 1.2.0
* deprecation
* Changed simple_form_install generator to simple_form:install
2010-05-17 09:08:47 +00:00
* enhancements
* Added support to presence validation to check if attribute is required or not (by github.com/gcirne)
* Added .input as class to wrapper tag
* Added config options for hint and error tags (by github.com/tjogin)
2010-05-17 09:08:47 +00:00
2010-04-03 11:53:30 +00:00
== 1.1.3
* deprecation
* removed :conditions, :order, :joins and :include support in f.association
== 1.1.2
* bug fix
* Ensure type is set to "text" and not "string"
2010-02-19 07:31:36 +00:00
== 1.1.1
* bug fix
2010-04-03 11:53:30 +00:00
* Fix some escaping issues
2010-02-19 07:31:36 +00:00
== 1.1.0
* enhancements
* Rails 3 support with generators, templates and HTML 5
== 1.0
2010-02-19 07:31:36 +00:00
* First release