This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-collections.git
The following commit(s) were added to refs/heads/master by this push: new 9e9fb1bcd Re-categorize some entries 9e9fb1bcd is described below commit 9e9fb1bcda2d777f9472e45d3f4e866b7db3a224 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Jun 2 09:15:51 2023 -0400 Re-categorize some entries --- src/changes/changes.xml | 206 ++++++++++++++++++++++++------------------------ 1 file changed, 103 insertions(+), 103 deletions(-) diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 5584f314f..7f67f1364 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -123,7 +123,87 @@ <action issue="COLLECTIONS-839" type="fix" dev="ggregory" due-to="Sam Ng, Gary Gregory, Bruno P. Kinoshita"> Migrate Map tests to JUnit 5 assertions #391. </action> + <action issue="COLLECTIONS-835" type="fix" dev="kinow" due-to="Marc Wrobel"> + Fix links in javadoc and documentations #325. + </action> + <action type="fix" dev="aherbert" due-to="Partha Protim Paul"> + Correct test of Collection toArray(Object[]) vs toArray() to optionally ignore array order. + Ordering is not specified for some collections such as Bags. + </action> + <action issue="COLLECTIONS-836" type="fix" dev="aherbert" due-to="Anant Dahiya"> + Correct test of BidiMap to optionally ignore testing the key set matches the values order. + Ordering is not specified for some BidiMaps such as DualHashBidiMaps. + </action> + <action issue="COLLECTIONS-737" dev="kinow" type="fix" due-to="Prodigysov"> + Return 0 immediately if the given iterable is null in IterableUtils#size. Update tests. + </action> + <action issue="COLLECTIONS-697" dev="eax" type="fix" due-to="Ranjan George"> + JavaDoc for FixedSizeList should warn that modifying underlying list is still allowed and is not prevented + </action> + <action dev="ggregory" type="fix" due-to="dota17"> + Fill in some map test cases #104. + </action> + <action issue="COLLECTIONS-738" dev="kinow" type="fix" due-to="Pengyu Nie"> + Remove the redundant assertNull in IterableUtilsTest.find and update Javadocs. + </action> + <action issue="COLLECTIONS-724" dev="ggregory" type="fix" due-to="Eitan Adler"> + Simplify two remove-if loops #77. + </action> + <action dev="ggregory" type="fix" due-to="Chen"> + Fix inconsistent @throws comments in ListOrderedSet #125. + </action> + <action issue="COLLECTIONS-704" dev="ggregory" type="fix" due-to="dota17"> + Update size to capacity for GrowthList #90. + </action> + <action dev="ggregory" type="fix" due-to="dota17"> + TransformedSortedBagTest should work with TransformedSortedBag, not TransformedBag #98. + </action> + <action dev="ggregory" type="fix" due-to="dota17"> + Remove the parentheses in the error message in CircularFifoQueue #107. + </action> + <action issue="COLLECTIONS-747" dev="ggregory" type="fix" due-to="Gary Gregory, Walter Laan"> + MultiKey.getKeys class cast exception. + </action> + <action issue="COLLECTIONS-759" dev="ggregory" type="fix" due-to="Bruno P. Kinoshita"> + Use newline at end of file, and convert to Unix (LF instead of CRLF) fixing checkstyle #147. + </action> + <action dev="ggregory" type="fix" due-to="Chen"> + Fixed the typo and deal the NPE with Objects.requireNonNull #118. + </action> + <action issue="COLLECTIONS-757" dev="ggregory" type="fix" due-to="Chen"> + Javadoc BidiMap classes #146. + </action> + <action issue="COLLECTIONS-773" type="fix" dev="ggregory" due-to="Martin Monperrus"> + Assert ensureCapacity #198. + </action> + <action issue="COLLECTIONS-775" type="fix" dev="ggregory" due-to="Xin Tong, Bruno P. Kinoshita, Gary Gregory"> + Fix flaky CollectionUtilsTest.getFromMap() #200. + </action> + <action type="fix" dev="ggregory" due-to="Arturo Bernal"> + Minor Improvements #203, #208. + </action> + <action type="fix" dev="ggregory" due-to="EruDev"> + Fix typo erroring -> erring #202. + </action> + <action issue="COLLECTIONS-734" dev="ggregory" type="fix" due-to="Chen"> + Encountered an IllegalStateException while traversing with Flat3Map.entrySet(). #115. + </action> + <action dev="ggregory" type="fix" due-to="Chen, Bruno P. Kinoshita, Gary Gregory, Michael Osipov"> + Better NPE messages in CollectionUtils with Objects.requireNonNull #117. + </action> + <action dev="ggregory" type="fix" due-to="Chen"> + Improve MapUtils with the null checks, add JUnit for it and add Javadoc for the parameter indent. #126. + </action> + <action issue="COLLECTIONS-793" type="fix" dev="kinow" due-to="Arturo Bernal"> + Simplify Assertion. + </action> <!-- ADD --> + <action issue="COLLECTIONS-748" dev="ggregory" type="add" due-to="Gary Gregory"> + Let org.apache.commons.collections4.properties.[Sorted]PropertiesFactory accept XML input. + </action> + <action issue="COLLECTIONS-772" type="add" dev="ggregory" due-to="Arturo Bernal, Alex Herbert, Gary Gregory, Bruno P. Kinoshita"> + Add private constructor to ArrayUtils; better Javadocs, #195. + </action> <action issue="COLLECTIONS-760" dev="kinow" type="add" due-to="Isira Seneviratne"> Add tests for MapUtils. </action> @@ -167,9 +247,27 @@ Add github/codeql-action. </action> <action issue="COLLECTIONS-811" dev="kinow" type="add" due-to="Ben Manes"> - Integrate Guava testlib tests. + Add Guava testlib tests. + </action> + <action issue="COLLECTIONS-728" dev="ggregory" type="add" due-to="Claude Warren"> + Add BloomFilter contribution. + </action> + <action issue="COLLECTIONS-726" dev="ggregory" type="add" due-to="liuhaozzu, Gary Gregory"> + Add lambdas function to provide default values in MapUtils #81. + </action> + <action dev="ggregory" type="add" due-to="dota17"> + Add three test cases in UnmodifiableQueueTest #105. + </action> + <action issue="COLLECTIONS-744" dev="ggregory" type="add" due-to="Gary Gregory"> + Add org.apache.commons.collections4.EnumerationUtils.asIterable(Enumeration). + </action> + <action issue="COLLECTIONS-746" dev="ggregory" type="add" due-to="Gary Gregory"> + Add org.apache.commons.collections4.properties.PropertiesFactory.EMPTY_PROPERTIES. </action> <!-- UPDATE --> + <action dev="ggregory" type="update" due-to="Gary Gregory, Dependabot"> + Bump org.easymock:easymock from 4.0.2 to 5.1.0 #352, #355, #375. + </action> <action type="update" dev="kinow" due-to="Dependabot, Gary Gregory"> Bump actions/cache from 2 to 3.0.10 #214 #225 #239 #266 #294, #342, #345. </action> @@ -182,98 +280,29 @@ <action type="update" dev="kinow" due-to="Dependabot"> Bump codecov/codecov-action from 2 to 3 #297. </action> - <action issue="COLLECTIONS-737" dev="kinow" type="update" due-to="Prodigysov"> - Return 0 immediately if the given iterable is null in IterableUtils#size. Update tests. - </action> - <action issue="COLLECTIONS-697" dev="eax" type="update" due-to="Ranjan George"> - JavaDoc for FixedSizeList should warn that modifying underlying list is still allowed and is not prevented - </action> - <action issue="COLLECTIONS-738" dev="kinow" type="update" due-to="Pengyu Nie"> - Remove the redundant assertNull in IterableUtilsTest.find and update Javadocs. - </action> - <action issue="COLLECTIONS-724" dev="ggregory" type="update" due-to="Eitan Adler"> - Simplify two remove-if loops #77. - </action> - <action issue="COLLECTIONS-726" dev="ggregory" type="update" due-to="liuhaozzu, Gary Gregory"> - Add lambdas function to provide default values in MapUtils #81. - </action> - <action issue="COLLECTIONS-704" dev="ggregory" type="update" due-to="dota17"> - Update size to capacity for GrowthList #90. - </action> - <action dev="ggregory" type="update" due-to="dota17"> - TransformedSortedBagTest should work with TransformedSortedBag, not TransformedBag #98. - </action> - <action dev="ggregory" type="update" due-to="dota17"> - Update some map test cases #104. - </action> - <action dev="ggregory" type="update" due-to="dota17"> - Add three test cases in UnmodifiableQueueTest #105. - </action> - <action dev="ggregory" type="update" due-to="dota17"> - Remove the parentheses in the error message in CircularFifoQueue #107. - </action> <action dev="ggregory" type="update" due-to="Gary Gregory, Dependabot"> - [test] Bump org.easymock:easymock from 4.0.2 to 5.1.0 #352, #355, #375. - </action> - <action issue="COLLECTIONS-734" dev="ggregory" type="fix" due-to="Chen"> - Encountered an IllegalStateException while traversing with Flat3Map.entrySet(). #115. - </action> - <action dev="ggregory" type="update" due-to="Chen"> - Fix inconsistent @throws comments in ListOrderedSet #125. - </action> - <action issue="COLLECTIONS-744" dev="ggregory" type="add" due-to="Gary Gregory"> - Add org.apache.commons.collections4.EnumerationUtils.asIterable(Enumeration). - </action> - <action issue="COLLECTIONS-728" dev="ggregory" type="add" due-to="Claude Warren"> - BloomFilter contribution. - </action> - <action dev="ggregory" type="update" due-to="Gary Gregory, Dependabot"> - [build] Update Apache commons-parent from 48 to 54, #339. - </action> - <action issue="COLLECTIONS-746" dev="ggregory" type="add" due-to="Gary Gregory"> - Add org.apache.commons.collections4.properties.PropertiesFactory.EMPTY_PROPERTIES. + Bump Apache commons-parent from 48 to 54, #339. </action> <action dev="ggregory" type="update" due-to="Gary Gregory"> Bump Jacoco from 0.8.4 to 0.8.8. </action> - <action issue="COLLECTIONS-747" dev="ggregory" type="fix" due-to="Gary Gregory, Walter Laan"> - MultiKey.getKeys class cast exception. - </action> - <action issue="COLLECTIONS-748" dev="ggregory" type="update" due-to="Gary Gregory"> - Let org.apache.commons.collections4.properties.[Sorted]PropertiesFactory accept XML input. - </action> <action type="update" dev="ggregory" due-to="Gary Gregory"> Bump tests from Apache Commons Lang 3.9 to 3.11. </action> - <action dev="ggregory" type="update" due-to="Chen"> - Fixed the typo and deal the NPE with Objects.requireNonNull #118. - </action> <action type="update" dev="ggregory" due-to="Gary Gregory"> Bump maven-checkstyle-plugin 3.1.0 to 3.2.1 #379. </action> <action type="update" dev="ggregory" due-to="Gary Gregory"> Bump checkstyle 8.29 9.3 #179, #184, #192, #199, #204, #212, #218, #222, #234, #240, #243, #245, #246, #248, #257, #263, #270, #271, #277. </action> - <action dev="ggregory" type="update" due-to="Chen, Bruno P. Kinoshita, Gary Gregory, Michael Osipov"> - Better NPE messages in CollectionUtils with Objects.requireNonNull #117. - </action> <action issue="COLLECTIONS-754" type="update" dev="ggregory" due-to="John Patrick"> - Upgrade to JUnit v5.6.2 #136. + Bump to JUnit v5.6.2 #136. </action> <action issue="COLLECTIONS-777" type="update" dev="ggregory" due-to="John Patrick, Gary Gregory, Dependabot"> - Fully migrate JUnit 4.12 to 5.9.1 #324, #338. + Migrate JUnit 4.12 to 5.9.1 #324, #338. </action> <action issue="COLLECTIONS-753" type="update" dev="ggregory" due-to="John Patrick"> - Upgrade Hamcrest to 2.2. - </action> - <action issue="COLLECTIONS-759" dev="ggregory" type="update" due-to="Bruno P. Kinoshita"> - Add newline at end of file, and convert to Unix (LF instead of CRLF) fixing checkstyle #147. - </action> - <action issue="COLLECTIONS-757" dev="ggregory" type="update" due-to="Chen"> - Update Javadoc in BidiMap classes #146. - </action> - <action dev="ggregory" type="update" due-to="Chen"> - Improve MapUtils with the null checks, add JUnit for it and add Javadoc for the parameter indent. #126. + Bump Hamcrest to 2.2. </action> <action dev="ggregory" type="update" due-to="dengliming"> Remove deprecated sudo setting. #161. @@ -293,21 +322,6 @@ <action issue="COLLECTIONS-774" type="update" dev="ggregory" due-to="Dependabot"> Bump maven-antrun-plugin from 1.8 to 3.1.0 #170, #303. </action> - <action issue="COLLECTIONS-773" type="update" dev="ggregory" due-to="Martin Monperrus"> - Add an assertion to validate ensureCapacity #198. - </action> - <action issue="COLLECTIONS-772" type="update" dev="ggregory" due-to="Arturo Bernal, Alex Herbert, Gary Gregory, Bruno P. Kinoshita"> - Add private constructor to ArrayUtils; better Javadocs, #195. - </action> - <action issue="COLLECTIONS-775" type="update" dev="ggregory" due-to="Xin Tong, Bruno P. Kinoshita, Gary Gregory"> - Fix flaky CollectionUtilsTest.getFromMap() #200. - </action> - <action type="update" dev="ggregory" due-to="Arturo Bernal"> - Minor Improvements #203, #208. - </action> - <action type="update" dev="ggregory" due-to="EruDev"> - Fix typo erroring -> erring #202. - </action> <action type="update" dev="kinow" due-to="Dependabot"> Bump maven-checkstyle-plugin from 3.1.1 to 3.1.2 #211. </action> @@ -326,9 +340,6 @@ <action type="update" dev="kinow" due-to="Dependabot"> Bump easymock from 4.2 to 4.3 #226. </action> - <action issue="COLLECTIONS-793" type="update" dev="kinow" due-to="Arturo Bernal"> - Simplify Assertion. - </action> <action type="update" dev="ggregory" due-to="Dependabot"> Bump maven-pmd-plugin from 3.15.0 to 3.16.0 #286. </action> @@ -341,17 +352,6 @@ <action type="update" dev="kinow" due-to="Dependabot, Gary Gregory"> Bump pmd from 6.46.0 to 6.52.0 #318, #327, #333, #347. </action> - <action type="update" dev="aherbert" due-to="Partha Protim Paul"> - Correct test of Collection toArray(Object[]) vs toArray() to optionally ignore array order. - Ordering is not specified for some collections such as Bags. - </action> - <action issue="COLLECTIONS-835" type="update" dev="kinow" due-to="Marc Wrobel"> - Fix links in javadoc and documentations #325. - </action> - <action issue="COLLECTIONS-836" type="update" dev="aherbert" due-to="Anant Dahiya"> - Correct test of BidiMap to optionally ignore testing the key set matches the values order. - Ordering is not specified for some BidiMaps such as DualHashBidiMaps. - </action> <action type="update" dev="ggregory" due-to="Dependabot"> Bump guava-testlib from 31.1-jre to 32.0.0-jre #394. </action>