Author: stain
Date: Wed Sep 14 12:37:38 2016
New Revision: 1760694
URL: http://svn.apache.org/viewvc?rev=1760694&view=rev
Log:
Updated RELEASE-NOTES.txt for 1.9.3
Modified:
commons/proper/beanutils/trunk/RELEASE-NOTES.txt
commons/proper/beanutils/trunk/src/changes/changes.xml
Modified: commons/proper/beanutils/trunk/RELEASE-NOTES.txt
URL:
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/RELEASE-NOTES.txt?rev=1760694&r1=1760693&r2=1760694&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/beanutils/trunk/RELEASE-NOTES.txt Wed Sep 14 12:37:38 2016
@@ -1,32 +1,59 @@
Apache Commons BeanUtils 1.9.3
RELEASE NOTES
-The Apache Commons BeanUtils team is pleased to announce the release of Apache
Commons BeanUtils 1.9.3
+The Apache Commons team is pleased to announce the release of Apache
+Commons BeanUtils 1.9.3
-Apache Commons BeanUtils provides an easy-to-use but flexible wrapper around
reflection and introspection.
+Apache Commons BeanUtils provides an easy-to-use but flexible wrapper around
+reflection and introspection.
+
+This is a bug fix release, which also improves the tests for building on Java
+8.
+
+Note that Java 8 and later no longer support indexed bean properties on
+java.util.List, only on arrays like String[]. (BEANUTILS-492). This affects
+PropertyUtils.getPropertyType() and PropertyUtils.getPropertyDescriptor();
+their javadoc have therefore been updated to reflect this change in the JDK.
-This is a bug fix release.
Changes in this version include:
Fixed Bugs:
-o BEANUTILS-470: Precision lost when converting BigDecimal Thanks to Tommy
Tynjä.
-o BEANUTILS-465: Indexed List Setters no longer work Thanks to Daniel Atallah.
+
+* BEANUTILS-477: Changed log level in FluentPropertyBeanIntrospector
+* BEANUTILS-492: Fixed exception when setting indexed properties on DynaBeans.
+ Thanks to Bernhard Seebass.
+* BEANUTILS-470: Precision lost when converting BigDecimal Thanks to Tommy
+ Tynjä.
+* BEANUTILS-465: Indexed List Setters fixed. Thanks to Daniel Atallah.
Changes:
-o BEANUTILS-433: Update dependency from JUnit 3.8.1 to 4.12. Thanks to
Benedikt Ritter, Gary Gregory.
-o BEANUTILS-490: Update Java requirement from Java 5 to 6. Thanks to Gary
Gregory.
-o BEANUTILS-474: FluentPropertyBeanIntrospector does not use the same naming
algorithm as DefaultBeanIntrospector. Thanks to Michael Grove.
-o BEANUTILS-482: Update commons-collections from 3.2.1 to 3.2.2. Thanks to
Gary Gregory.
-o BEANUTILS-469: Update commons-logging from 1.1.1 to 1.2. Thanks to Gary
Gregory.
+* BEANUTILS-433: Update dependency from JUnit 3.8.1 to 4.12.
+ Thanks to Benedikt Ritter, Gary Gregory.
+* BEANUTILS-469: Update commons-logging from 1.1.1 to 1.2.
+ Thanks to Gary Gregory.
+* BEANUTILS-474: FluentPropertyBeanIntrospector does not use the same naming
+ algorithm as DefaultBeanIntrospector. Thanks to Michael Grove.
+* BEANUTILS-490: Update Java requirement from Java 5 to 6.
+ Thanks to Gary Gregory.
+* BEANUTILS-482: Update commons-collections from 3.2.1 to 3.2.2
+ (CVE-2015-4852). Thanks to Gary Gregory.
+* BEANUTILS-490: Update java requirement to Java 6. Thanks to Gary Gregory.
+* BEANUTILS-492: IndexedPropertyDescriptor tests now pass on Java 8.
+ Thanks to Stian Soiland-Reyes.
+* BEANUTILS-495: DateConverterTestBase fails on M/d/yy in Java 9.
+ Thanks to Stian Soiland-Reyes.
+* BEANUTILS-496: testGetDescriptorInvalidBoolean fails on Java 9.
+ Thanks to Stian Soiland-Reyes.
Historical list of changes:
http://commons.apache.org/proper/commons-beanutils/changes-report.html
-For complete information on Apache Commons BeanUtils, including instructions
on how to submit bug reports,
-patches, or suggestions for improvement, see the Apache Apache Commons
BeanUtils website:
+For complete information on Apache Commons BeanUtils, including instructions on
+how to submit bug reports, patches, or suggestions for improvement, see the
+Apache Apache Commons BeanUtils website:
-http://commons.apache.org/proper/commons-beanutils/
+https://commons.apache.org/proper/commons-beanutils/
-----------------------------------------------------------------------------
Modified: commons/proper/beanutils/trunk/src/changes/changes.xml
URL:
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/changes/changes.xml?rev=1760694&r1=1760693&r2=1760694&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/src/changes/changes.xml (original)
+++ commons/proper/beanutils/trunk/src/changes/changes.xml Wed Sep 14 12:37:38
2016
@@ -54,13 +54,13 @@
<action issue="BEANUTILS-490" dev="ggregory" type="update" due-to="Gary
Gregory">
Update Java requirement from Java 5 to 6.
</action>
- <action issue="BEANUTILS-492" dev="stain" type="update" due-to="Bernhard
Seebass">
+ <action issue="BEANUTILS-492" dev="stain" type="update" due-to="Stian
Soiland-Reyes">
IndexedPropertyDescriptor not supported for List in Java 8
</action>
<action issue="BEANUTILS-493" dev="stain" type="fix" due-to="Bernhard
Seebass">
Exception when setting indexed properties: "Default conversion to
ArrayList failed"
</action>
- <action issue="BEANUTILS-495" dev="stain" type="update">
+ <action issue="BEANUTILS-495" dev="stain" type="update" due-to="Stian
Soiland-Reyes">
DateConverterTestBase fails on M/d/yy in Java 9
</action>
<action issue="BEANUTILS-496" dev="stain" type="update" due-to="Stian
Soiland-Reyes">