heartcombo--simple_form/CHANGELOG.rdoc

135 lines
5.3 KiB
Plaintext
Raw Normal View History

2011-07-20 22:56:50 -04:00
== 1.4.3.dev
* enhancements
* Simplified generator by using directory action (by github.com/rupert654)
* Support for `maxlength` on string inputs inferred from validation (by github.com/srbartlett)
* bug fix
* Fix bug when simple_fields_for is used with a hash like models and Rails 3.1
2011-06-27 12:17:15 -04:00
== 1.4.2
* enhancements
* Rails 3.1 support
2011-06-14 10:51:39 -04:00
== 1.4.1
2011-06-03 10:54:23 -04:00
* enhancements
* ignore required attribute when conditional validations are present
2011-06-03 10:54:23 -04: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 14:46:48 -04:00
* Fixes the form specific validation option if specified on the form itself (by github.com/medihack)
2011-06-03 10:54:23 -04:00
2011-05-18 12:26:55 -04:00
== 1.4.0
2011-02-12 10:57:03 -05:00
* enhancements
2011-03-08 14:32:37 -05:00
* Add label class configuration option (by github.com/reu)
2011-02-12 10:57:03 -05:00
* Improve i18n lookup (labels/hints/placeholders) for nested models
2011-03-01 21:51:21 -05:00
* Use the given custom builder with simple_fields_for (by github.com/giniedp)
2011-03-08 14:32:37 -05:00
* Add slim form generator (by github.com/fagiani)
* Add form_class configuration option (by github.com/fagiani)
2011-03-16 18:48:03 -04: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-07 21:22:22 -04:00
* Add option to disable all HTML5 extensions (by github.com/wolframarnold)
2011-04-19 15:02:24 -04:00
* Add input_field helper to form builder (by github.com/jeroenhouben)
2011-04-27 15:26:48 -04:00
* Allow inputs to be discovered on demand by placing them at app/inputs (a la formtastic)
2011-04-27 15:58:59 -04:00
* Add full_error on that shows the error with the attribute name
2011-02-12 10:57:03 -05:00
2011-02-12 12:10:51 -05:00
* bug fix
* Fix for file attributes automatic detection, to work with virtual attributes
2011-03-12 11:32:05 -05: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-05 23:23:45 -04:00
* Fix HTML validation issue with collection_check_boxes
2011-02-12 12:10:51 -05:00
2011-02-12 10:57:03 -05:00
== 1.3.1
2011-01-02 18:31:52 -05:00
* enhancements
* Add :autofocus HTML5 attribute support (by github.com/jpzwarte)
2011-02-06 12:48:21 -05: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 18:11:13 -05:00
* Add support for procs/lambdas in text/value methods for collection_select
2011-01-02 18:31:52 -05:00
* deprecation
* removed the deprecated :remote_form_for
2010-12-10 18:02:53 -05: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 12:48:21 -05:00
* Allow direct setting of for attribute on label (by github.com/Bertg)
2010-12-10 18:02:53 -05:00
2010-12-08 14:53:41 -05:00
== 1.3.0
2010-08-31 04:29:39 -04: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-23 23:59:47 -04: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 19:55:23 -04: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-21 19:08:42 -05: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-25 19:35:38 -05:00
* Add SimpleForm.input_mappings to allow configuring custom mappings for inputs (by github.com/TMaYaD)
2010-08-31 04:29:39 -04: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 04:29:39 -04:00
2010-07-27 05:49:22 -04:00
== 1.2.2
* enhancements
* Compatibility with Rails 3 RC
2010-07-24 05:02:01 -04:00
== 1.2.1
* enhancements
2010-07-24 05:02:01 -04:00
* Added haml generator support (by github.com/grimen)
* Added error_notification message to form builder
2010-07-06 05:39:23 -04: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 05:08:47 -04: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 05:08:47 -04:00
2010-04-03 07:53:30 -04: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 02:31:36 -05:00
== 1.1.1
* bug fix
2010-04-03 07:53:30 -04:00
* Fix some escaping issues
2010-02-19 02:31:36 -05:00
== 1.1.0
* enhancements
* Rails 3 support with generators, templates and HTML 5
== 1.0
2010-02-19 02:31:36 -05:00
* First release