Improve release notes with feedback from ebourg.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1540564 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ed7710f41c
commit
1996cc6875
|
@ -25,12 +25,13 @@ These release notes will try to guide you in the process of upgrading, however y
|
||||||
should remember that this is a new API based on the original, so some concepts
|
should remember that this is a new API based on the original, so some concepts
|
||||||
have changed.
|
have changed.
|
||||||
|
|
||||||
Compatibility with previous releases
|
Compatibility
|
||||||
------------------------------------
|
-------------
|
||||||
|
|
||||||
This release is not source or binary compatible with previous releases of
|
o Java 5 or later is required.
|
||||||
Commons Collections. This includes releases from the 3.x branch as well as
|
o This release is not source or binary compatible with previous releases of
|
||||||
preceding alpha releases for 4.0 (see details of changes below).
|
Commons Collections. This includes releases from the 3.x branch as well as
|
||||||
|
preceding alpha releases for 4.0 (see details of changes below).
|
||||||
|
|
||||||
|
|
||||||
Major changes since 3.2.1
|
Major changes since 3.2.1
|
||||||
|
@ -70,7 +71,7 @@ Removed classes
|
||||||
- BoundedBuffer: use either ArrayBlockingBuffer(capacity) or LinkedBlockingBuffer(capacity) in java.util.concurrent
|
- BoundedBuffer: use either ArrayBlockingBuffer(capacity) or LinkedBlockingBuffer(capacity) in java.util.concurrent
|
||||||
- UnboundedFifoBuffer: use either java.util.LinkedList or java.util.concurrent.LinkedBlockingBuffer
|
- UnboundedFifoBuffer: use either java.util.LinkedList or java.util.concurrent.LinkedBlockingBuffer
|
||||||
|
|
||||||
o [COLLECTIONS-351] Removed features now supported by the JDK
|
o [COLLECTIONS-351] Removed features now supported by the JDK or other Apache Commons libraries
|
||||||
|
|
||||||
- FastArrayList: use java.util.concurrent.CopyOnWriteArrayList
|
- FastArrayList: use java.util.concurrent.CopyOnWriteArrayList
|
||||||
- FastHashMap: use java.util.concurrent.ConcurrentHashMap, but beware of null keys and values
|
- FastHashMap: use java.util.concurrent.ConcurrentHashMap, but beware of null keys and values
|
||||||
|
|
|
@ -53,9 +53,12 @@ have changed.
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<center><h3>Compatibility</h3></center>
|
<center><h3>Compatibility</h3></center>
|
||||||
<p>
|
<ul>
|
||||||
This release is <b>not</b> source or binary compatible with v3.x.
|
<li>Java 5 or later is required</li>
|
||||||
</p>
|
<li>This release is <b>not</b> source or binary compatible with previous releases of
|
||||||
|
Commons Collections. This includes releases from the 3.x branch as well as
|
||||||
|
preceding alpha releases for 4.0 (see details of changes below)</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
<center><h3>Major changes since 3.2.1</h3></center>
|
<center><h3>Major changes since 3.2.1</h3></center>
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -78,7 +81,7 @@ This release is <b>not</b> source or binary compatible with v3.x.
|
||||||
<li>UnboundedFifoBuffer: use either java.util.LinkedList or java.util.concurrent.LinkedBlockingBuffer</li>
|
<li>UnboundedFifoBuffer: use either java.util.LinkedList or java.util.concurrent.LinkedBlockingBuffer</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>Removed features now supported by the JDK
|
<li>Removed features now supported by the JDK or other Apache Commons libraries
|
||||||
<ul>
|
<ul>
|
||||||
<li>FastArrayList: use java.util.concurrent.CopyOnWriteArrayList</li>
|
<li>FastArrayList: use java.util.concurrent.CopyOnWriteArrayList</li>
|
||||||
<li>FastHashMap: use java.util.concurrent.ConcurrentHashMap, but beware of null keys and values</li>
|
<li>FastHashMap: use java.util.concurrent.ConcurrentHashMap, but beware of null keys and values</li>
|
||||||
|
|
Loading…
Reference in New Issue