PluginProbe
RSVP and Event Management / 1.3.0
RSVP and Event Management v1.3.0
trunk 0.5.0 0.6.0 0.7.0 0.8.0 0.9.0 0.9.5 1.0.0 1.1.0 1.2.0 1.2.1 1.3.0 1.3.1 1.3.2 1.5.0 1.6.0 1.6.1 1.6.2 1.6.5 1.7.0 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 All 136 releases
rsvp / jquery-validate / changelog.txt

changelog.txt in RSVP and Event Management 1.3.0, at jquery-validate/changelog.txt

203 lines 15.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 1.5.5
2 ---
3 * Fix for http://plugins.jquery.com/node/8659
4 * Fixed trailing comma in messages_cs.js
5
6 1.5.4
7 ---
8 * Fixed remote method bug (http://plugins.jquery.com/node/8658)
9
10 1.5.3
11 ---
12 * Fixed a bug related to the wrapper-option, where all ancestor-elements that matched the wrapper-option where selected (http://plugins.jquery.com/node/7624)
13 * Updated multipart demo to use latest jQuery UI accordion
14 * Added dateNL and time methods to additionalMethods.js
15 * Added Traditional Chinese (Taiwan, tw) and Kazakhstan (KK) localization
16 * Moved jQuery.format (fomerly String.format) to jQuery.validator.format, jQuery.format is deprecated and will be removed in 1.6 (see http://code.google.com/p/jquery-utils/issues/detail?id=15 for details)
17 * Cleaned up messages_pl.js and messages_ptbr.js (still defined messages for max/min/rangeValue, which were removed in 1.4)
18 * Fixed flawed boolean logic in valid-plugin-method for multiple elements; now all elements need to be valid for a boolean-true result (http://plugins.jquery.com/node/8481)
19 * Enhancement $.validator.addMethod: An undefined third message-argument won't overwrite an existing message (http://plugins.jquery.com/node/8443)
20 * Enhancement to submitHandler option: When used, click events on submit buttons are captured and the submitting button is inserted into the form before calling submitHandler, and removed afterwards; keeps submit buttons intact (http://plugins.jquery.com/node/7183#comment-3585)
21 * Added option validClass, default "valid", which adds that class to all valid elements, after validation (http://dev.jquery.com/ticket/2205)
22 * Added creditcardtypes method to additionalMethods.js, including tests (via http://dev.jquery.com/ticket/3635)
23 * Improved remote method to allow serverside message as a string, or true for valid, or false for invalid using the clientside defined message (http://dev.jquery.com/ticket/3807)
24 * Improved accept method to also accept a Drupal-style comma-seperated list of values (http://plugins.jquery.com/node/8580)
25
26 1.5.2
27 ---
28 * Fixed messages in additional-methods.js for maxWords, minWords, and rangeWords to include call to $.format
29 * Fixed value passed to methods to exclude carriage return (\r), same as jQuery's val() does
30 * Added slovak (sk) localization
31 * Added demo for intergration with jQuery UI tabs
32 * Added selects-grouping example to tabs demo (see second tab, birthdate field)
33
34 1.5.1
35 ---
36 * Updated marketo demo to use invalidHandler option instead of binding invalid-form event
37 * Added TinyMCE integration example
38 * Added ukrainian (ua) localization
39 * Fixed length validation to work with trimmed value (regression from 1.5 where general trimming before validation was removed)
40 * Various small fixes for compability with both 1.2.6 and 1.3
41
42 1.5
43 ---
44 * Improved basic demo, validating confirm-password field after password changed
45 * Fixed basic validation to pass the untrimmed input value as the first parameter to validation methods, changed required accordingly; breaks existing custom method that rely on the trimming
46 * Added norwegian (no), italian (it), hungarian (hu) and romanian (ro) localization
47 * Fixed #3195: Two flaws in swedish localization
48 * Fixed #3503: Extended rules("add") to accept messages propery: use to specify add custom messages to an element via rules("add", { messages: { required: "Required! " } });
49 * Fixed #3356: Regression from #2908 when using meta-option
50 * Fixed #3370: Added ignoreTitle option, set to skip reading messages from the title attribute, helps to avoid issues with Google Toolbar; default is false for compability
51 * Fixed #3516: Trigger invalid-form event even when remote validation is involved
52 * Added invalidHandler option as a shortcut to bind("invalid-form", function() {})
53 * Fixed Safari issue for loading indicator in ajaxSubmit-integration-demo (append to body first, then hide)
54 * Added test for creditcard validation and improved default message
55 * Enhanced remote validation, accepting options to passthrough to $.ajax as paramter (either url string or options, including url property plus everything else that $.ajax supports)
56
57 1.4
58 ---
59 * Fixed #2931, validate elements in document order and ignore type=image inputs
60 * Fixed usage of $ and jQuery variables, now fully comptible with all variations of noConflict usage
61 * Implemented #2908, enabling custom messages via metadata ala class="{required:true,messages:{required:'required field'}}", added demo/custom-messages-metadata-demo.html
62 * Removed deprecated methods minValue (min), maxValue (max), rangeValue (rangevalue), minLength (minlength), maxLength (maxlength), rangeLength (rangelength)
63 * Fixed #2215 regression: Call unhighlight only for current elements, not everything
64 * Implemented #2989, enabling image button to cancel validation
65 * Fixed issue where IE incorrectly validates against maxlength=0
66 * Added czech (cs) localization
67 * Reset validator.submitted on validator.resetForm(), enabling a full reset when necessary
68 * Fixed #3035, skipping all falsy attributes when reading rules (0, undefined, empty string), removed part of the maxlength workaround (for 0)
69 * Added dutch (nl) localization (#3201)
70
71 1.3
72 ---
73 * Fixed invalid-form event, now only triggered when form is invalid
74 * Added spanish (es), russian (ru), portuguese brazilian (ptbr), turkish (tr), and polish (pl) localization
75 * Added removeAttrs plugin to facilate adding and removing multiple attributes
76 * Added groups option to display a single message for multiple elements, via groups: { arbitraryGroupName: "fieldName1 fieldName2[, fieldNameN" }
77 * Enhanced rules() for adding and removing (static) rules: rules("add", "method1[, methodN]"/{method1:param[, method_n:param]}) and rules("remove"[, "method1[, method_n]")
78 * Enhanced rules-option, accepts space-seperated string-list of methods, eg. {birthdate: "required date"}
79 * Fixed checkbox group validation with inline rules: As long as the rules are specified on the first element, the group is now properly validated on click
80 * Fixed #2473, ignoring all rules with an explicit parameter of boolean-false, eg. required:false is the same as not specifying required at all (it was handled as required:true so far)
81 * Fixed #2424, with a modified patch from #2473: Methods returning a dependency-mismatch don't stop other rules from being evaluated anymore; still, success isn't applied for optional fields
82 * Fixed url and email validation to not use trimmed values
83 * Fixed creditcard validation to accept only digits and dashes ("asdf" is not a valid creditcard number)
84 * Allow both button and input elements for cancel buttons (via class="cancel")
85 * Fixed #2215: Fixed message display to call unhighlight as part of showing and hiding messages, no more visual side-effects while checking an element and extracted validator.checkForm to validate a form without UI sideeffects
86 * Rewrote custom selectors (:blank, :filled, :unchecked) with functions for compability with AIR
87
88 1.2.1
89 -----
90
91 * Bundled delegeate plugin with validate plugin - its always required anyway
92 * Improved remote validation to include parts from the ajaxQueue plugin for proper synchronization (no additional plugin necessary)
93 * Fixed stopRequest to prevent pendingRequest < 0
94 * Added jQuery.validator.autoCreateRanges property, defaults to false, enable to convert min/max to range and minlength/maxlength to rangelength; this basically fixes the issue introduced by automatically creating ranges in 1.2
95 * Fixed optional-methods to not highlight anything at all if the field is blank, that is, don't trigger success
96 * Allow false/null for highlight/unhighlight options instead of forcing a do-nothing-callback even when nothing needs to be highlighted
97 * Fixed validate() call with no elements selected, returning undefined instead of throwing an error
98 * Improved demo, replacing metadata with classes/attributes for specifying rules
99 * Fixed error when no custom message is used for remote validation
100 * Modified email and url validation to require domain label and top label
101 * Fixed url and email validation to require TLD (actually to require domain label); 1.2 version (TLD is optional) is moved to additionals as url2 and email2
102 * Fixed dynamic-totals demo in IE6/7 and improved templating, using textarea to store multiline template and string interpolation
103 * Added login form example with "Email password" link that makes the password field optional
104 * Enhanced dynamic-totals demo with an example of a single message for two fields
105
106 1.2
107 ---
108
109 * Added AJAX-captcha validation example (based on http://psyrens.com/captcha/)
110 * Added remember-the-milk-demo (thanks RTM team for the permission!)
111 * Added marketo-demo (thanks Glen Lipka!)
112 * Added support for ajax-validation, see method "remote"; serverside returns JSON, true for valid elements, false or a String for invalid, String is used as message
113 * Added highlight and unhighlight options, by default toggles errorClass on element, allows custom highlighting
114 * Added valid() plugin method for easy programmatic checking of forms and fields without the need to use the validator API
115 * Added rules() plguin method to read and write rules for an element (currently read only)
116 * Replaced regex for email method, thanks to the contribution by Scott Gonzalez, see http://projects.scottsplayground.com/email_address_validation/
117 * Restructured event architecture to rely solely on delegation, both improving performance, and ease-of-use for the developer (requires jquery.delegate.js)
118 * Moved documentation from inline to http://docs.jquery.com/Plugins/Validation - including interactive examples for all methods
119 * Removed validator.refresh(), validation is now completey dynamic
120 * Renamed minValue to min, maxValue to max and rangeValue to range, deprecating the previous names (to be removed in 1.3)
121 * Renamed minLength to minlength, maxLength to maxlength and rangeLength to rangelength, deprecating the previous names (to be removed in 1.3)
122 * Added feature to merge min + max into and range and minlength + maxlength into rangelength
123 * Added support for dynamic rule parameters, allowing to specify a function as a parameter eg. for minlength, called when validating the element
124 * Allow to specify null or an empty string as a message to display nothing (see marketo demo)
125 * Rules overhaul: Now supports combination of rules-option, metadata, classes (new) and attributes (new), see rules() for details
126
127 1.1.2
128 ---
129
130 * Replaced regex for URL method, thanks to the contribution by Scott Gonzalez, see http://projects.scottsplayground.com/iri/
131 * Improved email method to better handle unicode characters
132 * Fixed error container to hide when all elements are valid, not only on form submit
133 * Fixed String.format to jQuery.format (moving into jQuery namespace)
134 * Fixed accept method to accept both upper and lowercase extensions
135 * Fixed validate() plugin method to create only one validator instance for a given form and always return that one instance (avoids binding events multiple times)
136 * Changed debug-mode console log from "error" to "warn" level
137
138 1.1.1
139 -----
140
141 * Fixed invalid XHTML, preventing error label creation in IE since jQuery 1.1.4
142 * Fixed and improved String.format: Global search & replace, better handling of array arguments
143 * Fixed cancel-button handling to use validator-object for storing state instead of form element
144 * Fixed name selectors to handle "complex" names, eg. containing brackets ("list[]")
145 * Added button and disabled elements to exclude from validation
146 * Moved element event handlers to refresh to be able to add handlers to new elements
147 * Fixed email validation to allow long top level domains (eg. ".travel")
148 * Moved showErrors() from valid() to form()
149 * Added validator.size(): returns the number of current errors
150 * Call submitHandler with validator as scope for easier access of it's methods, eg. to find error labels using errorsFor(Element)
151 * Compatible with jQuery 1.1.x and 1.2.x
152
153 1.1
154 ---
155
156 * Added validation on blur, keyup and click (for checkboxes and radiobutton). Replaces event-option.
157 * Fixed resetForm
158 * Fixed custom-methods-demo
159
160 1.0
161 ---
162
163 * Improved number and numberDE methods to check for correct decimal numbers with delimiters
164 * Only elements that have rules are checked (otherwise success-option is applied to all elements)
165 * Added creditcard number method (thanks to Brian Klug)
166 * Added ignore-option, eg. ignore: "[@type=hidden]", using that expression to exclude elements to validate. Default: none, though submit and reset buttons are always ignored
167 * Heavily enhanced Functions-as-messages by providing a flexible String.format helper
168 * Accept Functions as messages, providing runtime-custom-messages
169 * Fixed exclusion of elements without rules from successList
170 * Fixed custom-method-demo, replaced the alert with message displaying the number of errors
171 * Fixed form-submit-prevention when using submitHandler
172 * Completely removed dependency on element IDs, though they are still used (when present) to link error labels to inputs. Achieved by using
173 an array with {name, message, element} instead of an object with id:message pairs for the internal errorList.
174 * Added support for specifying simple rules as simple strings, eg. "required" is equivalent to {required: true}
175 * Added feature: Add errorClass to invalid field�s parent element, making it easy to style the label/field container or the label for the field.
176 * Added feature: focusCleanup - If enabled, removes the errorClass from the invalid elements and hides all errors messages whenever the element is focused.
177 * Added success option to show the a field was validated successfully
178 * Fixed Opera select-issue (avoiding a attribute-collision)
179 * Fixed problems with focussing hidden elements in IE
180 * Added feature to skip validation for submit buttons with class "cancel"
181 * Fixed potential issues with Google Toolbar by prefering plugin option messages over title attribute
182 * submitHandler is only called when an actual submit event was handled, validator.form() returns false only for invalid forms
183 * Invalid elements are now focused only on submit or via validator.focusInvalid(), avoiding all trouble with focus-on-blur
184 * IE6 error container layout issue is solved
185 * Customize error element via errorElement option
186 * Added validator.refresh() to find new inputs in the form
187 * Added accept validation method, checks file extensions
188 * Improved dependecy feature by adding two custom expressions: ":blank" to select elements with an empty value and �:filled� to select elements with a value, both excluding whitespace
189 * Added a resetForm() method to the validator: Resets each form element (using the form plugin, if available), removes classes on invalid elements and hides all error messages
190 * Fixed docs for validator.showErrors()
191 * Fixed error label creation to always use html() instead of text(), allowing arbitrary HTML passed in as messages
192 * Fixed error label creation to use specified error class
193 * Added dependency feature: The requires method accepts both String (jQuery expressions) and Functions as the argument
194 * Heavily improved customizing of error message display: Use normal messages and show/hide an additional container; Completely replace message display with own mechanism (while being able to delegate to the default handler; Customize placing of generated labels (instead of default below-element)
195 * Fixed two major bugs in IE (error containers) and Opera (metadata)
196 * Modified validation methods to accept empty fields as valid (exception: of course �required� and also �equalTo� methods)
197 * Renamed "min" to "minLength", "max" to "maxLength", "length" to "rangeLength"
198 * Added "minValue", "maxValue" and "rangeValue"
199 * Streamlined API for support of different events. The default, submit, can be disabled. If any event is specified, that is applied to each element (instead of the entire form). Combining keyup-validation with submit-validation is now extremely easy to setup
200 * Added support for one-message-per-rule when defining messages via plugin settings
201 * Added support to wrap metadata in some parent element. Useful when metadata is used for other plugins, too.
202 * Refactored tests and demos: Less files, better demos
203 * Improved documentation: More examples for methods, more reference texts explaining some basics