Skip to content
Success

Changes

Summary

  1. Update version number to 11.0.0-SNAPSHOT. (details)
  2. Add toSortedMap and toSortedMapBy to Collectors2. Closes #1046. (details)
  3. Upgrade jmh-core to 1.33 (details)
  4. Upgrade actions/upload-artifact to 2.2.4 (details)
  5. Upgrade actions/cache to 2.1.6 (details)
  6. Upgrade maven-resources-plugin to 3.2.0 (details)
  7. Upgrade codehaus maven plugin to 2.8.1 (details)
  8. #1109 Improve Pit Coverage. Add new tests. (details)
  9. Add toImmutableSortedMap and toImmutableSortedMapBy to Collectors2 (details)
  10. Refactor Collectors2Test to extract actual and expected variables (details)
  11. Refactor Collectors2Test to have uniform actual and expected variable names (details)
  12. Add toImmutableSortedBagBy to Collectors2 (details)
  13. Add toImmutableSortedListBy to Collectors2.Closes #1136 (details)
  14. Add JDK 17 to standard builds and update EA builds to JDK 18. (details)
  15. Signed-off-by: Alexander Goldberg <alexander.goldberg@bnymellon.com> (details)
  16. Add Java 17 to README.MD. (details)
  17. Add toImmutableSortedSetBy to Collectors2. Resolved #1137 (details)
  18. Upgrade coverage, mutation GitHub actions to Java 11. (details)
  19. Update ebr plugin to version 1.3.0 (details)
  20. #1109: Improve Pit Test Coverage (details)
  21. Release version 11.0.0.M4. (details)
Commit 378b02b1435d029d32363322f66071cd467f5621 by Collections Bot
Update version number to 11.0.0-SNAPSHOT.
The file was modified test-coverage/pom.xml (diff)
The file was modified performance-tests/pom.xml (diff)
The file was modified scala-unit-tests/pom.xml (diff)
The file was modified eclipse-collections/pom.xml (diff)
The file was modified eclipse-collections-code-generator/pom.xml (diff)
The file was modified jmh-tests/pom.xml (diff)
The file was modified p2-repository/org.eclipse.collections/pom.xml (diff)
The file was modified unit-tests-java8/pom.xml (diff)
The file was modified serialization-tests/pom.xml (diff)
The file was modified eclipse-collections-testutils/pom.xml (diff)
The file was modified acceptance-tests/pom.xml (diff)
The file was modified jcstress-tests/pom.xml (diff)
The file was modified eclipse-collections-code-generator-maven-plugin/pom.xml (diff)
The file was modified jmh-scala-tests/pom.xml (diff)
The file was modified unit-tests/pom.xml (diff)
The file was modified eclipse-collections-forkjoin/pom.xml (diff)
The file was modified junit-trait-runner/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified eclipse-collections-api/pom.xml (diff)
The file was modified p2-repository/pom.xml (diff)
Commit 79346ed151689bb30a8b3a3a2aeb3a319743b081 by Sirisha Pratha
Add toSortedMap and toSortedMapBy to Collectors2. Closes #1046.

Signed-off-by: Sirisha Pratha <sirisha.pratha@bnymellon.com>
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/collector/Collectors2.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/collector/Collectors2Test.java (diff)
Commit 1c3c97674c5e34b9f17c4e45f51e895235acf82f by Sirisha Pratha
Upgrade jmh-core to 1.33

Signed-off-by: Sirisha Pratha <sirisha.pratha@bnymellon.com>
The file was modified jmh-tests/pom.xml (diff)
Commit 67cb3e9e9d6adf6e0007b9120b1499e0d9fe8494 by Sirisha Pratha
Upgrade actions/upload-artifact to 2.2.4

Signed-off-by: Sirisha Pratha <sirisha.pratha@bnymellon.com>
The file was modified .github/workflows/coverage.yaml (diff)
The file was modified .github/workflows/mutation.yml (diff)
Commit a202820b9bf2ed299e6fcf97c28e221de1089853 by Sirisha Pratha
Upgrade actions/cache to 2.1.6

Signed-off-by: Sirisha Pratha <sirisha.pratha@bnymellon.com>
The file was modified .github/workflows/mutation.yml (diff)
Commit 96393fdafa4f6cf0f8a4c91d7df23f69c49d3a04 by Sirisha Pratha
Upgrade maven-resources-plugin to 3.2.0

Signed-off-by: Sirisha Pratha <sirisha.pratha@bnymellon.com>
The file was modified pom.xml (diff)
Commit 4a14c9791a5f05daa8a4500580a9e59d6fe68fd3 by Sirisha Pratha
Upgrade codehaus maven plugin to 2.8.1

Signed-off-by: Sirisha Pratha <sirisha.pratha@bnymellon.com>
The file was modified pom.xml (diff)
Commit e728959820206890b82099dd64f0939a770ff7ab by Alexander Goldberg
#1109 Improve Pit Coverage. Add new tests.
The file was addedunit-tests/src/test/java/org/eclipse/collections/impl/block/procedure/MinProcedureTest.java
The file was addedunit-tests/src/test/java/org/eclipse/collections/impl/block/procedure/SelectProcedureTest.java
The file was addedunit-tests/src/test/java/org/eclipse/collections/impl/block/procedure/MaxProcedureTest.java
The file was addedunit-tests/src/test/java/org/eclipse/collections/impl/block/procedure/MaxByProcedureTest.java
The file was addedunit-tests/src/test/java/org/eclipse/collections/impl/block/procedure/CollectionAddProcedureTest.java
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/block/procedure/IfProcedureTest.java (diff)
The file was addedunit-tests/src/test/java/org/eclipse/collections/impl/block/procedure/CollectProcedureTest.java
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/block/procedure/BagAddOccurrencesProcedureTest.java (diff)
The file was addedunit-tests/src/test/java/org/eclipse/collections/impl/block/procedure/RejectProcedureTest.java
The file was addedunit-tests/src/test/java/org/eclipse/collections/impl/block/procedure/SelectInstancesOfProcedureTest.java
The file was addedunit-tests/src/test/java/org/eclipse/collections/impl/block/procedure/MinByProcedureTest.java
The file was addedunit-tests/src/test/java/org/eclipse/collections/impl/block/procedure/MinComparatorProcedureTest.java
The file was addedunit-tests/src/test/java/org/eclipse/collections/impl/block/procedure/CounterProcedureTest.java
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/block/procedure/CaseProcedureTest.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/block/procedure/ChainedProcedureTest.java (diff)
The file was addedunit-tests/src/test/java/org/eclipse/collections/impl/block/procedure/AdaptObjectIntProcedureToProcedureTest.java
The file was addedunit-tests/src/test/java/org/eclipse/collections/impl/block/procedure/CollectionRemoveProcedureTest.java
Commit 9f8a4d33533b6d8ad67ac53cb746b158f46a0fa9 by Sirisha Pratha
Add toImmutableSortedMap and toImmutableSortedMapBy to Collectors2

Signed-off-by: Sirisha Pratha <sirisha.pratha@bnymellon.com>
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/collector/Collectors2Test.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/collector/Collectors2.java (diff)
Commit de8108e59688b3ef7996f73c11d5f9f5e003a623 by Sirisha Pratha
Refactor Collectors2Test to extract actual and expected variables

Signed-off-by: Sirisha Pratha <sirisha.pratha@bnymellon.com>
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/collector/Collectors2Test.java (diff)
Commit 95d5a54dae73486851c8893ce2d4bbf45fb8fc11 by Sirisha Pratha
Refactor Collectors2Test to have uniform actual and expected variable names

Signed-off-by: Sirisha Pratha <sirisha.pratha@bnymellon.com>
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/collector/Collectors2Test.java (diff)
Commit 5c9997c5e546bb86f411ab4f604799ba2d49ad2c by Utkarsh Nagar
Add toImmutableSortedBagBy to Collectors2

Signed-off-by: Utkarsh Nagar <utkarshnagar2000@gmail.com>
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/collector/Collectors2.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/collector/Collectors2Test.java (diff)
Commit db29e86be6649c7137d7bd5337b435e6d6e50c36 by Utkarsh Nagar
Add toImmutableSortedListBy to Collectors2.Closes #1136

Signed-off-by: Utkarsh Nagar <utkarshnagar2000@gmail.com>

reword Add toImmutableSortedListBy to Collectors2.Closes#1136

Signed-off-by: Utkarsh Nagar <utkarshnagar2000@gmail.com>
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/collector/Collectors2.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/collector/Collectors2Test.java (diff)
Commit 2bc8dea06336cd5c61a23ef625a0b32f2919cf1f by Donald Raab
Add JDK 17 to standard builds and update EA builds to JDK 18.

Signed-off-by: Donald Raab <Donald.Raab@bnymellon.com>
The file was modified .github/workflows/earlyaccess-javadoc.yml (diff)
The file was modified .github/workflows/unit-no-p2.yml (diff)
The file was modified .github/workflows/unit.yml (diff)
The file was modified .github/workflows/earlyaccess-unit.yml (diff)
The file was modified .github/workflows/javadoc.yml (diff)
Commit d6c96102fa64e09f309d65398bfc86f368173b94 by Alexander Goldberg
Signed-off-by: Alexander Goldberg <alexander.goldberg@bnymellon.com>
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/EmptyIteratorTest.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/bag/immutable/ImmutableBagFactoryTest.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/factory/ListsTest.java (diff)
The file was addedunit-tests/src/test/java/org/eclipse/collections/api/factory/bag/MutableBagFactoryTest.java
The file was addedunit-tests/src/test/java/org/eclipse/collections/api/factory/stack/MutableStackFactoryTest.java
Commit f69ce7ba92b18e718d3dfa6c5d62a66271940e62 by Donald Raab
Add Java 17 to README.MD.

Signed-off-by: Donald Raab <Donald.Raab@bnymellon.com>
The file was modified README.md (diff)
Commit 3f398a7672310f9b4aae084bc3e8e2d698da461d by Ly Bui
Add toImmutableSortedSetBy to Collectors2. Resolved #1137

Signed-off-by: Ly (Harriet) Bui <lhbui@umass.edu>
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/collector/Collectors2Test.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/collector/Collectors2.java (diff)
Commit ce33ebc7c14bd67ecae9b255b4ed0faa527355b4 by Donald Raab
Upgrade coverage, mutation GitHub actions to Java 11.

Signed-off-by: Donald Raab <Donald.Raab@bnymellon.com>
The file was modified .github/workflows/mutation.yml (diff)
The file was modified .github/workflows/coverage.yaml (diff)
Commit 801be4bcc6a9fad96838130f300bdb334b0af2db by Sirisha Pratha
Update ebr plugin to version 1.3.0

Signed-off-by: Sirisha Pratha <sirisha.pratha@bnymellon.com>
The file was modified p2-repository/pom.xml (diff)
Commit 26203639e0ed2f452718f235051d050c84c92105 by Alexander Goldberg
#1109: Improve Pit Test Coverage
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/factory/ListsTest.java (diff)
The file was addedunit-tests/src/test/java/org/eclipse/collections/impl/partition/list/PartitionFastListTest.java
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/bag/sorted/mutable/TreeBagTest.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/set/sorted/mutable/AbstractSortedSetTestCase.java (diff)
The file was addedunit-tests/src/test/java/org/eclipse/collections/impl/block/function/checked/CheckedFunction2Test.java
Commit 9c5f0a9c677c121543da8770845194bc8a30b9dc by Collections Bot
Release version 11.0.0.M4.
The file was modified scala-unit-tests/pom.xml (diff)
The file was modified eclipse-collections-code-generator/pom.xml (diff)
The file was modified performance-tests/pom.xml (diff)
The file was modified unit-tests-java8/pom.xml (diff)
The file was modified unit-tests/pom.xml (diff)
The file was modified eclipse-collections-testutils/pom.xml (diff)
The file was modified jcstress-tests/pom.xml (diff)
The file was modified serialization-tests/pom.xml (diff)
The file was modified eclipse-collections-api/pom.xml (diff)
The file was modified jmh-tests/pom.xml (diff)
The file was modified junit-trait-runner/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified jmh-scala-tests/pom.xml (diff)
The file was modified eclipse-collections-code-generator-maven-plugin/pom.xml (diff)
The file was modified p2-repository/pom.xml (diff)
The file was modified acceptance-tests/pom.xml (diff)
The file was modified eclipse-collections-forkjoin/pom.xml (diff)
The file was modified test-coverage/pom.xml (diff)
The file was modified eclipse-collections/pom.xml (diff)
The file was modified p2-repository/org.eclipse.collections/pom.xml (diff)