heartcombo--simple_form/CHANGELOG.rdoc

156 lines
6.7 KiB
Plaintext
Raw Normal View History

2011-09-08 14:17:35 +00:00
== 2.0.0.dev
* enhancements
2011-09-15 17:09:13 +00:00
* Add `button_class` configuration to change the class of buttons (github.com/sryche)
* Add `disabled` class to a disabled input
2011-09-08 14:17:35 +00:00
* bug fix
2011-09-15 17:09:13 +00:00
* Fallback to default label when block is provided (github.com/pivotal-casebook)
* Do not override default selection through attribute value in collection select when label/value methods are lambdas
2011-09-08 14:17:35 +00:00
2011-09-08 13:30:17 +00:00
== 1.5.0
2011-07-21 02:56:50 +00:00
* enhancements
* Simplified generator by using directory action (by github.com/rupert654)
* Support for `maxlength` on string inputs inferred from validation (by github.com/srbartlett)
2011-08-10 22:55:12 +00:00
* Change form css class handling to only add the dom class when one is not given to the form call (by github.com/patrick99e99)
2011-09-03 10:56:56 +00:00
* Support for required attributes when action validations are present (by github.com/csegura)
2011-08-30 23:07:58 +00:00
* Don't generate `size` attribute for numeric input (by github.com/jasonmp85)
* Support for `maxlength` on text area inputs inferred from validation
2011-09-03 10:56:56 +00:00
* Support for `pattern` on text field inferred from validation when :pattern is true
* Break Text, Password and File into their own inputs
* Support easy enabling and disabling of components for specific inputs
2011-09-03 14:31:06 +00:00
* Add HTML5 range input
2011-07-21 02:56:50 +00:00
* bug fix
* Fix bug when simple_fields_for is used with a hash like models and Rails 3.1
2011-07-27 15:22:38 +00:00
* Fix bug that doesn't remove the item_wrapper_tag or the collection_wrapper_tag on collection inputs when nil or false value is passed to these options (by gitbub.com/dw2)
* Fix bug that disable the entire select and wrapper when `disabled` option is a string or array
2011-09-03 15:48:57 +00:00
* Fix bug when using label/value methods as procs together with disabled/selected options as procs for select inputs
2011-07-21 02:56:50 +00:00
2011-06-27 16:17:15 +00:00
== 1.4.2
* enhancements
* Rails 3.1 support
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