You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2013/11/05 10:58:09 UTC

svn commit: r1538922 - in /commons/proper/collections/trunk: RELEASE-NOTES.txt src/site/xdoc/release_4_0.xml

Author: tn
Date: Tue Nov  5 09:58:08 2013
New Revision: 1538922

URL: http://svn.apache.org/r1538922
Log:
[COLLECTIONS-485] Added changelog entries.

Modified:
    commons/proper/collections/trunk/RELEASE-NOTES.txt
    commons/proper/collections/trunk/src/site/xdoc/release_4_0.xml

Modified: commons/proper/collections/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/RELEASE-NOTES.txt?rev=1538922&r1=1538921&r2=1538922&view=diff
==============================================================================
--- commons/proper/collections/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/collections/trunk/RELEASE-NOTES.txt Tue Nov  5 09:58:08 2013
@@ -36,22 +36,24 @@ preceding alpha releases for 4.0 (see de
 Major changes since 3.2.1
 -------------------------
 
- - Use of generics and other language features introduced in Java 5 (varargs, Iterable)
- - Removed deprecated classes / methods and features which are now supported by the JDK
- - Replaced Buffer interface with java.util.Queue
- - Added concept of split maps with respective interfaces Put / Get (see also package splitmap)
- - Added new Trie interface together with an implementation of a Patricia Trie
+ o Use of generics and other language features introduced in Java 5 (varargs, Iterable)
+ o Removed deprecated classes / methods and features which are now supported by the JDK
+ o Replaced Buffer interface with java.util.Queue
+ o Added concept of split maps with respective interfaces Put / Get (see also package splitmap)
+ o Added new Trie interface together with an implementation of a Patricia Trie
 
 
 Changes since 4.0-alpha1
 ------------------------
 
- - [COLLECTIONS-481] No collision detection/resolution was performed when calling "CompositeSet#addComposited(...)"
+ o [COLLECTIONS-485] Accept wildcard input where possible, e.g. in copy-constructors, Unmodifiable* decorators
+                     and iterators. Thanks to Hollis Waite.
+ o [COLLECTIONS-481] No collision detection/resolution was performed when calling "CompositeSet#addComposited(...)"
                      with more than one Set as argument. Additionally use varargs parameters instead of arrays
                      in CompositeSet and CompositeCollection constructor and addComposited method. Thanks to Hollis Waite.
- - [COLLECTIONS-480] Narrow return type of "BidiMap#values()" to Set as the values are required to be unique. Thanks to Hollis Waite.
- - [COLLECTIONS-468] Renamed CompliantBag to CollectionBag.
- - [COLLECTIONS-475] Fixed conversion of timeout parameters in "PassiveExpiringMap".
+ o [COLLECTIONS-480] Narrow return type of "BidiMap#values()" to Set as the values are required to be unique. Thanks to Hollis Waite.
+ o [COLLECTIONS-468] Renamed CompliantBag to CollectionBag.
+ o [COLLECTIONS-475] Fixed conversion of timeout parameters in "PassiveExpiringMap".
 
 
 Removed classes
@@ -151,6 +153,8 @@ New features
 Changed classes / methods
 -------------------------
 
+ o [COLLECTIONS-485] Accept wildcard input where possible, e.g. in copy-constructors, Unmodifiable* decorators
+                     and iterators. Thanks to Hollis Waite.
  o [COLLECTIONS-480] Narrow return type of "BidiMap#values()" to Set as the values are required to be unique. Thanks to Hollis Waite.
  o [COLLECTIONS-473] Made field "collection" in class "AbstractCollectionDecorator" private and added
                      setter "setCollection(Collection)" with scope protected to set the decorated collection

Modified: commons/proper/collections/trunk/src/site/xdoc/release_4_0.xml
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/site/xdoc/release_4_0.xml?rev=1538922&r1=1538921&r2=1538922&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/site/xdoc/release_4_0.xml (original)
+++ commons/proper/collections/trunk/src/site/xdoc/release_4_0.xml Tue Nov  5 09:58:08 2013
@@ -151,6 +151,7 @@ This release is <b>not</b> source or bin
 
 <center><h3>Changed classes / methods</h3></center>
 <ul>
+<li>Accept wildcard input where possible, e.g. in copy-constructors, Unmodifiable* decorators and iterators.</li>
 <li>Narrow return type of "BidiMap#values()" to Set as the values are required to be unique.</li>
 <li>Made field "collection" in class "AbstractCollectionDecorator" private and added setter "setCollection(Collection)" with scope protected to set the decorated collection during de-serialization.</li>
 <li>Replaced "Collection" with "Iterable" for method arguments where applicable.</li>