You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2012/01/05 17:18:52 UTC

svn commit: r1227673 - /commons/proper/validator/trunk/RELEASE-NOTES.txt

Author: simonetripodi
Date: Thu Jan  5 16:18:52 2012
New Revision: 1227673

URL: http://svn.apache.org/viewvc?rev=1227673&view=rev
Log:
added missing elements
reformatted according to general format

Modified:
    commons/proper/validator/trunk/RELEASE-NOTES.txt

Modified: commons/proper/validator/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/validator/trunk/RELEASE-NOTES.txt?rev=1227673&r1=1227672&r2=1227673&view=diff
==============================================================================
--- commons/proper/validator/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/validator/trunk/RELEASE-NOTES.txt Thu Jan  5 16:18:52 2012
@@ -20,78 +20,101 @@ $Id$
                      Version 1.4.0 beta1
                      Release Notes
 
-Dependencies
-------------
+INTRODUCTION
+============
+
+This is a maintenance release with improvements. New projects are encouraged to
+use this release of validator.
+
+IMPORTANT NOTES
+================
+
+BREAKING CHANGES:
+
+ * NONE.
+ 
+DEPENDENCIES
+=============
+
 The dependencies for Validator 1.4 have only one change since the 1.3.1 
 release, in that the Jakarta ORO dependency has been removed.
 (See http://commons.apache.org/validator/dependencies.html)
 
+BUGS FROM PREVIOUS RELEASE
+===========================
+
+ * [VALIDATOR-216] - UrlValidator rejects top-level domains (TLDs) with 
+                     more than 4 characters 
+ * [VALIDATOR-218] - UrlValidator fail when path contains "(" / ")" 
+ * [VALIDATOR-220] - EmailValidator fails with ArrayIndexOutOfBoundsException
+                     on domain names longer than 10 segments 
+ * [VALIDATOR-223] - Move the trim() function from validateRequired.js to 
+                     validateUtilities.js 
+ * [VALIDATOR-271] - gmail testing addresses do not validate 
+ * [VALIDATOR-276] - isValidURL call returns false for file scheme/protocol 
+                     when URL is correct 
+ * [VALIDATOR-282] - formatDate(String value, Locale locale) in 
+                     GenericTypeValidator uses DateFormat.SHORT instead of 
+                     DateFormat.DEFAULT 
+ * [VALIDATOR-286] - isValid method for EmailValidator should return false 
+                     for domain with special characters only 
+ * [VALIDATOR-289] - UrlValidator.isValid does not properly validate *.travel
+                     domains 
+ * [VALIDATOR-292] - @localhost and @localhost.localdomain email addresses 
+                     aren't correctly detected as valid 
+ * [VALIDATOR-293] - Email validation fails with dash or hyphen at end of 
+                     local address 
+
+IMPROVEMENTS OVER PREVIOUS RELEASE
+===================================
+
+ * [VALIDATOR-188] - Extend ISBN validator to support smooth transition to 
+                     ISBN-13 / EAN-13 standard 
+ * [VALIDATOR-191] - Remove the dependency on Jakarta ORO (move to JDK 1.4 
+                     regular expression support) 
+ * [VALIDATOR-192] - Adding ISBNValidator to GenericValidator 
+ * [VALIDATOR-193] - Removing ORO dep. from GenericValidator 
+ * [VALIDATOR-203] - Refactor UrlValidator - especially the line 370-ish TODO. 
+ * [VALIDATOR-211] - Upgrade to Digester 1.8 
+ * [VALIDATOR-213] - Factor out Check Digit logic into separate 
+                     implementations 
+ * [VALIDATOR-214] - New Regular Expression validator using JDK 1.4's Regex 
+ * [VALIDATOR-215] - New generic CodeValidator that validates format, length 
+                     and Check Digit for a code 
+ * [VALIDATOR-224] - validatorUtilities.js - replace colon characters in the 
+                     function name (JSF/Shale) 
+ * [VALIDATOR-226] - Null-Stream input to ValidatorResources leads to 
+                     MalformedURLExceptions 
+ * [VALIDATOR-232] - Add script attribute to control script generation 
+ * [VALIDATOR-233] - Switch to using Version 0.4.3 of the Dojo Compressor 
+                     from the maven repo 
+ * [VALIDATOR-234] - Create 1.4 DTD 
+ * [VALIDATOR-240] - Support the 65 prefix for Discover Card 
+ * [VALIDATOR-241] - New InetAdress Validator implementation 
+ * [VALIDATOR-242] - Move EmailValidator to routines package 
+ * [VALIDATOR-247] - Move CreditCardValidator to routines package and 
+                     refactor to use new CodeValidator 
+ * [VALIDATOR-248] - Add an option to allow 'localhost' as a valid hostname 
+                     part in the URL 
+ * [VALIDATOR-249] - Add Diners card validation to CreditCardValidator 
+ * [VALIDATOR-250] - Banking CheckDigit implementations: ABA, CUSIP, IBAN, 
+                     ISIN and Sedol 
+ * [VALIDATOR-251] - url with brackets is not validated thru URLvalidator 
+                     class. 
+ * [VALIDATOR-252] - Performance improvement of DomainValidator by change 
+                     the regular expression 
+ * [VALIDATOR-275] - EmailValidator.isValid(String) follows RFC822 but 
+                     violates RFC1034 
+ * [VALIDATOR-288] - UrlValidator does not validate URL with simple domains 
+                     (eg: http://hostname ) 
+
+DEPRECATIONS
+============
+
+ * NONE
 
-Bug fixes from 1.3.1
---------------------
+OTHER NOTES
+============
 
-   * [VALIDATOR-216] - UrlValidator rejects top-level domains (TLDs) with 
-                       more than 4 characters 
-   * [VALIDATOR-218] - UrlValidator fail when path contains "(" / ")" 
-   * [VALIDATOR-220] - EmailValidator fails with ArrayIndexOutOfBoundsException
-                       on domain names longer than 10 segments 
-   * [VALIDATOR-223] - Move the trim() function from validateRequired.js to 
-                       validateUtilities.js 
-   * [VALIDATOR-271] - gmail testing addresses do not validate 
-   * [VALIDATOR-276] - isValidURL call returns false for file scheme/protocol 
-                       when URL is correct 
-   * [VALIDATOR-282] - formatDate(String value, Locale locale) in 
-                       GenericTypeValidator uses DateFormat.SHORT instead of 
-                       DateFormat.DEFAULT 
-   * [VALIDATOR-286] - isValid method for EmailValidator should return false 
-                       for domain with special characters only 
-   * [VALIDATOR-289] - UrlValidator.isValid does not properly validate *.travel
-                       domains 
-   * [VALIDATOR-292] - @localhost and @localhost.localdomain email addresses 
-                       aren't correctly detected as valid 
-   * [VALIDATOR-293] - Email validation fails with dash or hyphen at end of 
-                       local address 
-
-
-Improvements from 1.3.1
------------------------
-
-   * [VALIDATOR-188] - Extend ISBN validator to support smooth transition to 
-                       ISBN-13 / EAN-13 standard 
-   * [VALIDATOR-191] - Remove the dependency on Jakarta ORO (move to JDK 1.4 
-                       regular expression support) 
-   * [VALIDATOR-192] - Adding ISBNValidator to GenericValidator 
-   * [VALIDATOR-193] - Removing ORO dep. from GenericValidator 
-   * [VALIDATOR-203] - Refactor UrlValidator - especially the line 370-ish TODO. 
-   * [VALIDATOR-211] - Upgrade to Digester 1.8 
-   * [VALIDATOR-213] - Factor out Check Digit logic into separate 
-                       implementations 
-   * [VALIDATOR-214] - New Regular Expression validator using JDK 1.4's Regex 
-   * [VALIDATOR-215] - New generic CodeValidator that validates format, length 
-                       and Check Digit for a code 
-   * [VALIDATOR-224] - validatorUtilities.js - replace colon characters in the 
-                       function name (JSF/Shale) 
-   * [VALIDATOR-226] - Null-Stream input to ValidatorResources leads to 
-                       MalformedURLExceptions 
-   * [VALIDATOR-232] - Add script attribute to control script generation 
-   * [VALIDATOR-233] - Switch to using Version 0.4.3 of the Dojo Compressor 
-                       from the maven repo 
-   * [VALIDATOR-234] - Create 1.4 DTD 
-   * [VALIDATOR-240] - Support the 65 prefix for Discover Card 
-   * [VALIDATOR-241] - New InetAdress Validator implementation 
-   * [VALIDATOR-242] - Move EmailValidator to routines package 
-   * [VALIDATOR-247] - Move CreditCardValidator to routines package and 
-                       refactor to use new CodeValidator 
-   * [VALIDATOR-248] - Add an option to allow 'localhost' as a valid hostname 
-                       part in the URL 
-   * [VALIDATOR-249] - Add Diners card validation to CreditCardValidator 
-   * [VALIDATOR-250] - Banking CheckDigit implementations: ABA, CUSIP, IBAN, 
-                       ISIN and Sedol 
-   * [VALIDATOR-251] - url with brackets is not validated thru URLvalidator 
-                       class. 
-   * [VALIDATOR-252] - Performance improvement of DomainValidator by change 
-                       the regular expression 
-   * [VALIDATOR-275] - EmailValidator.isValid(String) follows RFC822 but 
-                       violates RFC1034 
-   * [VALIDATOR-288] - UrlValidator does not validate URL with simple domains 
-                       (eg: http://hostname ) 
+ * NONE
+ 
\ No newline at end of file