Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[COLLECTIONS-795] Add a new Iterator to allowing zipping over two iterators of different types #238

Closed
wants to merge 326 commits into from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Aug 14, 2023

  1. Configuration menu
    Copy the full SHA
    afa8fe8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8aa1cd4 View commit details
    Browse the repository at this point in the history
  3. [COLLECTIONS-811] Integrate Guava Testlib tests for Apache Commons Co…

    …llections (apache#301)
    
    * [COLLECTIONS-811] Integrate Guava Testlib tests for Apache Commons Collections
    
    * [COLLECTIONS-811] Add tests for Lists too, thanks to @ben-manes
    kinow authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    2a6308e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    61d87b9 View commit details
    Browse the repository at this point in the history
  5. Bump maven-pmd-plugin from 3.16.0 to 3.17.0

    Bumps [maven-pmd-plugin](https://github.com/apache/maven-pmd-plugin) from 3.16.0 to 3.17.0.
    - [Release notes](https://github.com/apache/maven-pmd-plugin/releases)
    - [Commits](apache/maven-pmd-plugin@maven-pmd-plugin-3.16.0...maven-pmd-plugin-3.17.0)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-pmd-plugin
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    d814fc1 View commit details
    Browse the repository at this point in the history
  6. Remove obsolete Maven profile

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    cf3fb3d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a22a2b9 View commit details
    Browse the repository at this point in the history
  8. Simplify bloom filters (apache#258)

    * Fixed some unit tests
    
    * First set with complete test cases.
    
    * Cleaned up hasher collecton processing
    
    * cleaned up code
    
    * added license headers
    
    * Refactored and cleaned up
    
    Moved to dependency on BitMapProducer, IndexProducer and
    BitCountProducer to retrieve internal representations of the data.
    
    * Added license header.
    
    * Updated documentation
    
    * Fixed bug and added tests
    
    * Added "@SInCE 4.5" where necessary
    
    * Added BitMapProducer constructor to SimpleBloomFilter
    
    * added BitMapProducer.fromLongArray() and Hasher.isEmpty()
    
    * Changes to speed up Simple filter processing
    
    * Null hasher used when a hasher is required but no values are available.
    
    * Added Hasher.Filter and Hasher.FilteredIntConsumer
    
    * Updated documentation + formatted.
    
    * Added license
    
    * fixed checkstyle issues
    
    * fixed javadoc issues
    
    * fixed test issue
    
    * fixed javadoc issues
    
    * Reduced the acceptable delta for p tests
    
    * Updated docs and test cases
    
    * Updated docs and test cases
    
    * fixed issue with Shape javadoc
    
    * Added more test coverage.
    
    * fixed formatting issues
    
    * Updated tests to use assertThrows.
    
    * fixed indents
    
    * Added constructor with IndexProducer
    
    * Fixed issue with compare and different length bitMap arrays
    
    * fixed formatting issues
    
    * Efficiency changes
    
    cleaned up asIndexArray
    
    BitMapProducer to IndexProducer conversion
    
    * changed XProviers to use XPredicates
    
    * Removed NoMatchException
    
    * Removed unneeded BitMap funcs
    
    Moves isSparse() to Shape.
    
    * fixed checkstyle issues
    
    * Fixed javadoc errors
    
    * simplified parameter in BitMapProducer.fromIndexProducer
    
    * fixed tests
    
    * added BitMapping verification
    
    * Added more tests
    
    * Added more tests
    
    * Fixed typos
    
    * Changes requested  by aherbert
    
    * fixed "bit map" in documentation
    
    * Renamed tests
    
    * Removed blank lines
    
    * changed new X<foo> to new X<>
    
    * updated documentation
    
    * Added BloomFilter.copy()
    
    * changed ArrayCountingBloomFilter to use copy() method
    
    * cleaned up numberOfBitsMaps()
    
    * added asBitMapArray() and makePredicate() to BitMapProducer
    
    * Moved asIndexArray() to IndexProducer
    
    * harmonized Simple and Sparse Bloom filter constructors
    
    * Implemented AbstractCountingBloomFilter.asindexArray()
    
    * updated documentation
    
    * fixed up NullHasher
    
    * implemented hasher filter
    
    * Fixed style issues
    
    * added default SimpleHasher increment.
    
    * Added modulus calculation to SimpleHasher
    
    * fixed Hashing issues
    
    * moved hasher/filter/* to /hasher
    
    * moved bloomfilter/hasher to bloomfilter
    
    * fixed up checkstyle issues
    
    * Made Filter -> IndexFilter -w- factory
    
    * moved IndexFilter into Hasher
    
    * updated hashing tests & fixed checksyle
    
    * removed SingleItemhasherCollection as associated methods
    
    * Fixed some unit tests
    
    * First set with complete test cases.
    
    * Cleaned up hasher collecton processing
    
    * cleaned up code
    
    * added license headers
    
    * Refactored and cleaned up
    
    Moved to dependency on BitMapProducer, IndexProducer and
    BitCountProducer to retrieve internal representations of the data.
    
    * Added license header.
    
    * Updated documentation
    
    * Fixed bug and added tests
    
    * Added "@SInCE 4.5" where necessary
    
    * Added BitMapProducer constructor to SimpleBloomFilter
    
    * added BitMapProducer.fromLongArray() and Hasher.isEmpty()
    
    * Changes to speed up Simple filter processing
    
    * Null hasher used when a hasher is required but no values are available.
    
    * Added Hasher.Filter and Hasher.FilteredIntConsumer
    
    * Updated documentation + formatted.
    
    * Added license
    
    * fixed checkstyle issues
    
    * fixed javadoc issues
    
    * fixed test issue
    
    * fixed javadoc issues
    
    * Reduced the acceptable delta for p tests
    
    * Updated docs and test cases
    
    * Updated docs and test cases
    
    * fixed issue with Shape javadoc
    
    * Added more test coverage.
    
    * fixed formatting issues
    
    * Updated tests to use assertThrows.
    
    * fixed indents
    
    * Added constructor with IndexProducer
    
    * Fixed issue with compare and different length bitMap arrays
    
    * fixed formatting issues
    
    * Efficiency changes
    
    cleaned up asIndexArray
    
    BitMapProducer to IndexProducer conversion
    
    * changed XProviers to use XPredicates
    
    * Removed NoMatchException
    
    * Removed unneeded BitMap funcs
    
    Moves isSparse() to Shape.
    
    * fixed checkstyle issues
    
    * Fixed javadoc errors
    
    * simplified parameter in BitMapProducer.fromIndexProducer
    
    * fixed tests
    
    * added BitMapping verification
    
    * Added more tests
    
    * Added more tests
    
    * Fixed typos
    
    * Changes requested  by aherbert
    
    * fixed "bit map" in documentation
    
    * Renamed tests
    
    * Removed blank lines
    
    * changed new X<foo> to new X<>
    
    * updated documentation
    
    * Added BloomFilter.copy()
    
    * changed ArrayCountingBloomFilter to use copy() method
    
    * cleaned up numberOfBitsMaps()
    
    * added asBitMapArray() and makePredicate() to BitMapProducer
    
    * Moved asIndexArray() to IndexProducer
    
    * harmonized Simple and Sparse Bloom filter constructors
    
    * Implemented AbstractCountingBloomFilter.asindexArray()
    
    * updated documentation
    
    * fixed up NullHasher
    
    * implemented hasher filter
    
    * Fixed style issues
    
    * added default SimpleHasher increment.
    
    * Added modulus calculation to SimpleHasher
    
    * fixed Hashing issues
    
    * moved hasher/filter/* to /hasher
    
    * moved bloomfilter/hasher to bloomfilter
    
    * fixed up checkstyle issues
    
    * Made Filter -> IndexFilter -w- factory
    
    * moved IndexFilter into Hasher
    
    * updated hashing tests & fixed checksyle
    
    * removed SingleItemhasherCollection as associated methods
    
    * fixed javadoc issues
    
    * fixed javadoc issues
    
    * added checks for BitMapProducer limits and index limits
    
    * updated tests
    
    * added tests
    
    * fixed checkstyle issues
    
    * fixed formatting and test coverage
    
    * fixed javadoc issue
    
    * put back checkstyle.xml
    
    * switched to forEachBitMapPair
    
    * updated BitMap and Index array production
    
    * fixed merge with BitMapProducer
    
    * Cleaned up formatting
    
    * fixed checkstyle issues
    
    * fixed coding issues
    
    * updated documentation
    
    * simplified test
    
    * removed unwanted merge files
    
    * removed duplicate entry
    
    * put back test that incorrectly removed
    
    * fixed asIndexArray error
    
    * fixed checkstyle errors
    
    * Changes for last review
    Claudenw authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    4e36ad9 View commit details
    Browse the repository at this point in the history
  9. Move counting long predicate (apache#314)

    * Moved CounitngLongPredicate
    
    * Moved CounitngLongPredicate
    
    * fixed checkstyle issues
    
    * made instance vars private
    Claudenw authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    86e5f7c View commit details
    Browse the repository at this point in the history
  10. Bump commons.pmd-impl.version from 6.46.0 to 6.47.0

    Bumps `commons.pmd-impl.version` from 6.46.0 to 6.47.0.
    
    Updates `pmd-core` from 6.46.0 to 6.47.0
    - [Release notes](https://github.com/pmd/pmd/releases)
    - [Changelog](https://github.com/pmd/pmd/blob/master/docs/render_release_notes.rb)
    - [Commits](pmd/pmd@pmd_releases/6.46.0...pmd_releases/6.47.0)
    
    Updates `pmd-java` from 6.46.0 to 6.47.0
    - [Release notes](https://github.com/pmd/pmd/releases)
    - [Changelog](https://github.com/pmd/pmd/blob/master/docs/render_release_notes.rb)
    - [Commits](pmd/pmd@pmd_releases/6.46.0...pmd_releases/6.47.0)
    
    Updates `pmd-javascript` from 6.46.0 to 6.47.0
    - [Release notes](https://github.com/pmd/pmd/releases)
    - [Changelog](https://github.com/pmd/pmd/blob/master/docs/render_release_notes.rb)
    - [Commits](pmd/pmd@pmd_releases/6.46.0...pmd_releases/6.47.0)
    
    Updates `pmd-jsp` from 6.46.0 to 6.47.0
    - [Release notes](https://github.com/pmd/pmd/releases)
    - [Changelog](https://github.com/pmd/pmd/blob/master/docs/render_release_notes.rb)
    - [Commits](pmd/pmd@pmd_releases/6.46.0...pmd_releases/6.47.0)
    
    ---
    updated-dependencies:
    - dependency-name: net.sourceforge.pmd:pmd-core
      dependency-type: direct:production
      update-type: version-update:semver-minor
    - dependency-name: net.sourceforge.pmd:pmd-java
      dependency-type: direct:production
      update-type: version-update:semver-minor
    - dependency-name: net.sourceforge.pmd:pmd-javascript
      dependency-type: direct:production
      update-type: version-update:semver-minor
    - dependency-name: net.sourceforge.pmd:pmd-jsp
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    0096325 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    e306c67 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    b7bcfcf View commit details
    Browse the repository at this point in the history
  13. COLLECTIONS-823: Modified ArrayCountingBloomFilter.forEachBitMap to b…

    …e more efficient (apache#316)
    
    * Modified forEachBitMap
    * made blocksm1 final and initialized with counts.length
    Claudenw authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    a2b0fb7 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    194c16c View commit details
    Browse the repository at this point in the history
  15. Added new lines at end of files

    Claudenw authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    50c9a89 View commit details
    Browse the repository at this point in the history
  16. put IndexFilter in separate file.

    put BitMapTracker and ArrayTracker back as enclosed classes in
    IndexFilter
    Claudenw authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    b723a52 View commit details
    Browse the repository at this point in the history
  17. added missing license

    Claudenw authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    c9c0692 View commit details
    Browse the repository at this point in the history
  18. fixed checkstyle issues

    Claudenw authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    6b060af View commit details
    Browse the repository at this point in the history
  19. removed bad import

    Claudenw authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    3c2f9c9 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    f44bab8 View commit details
    Browse the repository at this point in the history
  21. removed unused imports

    Claudenw authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    0a21aab View commit details
    Browse the repository at this point in the history
  22. Use for-each loop

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    2824b3d View commit details
    Browse the repository at this point in the history
  23. Bump actions/cache 3.0.4 to 3.0.5

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    f5256e4 View commit details
    Browse the repository at this point in the history
  24. replaced merge with old mergeInPlace

    removed mergeInPlace
    Claudenw authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    e7b92dc View commit details
    Browse the repository at this point in the history
  25. removed files added in error

    Claudenw authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    056c6f4 View commit details
    Browse the repository at this point in the history
  26. Bump commons.junit.version from 5.8.2 to 5.9.0 (apache#324)

    Bumps `commons.junit.version` from 5.8.2 to 5.9.0.
    
    Updates `junit-jupiter-api` from 5.8.2 to 5.9.0
    - [Release notes](https://github.com/junit-team/junit5/releases)
    - [Commits](junit-team/junit5@r5.8.2...r5.9.0)
    
    Updates `junit-jupiter-engine` from 5.8.2 to 5.9.0
    - [Release notes](https://github.com/junit-team/junit5/releases)
    - [Commits](junit-team/junit5@r5.8.2...r5.9.0)
    
    Updates `junit-jupiter-params` from 5.8.2 to 5.9.0
    - [Release notes](https://github.com/junit-team/junit5/releases)
    - [Commits](junit-team/junit5@r5.8.2...r5.9.0)
    
    Updates `junit-vintage-engine` from 5.8.2 to 5.9.0
    - [Release notes](https://github.com/junit-team/junit5/releases)
    - [Commits](junit-team/junit5@r5.8.2...r5.9.0)
    
    ---
    updated-dependencies:
    - dependency-name: org.junit.jupiter:junit-jupiter-api
      dependency-type: direct:development
      update-type: version-update:semver-minor
    - dependency-name: org.junit.jupiter:junit-jupiter-engine
      dependency-type: direct:development
      update-type: version-update:semver-minor
    - dependency-name: org.junit.jupiter:junit-jupiter-params
      dependency-type: direct:development
      update-type: version-update:semver-minor
    - dependency-name: org.junit.vintage:junit-vintage-engine
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    7b4ea05 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    88147b1 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    e452ee9 View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    f4d9058 View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    eddbd00 View commit details
    Browse the repository at this point in the history
  31. Bump commons.pmd-impl.version from 6.47.0 to 6.48.0

    Bumps `commons.pmd-impl.version` from 6.47.0 to 6.48.0.
    
    Updates `pmd-core` from 6.47.0 to 6.48.0
    - [Release notes](https://github.com/pmd/pmd/releases)
    - [Changelog](https://github.com/pmd/pmd/blob/master/docs/render_release_notes.rb)
    - [Commits](pmd/pmd@pmd_releases/6.47.0...pmd_releases/6.48.0)
    
    Updates `pmd-java` from 6.47.0 to 6.48.0
    - [Release notes](https://github.com/pmd/pmd/releases)
    - [Changelog](https://github.com/pmd/pmd/blob/master/docs/render_release_notes.rb)
    - [Commits](pmd/pmd@pmd_releases/6.47.0...pmd_releases/6.48.0)
    
    Updates `pmd-javascript` from 6.47.0 to 6.48.0
    - [Release notes](https://github.com/pmd/pmd/releases)
    - [Changelog](https://github.com/pmd/pmd/blob/master/docs/render_release_notes.rb)
    - [Commits](pmd/pmd@pmd_releases/6.47.0...pmd_releases/6.48.0)
    
    Updates `pmd-jsp` from 6.47.0 to 6.48.0
    - [Release notes](https://github.com/pmd/pmd/releases)
    - [Changelog](https://github.com/pmd/pmd/blob/master/docs/render_release_notes.rb)
    - [Commits](pmd/pmd@pmd_releases/6.47.0...pmd_releases/6.48.0)
    
    ---
    updated-dependencies:
    - dependency-name: net.sourceforge.pmd:pmd-core
      dependency-type: direct:production
      update-type: version-update:semver-minor
    - dependency-name: net.sourceforge.pmd:pmd-java
      dependency-type: direct:production
      update-type: version-update:semver-minor
    - dependency-name: net.sourceforge.pmd:pmd-javascript
      dependency-type: direct:production
      update-type: version-update:semver-minor
    - dependency-name: net.sourceforge.pmd:pmd-jsp
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    4bc40e5 View commit details
    Browse the repository at this point in the history
  32. Collections-824: Optimize SimpleHasher.forEachIndex and SimpleHasher …

    …name change (apache#320)
    
    * Renamed simple hasher as EnhancedDoubleHasher
    
    * Added test for number of bits < number of hash functions
    
    * Added IncrementingHasher for testing and updated tests
    
    * Added test for number of bits < number of hash functions
    
    * Fixed uniqueIndices implementation
    
    Added default implementation.
    Added test for unique filter working.
    Claudenw authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    2b03765 View commit details
    Browse the repository at this point in the history
  33. Collections 827: Add tests using or, and and xor with different lengt…

    …h filters. (apache#328)
    
    * added missing tests
    * simplified test framework
    Claudenw authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    55528c5 View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    731c42f View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    05ec896 View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    f767cfd View commit details
    Browse the repository at this point in the history
  37. Configuration menu
    Copy the full SHA
    403aeaf View commit details
    Browse the repository at this point in the history
  38. Test code cleanup

    Use static
    
    Remove incorrect javadoc tags
    
    Add javadoc to return tag
    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    f4ae48f View commit details
    Browse the repository at this point in the history
  39. Removed obsolete file

    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    134303e View commit details
    Browse the repository at this point in the history
  40. [COLLECTIONS-833] Intermittent failure in EmptyPropertiesTest

    Ignore second line of properties files since contain a timestamp, which
    is a problem when the time ticks to the next second within some tests
    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    4c410fb View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    3c7a225 View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    333a2e9 View commit details
    Browse the repository at this point in the history
  43. Configuration menu
    Copy the full SHA
    03f9f6d View commit details
    Browse the repository at this point in the history
  44. Use diamond operator

    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    426a289 View commit details
    Browse the repository at this point in the history
  45. Use private inner class

    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    0f701b7 View commit details
    Browse the repository at this point in the history
  46. Add CodeQL badge

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    9eb8e43 View commit details
    Browse the repository at this point in the history
  47. Configuration menu
    Copy the full SHA
    0118753 View commit details
    Browse the repository at this point in the history
  48. Configuration menu
    Copy the full SHA
    6720909 View commit details
    Browse the repository at this point in the history
  49. Configuration menu
    Copy the full SHA
    1538214 View commit details
    Browse the repository at this point in the history
  50. Formatting

    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    a14e1e5 View commit details
    Browse the repository at this point in the history
  51. Configuration menu
    Copy the full SHA
    6e06ecd View commit details
    Browse the repository at this point in the history
  52. Configuration menu
    Copy the full SHA
    d8938a7 View commit details
    Browse the repository at this point in the history
  53. Configuration menu
    Copy the full SHA
    db8c7d6 View commit details
    Browse the repository at this point in the history
  54. Rename type parameter

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    54ef3fa View commit details
    Browse the repository at this point in the history
  55. Bump commons.pmd-impl.version from 6.48.0 to 6.49.0 (apache#333)

    Bumps `commons.pmd-impl.version` from 6.48.0 to 6.49.0.
    
    Updates `pmd-core` from 6.48.0 to 6.49.0
    - [Release notes](https://github.com/pmd/pmd/releases)
    - [Changelog](https://github.com/pmd/pmd/blob/master/docs/render_release_notes.rb)
    - [Commits](pmd/pmd@pmd_releases/6.48.0...pmd_releases/6.49.0)
    
    Updates `pmd-java` from 6.48.0 to 6.49.0
    - [Release notes](https://github.com/pmd/pmd/releases)
    - [Changelog](https://github.com/pmd/pmd/blob/master/docs/render_release_notes.rb)
    - [Commits](pmd/pmd@pmd_releases/6.48.0...pmd_releases/6.49.0)
    
    Updates `pmd-javascript` from 6.48.0 to 6.49.0
    - [Release notes](https://github.com/pmd/pmd/releases)
    - [Changelog](https://github.com/pmd/pmd/blob/master/docs/render_release_notes.rb)
    - [Commits](pmd/pmd@pmd_releases/6.48.0...pmd_releases/6.49.0)
    
    Updates `pmd-jsp` from 6.48.0 to 6.49.0
    - [Release notes](https://github.com/pmd/pmd/releases)
    - [Changelog](https://github.com/pmd/pmd/blob/master/docs/render_release_notes.rb)
    - [Commits](pmd/pmd@pmd_releases/6.48.0...pmd_releases/6.49.0)
    
    ---
    updated-dependencies:
    - dependency-name: net.sourceforge.pmd:pmd-core
      dependency-type: direct:production
      update-type: version-update:semver-minor
    - dependency-name: net.sourceforge.pmd:pmd-java
      dependency-type: direct:production
      update-type: version-update:semver-minor
    - dependency-name: net.sourceforge.pmd:pmd-javascript
      dependency-type: direct:production
      update-type: version-update:semver-minor
    - dependency-name: net.sourceforge.pmd:pmd-jsp
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    44cb1f5 View commit details
    Browse the repository at this point in the history
  56. Configuration menu
    Copy the full SHA
    5ea10a0 View commit details
    Browse the repository at this point in the history
  57. Configuration menu
    Copy the full SHA
    46e7ea9 View commit details
    Browse the repository at this point in the history
  58. Bump maven-pmd-plugin from 3.18.0 to 3.19.0

    Bumps [maven-pmd-plugin](https://github.com/apache/maven-pmd-plugin) from 3.18.0 to 3.19.0.
    - [Release notes](https://github.com/apache/maven-pmd-plugin/releases)
    - [Commits](apache/maven-pmd-plugin@maven-pmd-plugin-3.18.0...maven-pmd-plugin-3.19.0)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-pmd-plugin
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    964695a View commit details
    Browse the repository at this point in the history
  59. Configuration menu
    Copy the full SHA
    ac30e1b View commit details
    Browse the repository at this point in the history
  60. Fix typo

    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    4d214b5 View commit details
    Browse the repository at this point in the history
  61. Simplify random indices tests

    Use streams to generate arrays.
    
    Use BitSet to create a unique set of indices.
    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    98ce7ff View commit details
    Browse the repository at this point in the history
  62. Update IndexProducerTest to test the behaviour

    IndexProducers are tested for consistency between the indices output by
    forEach and asIndexArray.
    
    In addition the output methods can be tested that the indices are
    ordered or distinct.
    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    a294c35 View commit details
    Browse the repository at this point in the history
  63. Configuration menu
    Copy the full SHA
    28078f7 View commit details
    Browse the repository at this point in the history
  64. Configuration menu
    Copy the full SHA
    f88867c View commit details
    Browse the repository at this point in the history
  65. Use GitHub cache for CodeQL

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    c0a5ba3 View commit details
    Browse the repository at this point in the history
  66. Bump commons.junit.version from 5.9.0 to 5.9.1 (apache#338)

    Bumps `commons.junit.version` from 5.9.0 to 5.9.1.
    
    Updates `junit-jupiter-api` from 5.9.0 to 5.9.1
    - [Release notes](https://github.com/junit-team/junit5/releases)
    - [Commits](junit-team/junit5@r5.9.0...r5.9.1)
    
    Updates `junit-jupiter-engine` from 5.9.0 to 5.9.1
    - [Release notes](https://github.com/junit-team/junit5/releases)
    - [Commits](junit-team/junit5@r5.9.0...r5.9.1)
    
    Updates `junit-jupiter-params` from 5.9.0 to 5.9.1
    - [Release notes](https://github.com/junit-team/junit5/releases)
    - [Commits](junit-team/junit5@r5.9.0...r5.9.1)
    
    Updates `junit-vintage-engine` from 5.9.0 to 5.9.1
    - [Release notes](https://github.com/junit-team/junit5/releases)
    - [Commits](junit-team/junit5@r5.9.0...r5.9.1)
    
    ---
    updated-dependencies:
    - dependency-name: org.junit.jupiter:junit-jupiter-api
      dependency-type: direct:development
      update-type: version-update:semver-patch
    - dependency-name: org.junit.jupiter:junit-jupiter-engine
      dependency-type: direct:development
      update-type: version-update:semver-patch
    - dependency-name: org.junit.jupiter:junit-jupiter-params
      dependency-type: direct:development
      update-type: version-update:semver-patch
    - dependency-name: org.junit.vintage:junit-vintage-engine
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    34c11c3 View commit details
    Browse the repository at this point in the history
  67. Configuration menu
    Copy the full SHA
    076f8ee View commit details
    Browse the repository at this point in the history
  68. Bump commons-parent from 53 to 54 (apache#339)

    Bumps [commons-parent](https://github.com/apache/commons-parent) from 53 to 54.
    - [Release notes](https://github.com/apache/commons-parent/releases)
    - [Changelog](https://github.com/apache/commons-parent/blob/master/RELEASE-NOTES.txt)
    - [Commits](https://github.com/apache/commons-parent/commits)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.commons:commons-parent
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    f88644c View commit details
    Browse the repository at this point in the history
  69. Configuration menu
    Copy the full SHA
    33aa9d1 View commit details
    Browse the repository at this point in the history
  70. Configuration menu
    Copy the full SHA
    663cf79 View commit details
    Browse the repository at this point in the history
  71. Update test of unordered arrays

    Matching the length and then matching items in a Set will not detect a
    count mismatch of duplicates. This test now explicitly matches each item
    once and only once.
    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    40fc4d1 View commit details
    Browse the repository at this point in the history
  72. Track changes

    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    08c3e11 View commit details
    Browse the repository at this point in the history
  73. Configuration menu
    Copy the full SHA
    0fe27a2 View commit details
    Browse the repository at this point in the history
  74. Configuration menu
    Copy the full SHA
    0d20bfa View commit details
    Browse the repository at this point in the history
  75. Configuration menu
    Copy the full SHA
    1a21f3e View commit details
    Browse the repository at this point in the history
  76. Configuration menu
    Copy the full SHA
    d1e2412 View commit details
    Browse the repository at this point in the history
  77. Configuration menu
    Copy the full SHA
    1dc2d9c View commit details
    Browse the repository at this point in the history
  78. Bump actions/cache from 3.0.8 to 3.0.9 (apache#342)

    Bumps [actions/cache](https://github.com/actions/cache) from 3.0.8 to 3.0.9.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.0.8...v3.0.9)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    24b8b2c View commit details
    Browse the repository at this point in the history
  79. Configuration menu
    Copy the full SHA
    a6355c2 View commit details
    Browse the repository at this point in the history
  80. Configuration menu
    Copy the full SHA
    2ea29ab View commit details
    Browse the repository at this point in the history
  81. Fix flaky test failure in 'AbstractCollectionTest.testCollectionToArr…

    …ay2'
    
    Use the AbstractCollectionTest iteration order flag in Map and Bag tests. These tests have inner classes that extend AbstractCollectionTest to test their values collection. This should be robust to an unspecified iteration order.
    Partha-SUST16 authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    673da2f View commit details
    Browse the repository at this point in the history
  82. Configuration menu
    Copy the full SHA
    df2bfae View commit details
    Browse the repository at this point in the history
  83. Configuration menu
    Copy the full SHA
    b1b8c65 View commit details
    Browse the repository at this point in the history
  84. Bump actions/cache from 3.0.9 to 3.0.10

    Bumps [actions/cache](https://github.com/actions/cache) from 3.0.9 to 3.0.10.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.0.9...v3.0.10)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    604c9bd View commit details
    Browse the repository at this point in the history
  85. Bump commons.pmd-impl.version from 6.49.0 to 6.50.0

    Bumps `commons.pmd-impl.version` from 6.49.0 to 6.50.0.
    
    Updates `pmd-core` from 6.49.0 to 6.50.0
    - [Release notes](https://github.com/pmd/pmd/releases)
    - [Changelog](https://github.com/pmd/pmd/blob/master/docs/render_release_notes.rb)
    - [Commits](pmd/pmd@pmd_releases/6.49.0...pmd_releases/6.50.0)
    
    Updates `pmd-java` from 6.49.0 to 6.50.0
    - [Release notes](https://github.com/pmd/pmd/releases)
    - [Changelog](https://github.com/pmd/pmd/blob/master/docs/render_release_notes.rb)
    - [Commits](pmd/pmd@pmd_releases/6.49.0...pmd_releases/6.50.0)
    
    Updates `pmd-javascript` from 6.49.0 to 6.50.0
    - [Release notes](https://github.com/pmd/pmd/releases)
    - [Changelog](https://github.com/pmd/pmd/blob/master/docs/render_release_notes.rb)
    - [Commits](pmd/pmd@pmd_releases/6.49.0...pmd_releases/6.50.0)
    
    Updates `pmd-jsp` from 6.49.0 to 6.50.0
    - [Release notes](https://github.com/pmd/pmd/releases)
    - [Changelog](https://github.com/pmd/pmd/blob/master/docs/render_release_notes.rb)
    - [Commits](pmd/pmd@pmd_releases/6.49.0...pmd_releases/6.50.0)
    
    ---
    updated-dependencies:
    - dependency-name: net.sourceforge.pmd:pmd-core
      dependency-type: direct:production
      update-type: version-update:semver-minor
    - dependency-name: net.sourceforge.pmd:pmd-java
      dependency-type: direct:production
      update-type: version-update:semver-minor
    - dependency-name: net.sourceforge.pmd:pmd-javascript
      dependency-type: direct:production
      update-type: version-update:semver-minor
    - dependency-name: net.sourceforge.pmd:pmd-jsp
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    6dbf920 View commit details
    Browse the repository at this point in the history
  86. Bump actions/checkout from 3.0.2 to 3.1.0

    Bumps [actions/checkout](https://github.com/actions/checkout) from 3.0.2 to 3.1.0.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v3.0.2...93ea575)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    99bea64 View commit details
    Browse the repository at this point in the history
  87. Configuration menu
    Copy the full SHA
    59c73fd View commit details
    Browse the repository at this point in the history
  88. Bump actions/cache from 3.0.10 to 3.0.11 (apache#348)

    Bumps [actions/cache](https://github.com/actions/cache) from 3.0.10 to 3.0.11.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.0.10...v3.0.11)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    337e931 View commit details
    Browse the repository at this point in the history
  89. [COLLECTIONS-835] Fix links in javadoc and documentations

    - fix broken links,
    - use direct links instead of redirects,
    - use HTTPS where possible.
    marcwrobel authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    2e60e13 View commit details
    Browse the repository at this point in the history
  90. Configuration menu
    Copy the full SHA
    d524cf0 View commit details
    Browse the repository at this point in the history
  91. [COLLECTIONS-814] CollectionUtils.removeAll() not throwing proper Nul…

    …lPointerException(NPE) if the first parameter is empty
    
    Add null check
    angusdev authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    5283d38 View commit details
    Browse the repository at this point in the history
  92. [COLLECTIONS-814] Add change log

    kinow authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    d103b64 View commit details
    Browse the repository at this point in the history
  93. Bump actions/setup-java from 3.5.1 to 3.6.0

    Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3.5.1 to 3.6.0.
    - [Release notes](https://github.com/actions/setup-java/releases)
    - [Commits](actions/setup-java@v3.5.1...v3.6.0)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-java
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    48ebe7f View commit details
    Browse the repository at this point in the history
  94. Bump easymock from 4.3 to 5.0.0 (apache#352)

    Bumps [easymock](https://github.com/easymock/easymock) from 4.3 to 5.0.0.
    - [Release notes](https://github.com/easymock/easymock/releases)
    - [Changelog](https://github.com/easymock/easymock/blob/master/ReleaseNotes.md)
    - [Commits](easymock/easymock@easymock-4.3...easymock-5.0.0)
    
    ---
    updated-dependencies:
    - dependency-name: org.easymock:easymock
      dependency-type: direct:development
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    2ab32ce View commit details
    Browse the repository at this point in the history
  95. Configuration menu
    Copy the full SHA
    26168e5 View commit details
    Browse the repository at this point in the history
  96. Bump Scorecards from 1 to 2

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    392c8cc View commit details
    Browse the repository at this point in the history
  97. Bump easymock from 5.0.0 to 5.0.1

    Bumps [easymock](https://github.com/easymock/easymock) from 5.0.0 to 5.0.1.
    - [Release notes](https://github.com/easymock/easymock/releases)
    - [Changelog](https://github.com/easymock/easymock/blob/master/ReleaseNotes.md)
    - [Commits](easymock/easymock@easymock-5.0.0...easymock-5.0.1)
    
    ---
    updated-dependencies:
    - dependency-name: org.easymock:easymock
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    9278b83 View commit details
    Browse the repository at this point in the history
  98. Bump pmd from 6.50.0 to 6.51.0

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    5bdd36e View commit details
    Browse the repository at this point in the history
  99. Bump actions/upload-artifact from 3.1.0 to 3.1.1 (apache#354)

    Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3.1.0 to 3.1.1.
    - [Release notes](https://github.com/actions/upload-artifact/releases)
    - [Commits](actions/upload-artifact@3cea537...83fd05a)
    
    ---
    updated-dependencies:
    - dependency-name: actions/upload-artifact
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    bdc488c View commit details
    Browse the repository at this point in the history
  100. Configuration menu
    Copy the full SHA
    cbb3877 View commit details
    Browse the repository at this point in the history
  101. Configuration menu
    Copy the full SHA
    5ba3c3a View commit details
    Browse the repository at this point in the history
  102. Configuration menu
    Copy the full SHA
    0221d15 View commit details
    Browse the repository at this point in the history
  103. Configuration menu
    Copy the full SHA
    f5b3dd7 View commit details
    Browse the repository at this point in the history
  104. Track changes

    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    9b93933 View commit details
    Browse the repository at this point in the history
  105. Remove Comparable from the Shape class

    The Shape could be used as a key so implements equals and hashCode. The
    ordering of a Shape is arbitrary.
    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    3034107 View commit details
    Browse the repository at this point in the history
  106. Collections-834: Clarify Bloom filter BitCountProducer operation (apa…

    …che#335)
    
    Document the expected behaviour of the BitCountProducer's mapping of indices to counts.
    
    Updated IndexProducer and BitCountProducer tests to verify the expected indices and counts; and optionally verify the encounter order is sorted and indices are distinct.
    Claudenw authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    39bd0d9 View commit details
    Browse the repository at this point in the history
  107. Bloom filter code clean-up

    Correct whitespace issues.
    
    Javadoc additions and corrections.
    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    36b56e7 View commit details
    Browse the repository at this point in the history
  108. Configuration menu
    Copy the full SHA
    7434b20 View commit details
    Browse the repository at this point in the history
  109. (chore) Fix minor typos (apache#323)

    Fix various minor typos in :
    - project documentations,
    - javadoc and comments,
    - method attribute and variable names,
    - test method names.
    marcwrobel authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    bf9fc25 View commit details
    Browse the repository at this point in the history
  110. Fix minor typos apache#323

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    c07500f View commit details
    Browse the repository at this point in the history
  111. Configuration menu
    Copy the full SHA
    687480d View commit details
    Browse the repository at this point in the history
  112. Add missing @OverRide

    Use diamonds
    Use final
    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    eefba11 View commit details
    Browse the repository at this point in the history
  113. Simpler lambdas

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    5186ccb View commit details
    Browse the repository at this point in the history
  114. Use Java 5 for each loop

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    fbb34d3 View commit details
    Browse the repository at this point in the history
  115. Use lambdas

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    bf230c3 View commit details
    Browse the repository at this point in the history
  116. Call to super is redundant

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    490b6af View commit details
    Browse the repository at this point in the history
  117. These test classes can be static

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    fef5a26 View commit details
    Browse the repository at this point in the history
  118. PMD: Use direct access

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    970a09f View commit details
    Browse the repository at this point in the history
  119. Configuration menu
    Copy the full SHA
    955352e View commit details
    Browse the repository at this point in the history
  120. PMD: Use direct access

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    e360f3b View commit details
    Browse the repository at this point in the history
  121. PMD: No need to nest

    - PMD: No need to just call super
    - PMD: Simplify ternary expression to expression
    - PMD: Ignore empty loop warning
    - Fix import
    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    1845fe8 View commit details
    Browse the repository at this point in the history
  122. Configuration menu
    Copy the full SHA
    a023de1 View commit details
    Browse the repository at this point in the history
  123. Configuration menu
    Copy the full SHA
    659b840 View commit details
    Browse the repository at this point in the history
  124. Javadoc

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    5b12651 View commit details
    Browse the repository at this point in the history
  125. Remove unnecessary parens

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    ebae8a3 View commit details
    Browse the repository at this point in the history
  126. Enable PMD check

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    0496277 View commit details
    Browse the repository at this point in the history
  127. Format tweak

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    7170bf8 View commit details
    Browse the repository at this point in the history
  128. Javadocs and comments

    Normalize spelling to "behavior"
    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    f9333ca View commit details
    Browse the repository at this point in the history
  129. Use method reference

    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    7c848e3 View commit details
    Browse the repository at this point in the history
  130. Whitespace formatting

    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    6024a71 View commit details
    Browse the repository at this point in the history
  131. Collections-837: Remove HasherCollection

    * Removed HasherCollection.
    
    * Moved multiple hashing functions into TestingHashers.
    Claudenw authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    2b8301e View commit details
    Browse the repository at this point in the history
  132. Configuration menu
    Copy the full SHA
    31de544 View commit details
    Browse the repository at this point in the history
  133. Add GHitHub robots file

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    067fedd View commit details
    Browse the repository at this point in the history
  134. Bump pmd from 6.51.0 to 6.52.0

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    0a7395c View commit details
    Browse the repository at this point in the history
  135. Sort imports

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    3cb83a8 View commit details
    Browse the repository at this point in the history
  136. Reuse constants

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    981de22 View commit details
    Browse the repository at this point in the history
  137. Configuration menu
    Copy the full SHA
    297ae00 View commit details
    Browse the repository at this point in the history
  138. Configuration menu
    Copy the full SHA
    19ed3d4 View commit details
    Browse the repository at this point in the history
  139. Update changes.xml

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    9c16067 View commit details
    Browse the repository at this point in the history
  140. Collections-817: Update estimateN, estimateIntersection and

    estimateUnion
    
    Reworked calculations and updated javadoc.
    
    Added documentation concerning n, intersection, and union calculations
    in Shape class.
    
    Modified estimatedIntersection to account for infinite
    values in calculations.
    
    Closes apache#358
    Claudenw authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    11577d0 View commit details
    Browse the repository at this point in the history
  141. Javadoc comment typo

    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    0cdae4d View commit details
    Browse the repository at this point in the history
  142. Remove empty line

    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    efc1065 View commit details
    Browse the repository at this point in the history
  143. Configuration menu
    Copy the full SHA
    1c87346 View commit details
    Browse the repository at this point in the history
  144. Collections-817: Update estimateN, estimateIntersection and

    estimateUnion
    
    Reworked calculations and updated javadoc.
    
    Added documentation concerning n, intersection, and union calculations
    in Shape class.
    
    Modified estimatedIntersection to account for infinite values in
    calculations.
    
    This commit addresses a merge error that omitted all fixes  intended for
    the changes in 64ed061
    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    8bfe546 View commit details
    Browse the repository at this point in the history
  145. Configuration menu
    Copy the full SHA
    32c6677 View commit details
    Browse the repository at this point in the history
  146. Configuration menu
    Copy the full SHA
    9ca64a9 View commit details
    Browse the repository at this point in the history
  147. Bump actions/setup-java from 3.6.0 to 3.8.0 (apache#364)

    Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3.6.0 to 3.8.0.
    - [Release notes](https://github.com/actions/setup-java/releases)
    - [Commits](actions/setup-java@v3.6.0...v3.8.0)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-java
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    8bc78fb View commit details
    Browse the repository at this point in the history
  148. Bump actions/checkout from 3.1.0 to 3.2.0 (apache#365)

    Bumps [actions/checkout](https://github.com/actions/checkout) from 3.1.0 to 3.2.0.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v3.1.0...v3.2.0)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    090aa99 View commit details
    Browse the repository at this point in the history
  149. Bump ossf/scorecard-action from 2.0.6 to 2.1.0 (apache#366)

    Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 2.0.6 to 2.1.0.
    - [Release notes](https://github.com/ossf/scorecard-action/releases)
    - [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md)
    - [Commits](ossf/scorecard-action@99c5375...937ffa9)
    
    ---
    updated-dependencies:
    - dependency-name: ossf/scorecard-action
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    dd80f9d View commit details
    Browse the repository at this point in the history
  150. Bump actions/setup-java from 3.8.0 to 3.9.0

    Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3.8.0 to 3.9.0.
    - [Release notes](https://github.com/actions/setup-java/releases)
    - [Commits](actions/setup-java@v3.8.0...v3.9.0)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-java
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    065a09f View commit details
    Browse the repository at this point in the history
  151. Bump commons-parent from 54 to 55 (apache#368)

    Bumps [commons-parent](https://github.com/apache/commons-parent) from 54 to 55.
    - [Release notes](https://github.com/apache/commons-parent/releases)
    - [Changelog](https://github.com/apache/commons-parent/blob/master/RELEASE-NOTES.txt)
    - [Commits](https://github.com/apache/commons-parent/commits)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.commons:commons-parent
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    ea89e40 View commit details
    Browse the repository at this point in the history
  152. Configuration menu
    Copy the full SHA
    1527ca8 View commit details
    Browse the repository at this point in the history
  153. Bump ossf/scorecard-action from 2.1.0 to 2.1.2 (apache#369)

    Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 2.1.0 to 2.1.2.
    - [Release notes](https://github.com/ossf/scorecard-action/releases)
    - [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md)
    - [Commits](ossf/scorecard-action@937ffa9...e38b190)
    
    ---
    updated-dependencies:
    - dependency-name: ossf/scorecard-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    0b3529c View commit details
    Browse the repository at this point in the history
  154. Bump actions/cache from 3.0.11 to 3.2.1 (apache#370)

    Bumps [actions/cache](https://github.com/actions/cache) from 3.0.11 to 3.2.1.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.0.11...v3.2.1)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    a9f5c7f View commit details
    Browse the repository at this point in the history
  155. COLLECTIONS-806: Remove use of JUnit4 junit.framework.Test class (apa…

    …che#371)
    
    * COLLECTIONS-806: removed references of JUnit4 Test class
    
    - Removed references of junit.framework.Test
    - Removed unused method BulkTest.makeSuite()
    
    * COLLECTIONS-806: removed unused imports
    pas725 authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    ad16709 View commit details
    Browse the repository at this point in the history
  156. Configuration menu
    Copy the full SHA
    3ae2668 View commit details
    Browse the repository at this point in the history
  157. Use Arrays.copyOf()

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    70f14fc View commit details
    Browse the repository at this point in the history
  158. Bump actions/cache from 3.2.1 to 3.2.2 (apache#372)

    Bumps [actions/cache](https://github.com/actions/cache) from 3.2.1 to 3.2.2.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.2.1...v3.2.2)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    d673b06 View commit details
    Browse the repository at this point in the history
  159. Update NOTICE to 2023

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    c31bf9c View commit details
    Browse the repository at this point in the history
  160. Bump commons-parent from 55 to 56 (apache#373)

    Bumps [commons-parent](https://github.com/apache/commons-parent) from 55 to 56.
    - [Release notes](https://github.com/apache/commons-parent/releases)
    - [Changelog](https://github.com/apache/commons-parent/blob/master/RELEASE-NOTES.txt)
    - [Commits](https://github.com/apache/commons-parent/commits)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.commons:commons-parent
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    dbab6e2 View commit details
    Browse the repository at this point in the history
  161. Configuration menu
    Copy the full SHA
    126185e View commit details
    Browse the repository at this point in the history
  162. Bump easymock from 5.0.1 to 5.1.0 (apache#375)

    Bumps [easymock](https://github.com/easymock/easymock) from 5.0.1 to 5.1.0.
    - [Release notes](https://github.com/easymock/easymock/releases)
    - [Changelog](https://github.com/easymock/easymock/blob/master/ReleaseNotes.md)
    - [Commits](easymock/easymock@easymock-5.0.1...easymock-5.1.0)
    
    ---
    updated-dependencies:
    - dependency-name: org.easymock:easymock
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    1340b16 View commit details
    Browse the repository at this point in the history
  163. Configuration menu
    Copy the full SHA
    b25f1a4 View commit details
    Browse the repository at this point in the history
  164. Bump actions/checkout from 3.2.0 to 3.3.0 (apache#376)

    Bumps [actions/checkout](https://github.com/actions/checkout) from 3.2.0 to 3.3.0.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v3.2.0...v3.3.0)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    e136aa3 View commit details
    Browse the repository at this point in the history
  165. Configuration menu
    Copy the full SHA
    22a6b59 View commit details
    Browse the repository at this point in the history
  166. Configuration menu
    Copy the full SHA
    da1083e View commit details
    Browse the repository at this point in the history
  167. Configuration menu
    Copy the full SHA
    d80a5a7 View commit details
    Browse the repository at this point in the history
  168. Configuration menu
    Copy the full SHA
    14234ba View commit details
    Browse the repository at this point in the history
  169. Configuration menu
    Copy the full SHA
    c1cae17 View commit details
    Browse the repository at this point in the history
  170. Bump actions/cache from 3.2.2 to 3.2.3 (apache#377)

    Bumps [actions/cache](https://github.com/actions/cache) from 3.2.2 to 3.2.3.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.2.2...v3.2.3)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    78863e3 View commit details
    Browse the repository at this point in the history
  171. Bump actions/upload-artifact from 3.1.1 to 3.1.2 (apache#378)

    Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3.1.1 to 3.1.2.
    - [Release notes](https://github.com/actions/upload-artifact/releases)
    - [Commits](actions/upload-artifact@83fd05a...0b7f8ab)
    
    ---
    updated-dependencies:
    - dependency-name: actions/upload-artifact
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    791cf80 View commit details
    Browse the repository at this point in the history
  172. Configuration menu
    Copy the full SHA
    10b1292 View commit details
    Browse the repository at this point in the history
  173. Javadoc fixes

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    7996552 View commit details
    Browse the repository at this point in the history
  174. Bump maven-checkstyle-plugin from 3.2.0 to 3.2.1

    Bumps [maven-checkstyle-plugin](https://github.com/apache/maven-checkstyle-plugin) from 3.2.0 to 3.2.1.
    - [Release notes](https://github.com/apache/maven-checkstyle-plugin/releases)
    - [Commits](apache/maven-checkstyle-plugin@maven-checkstyle-plugin-3.2.0...maven-checkstyle-plugin-3.2.1)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-checkstyle-plugin
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    fe239b9 View commit details
    Browse the repository at this point in the history
  175. Configuration menu
    Copy the full SHA
    e82c795 View commit details
    Browse the repository at this point in the history
  176. Configuration menu
    Copy the full SHA
    64d8c65 View commit details
    Browse the repository at this point in the history
  177. Fix typos

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    8363328 View commit details
    Browse the repository at this point in the history
  178. Fix spelling

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    19775dc View commit details
    Browse the repository at this point in the history
  179. Configuration menu
    Copy the full SHA
    ed39e80 View commit details
    Browse the repository at this point in the history
  180. Configuration menu
    Copy the full SHA
    5cbf81a View commit details
    Browse the repository at this point in the history
  181. codecov-commenter => notifications

    sebbASF authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    4e70a00 View commit details
    Browse the repository at this point in the history
  182. Bump actions/cache from 3.2.3 to 3.2.5

    Bumps [actions/cache](https://github.com/actions/cache) from 3.2.3 to 3.2.5.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.2.3...v3.2.5)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    19edcb5 View commit details
    Browse the repository at this point in the history
  183. Bump actions/setup-java from 3.9.0 to 3.10.0

    Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3.9.0 to 3.10.0.
    - [Release notes](https://github.com/actions/setup-java/releases)
    - [Commits](actions/setup-java@v3.9.0...v3.10.0)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-java
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    94f0514 View commit details
    Browse the repository at this point in the history
  184. Remove unused

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    3e8bc92 View commit details
    Browse the repository at this point in the history
  185. Bump actions/cache from 3.2.5 to 3.2.6 (apache#383)

    Bumps [actions/cache](https://github.com/actions/cache) from 3.2.5 to 3.2.6.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.2.5...v3.2.6)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    59f4fa3 View commit details
    Browse the repository at this point in the history
  186. Bump actions/cache from 3.2.6 to 3.3.0

    Bumps [actions/cache](https://github.com/actions/cache) from 3.2.6 to 3.3.0.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.2.6...v3.3.0)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    cc1f04b View commit details
    Browse the repository at this point in the history
  187. Use XSD

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    7797a45 View commit details
    Browse the repository at this point in the history
  188. Javadoc

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    f2c8b42 View commit details
    Browse the repository at this point in the history
  189. Bump actions/checkout from 3.3.0 to 3.4.0

    Bumps [actions/checkout](https://github.com/actions/checkout) from 3.3.0 to 3.4.0.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v3.3.0...v3.4.0)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    ea1c58e View commit details
    Browse the repository at this point in the history
  190. Bump actions/cache from 3.3.0 to 3.3.1 (apache#386)

    Bumps [actions/cache](https://github.com/actions/cache) from 3.3.0 to 3.3.1.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3.3.0...v3.3.1)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    3fce696 View commit details
    Browse the repository at this point in the history
  191. Bump actions/checkout from 3.4.0 to 3.5.0

    Bumps [actions/checkout](https://github.com/actions/checkout) from 3.4.0 to 3.5.0.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v3.4.0...v3.5.0)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    548c445 View commit details
    Browse the repository at this point in the history
  192. Configuration menu
    Copy the full SHA
    7af91ee View commit details
    Browse the repository at this point in the history
  193. Configuration menu
    Copy the full SHA
    68e3ff1 View commit details
    Browse the repository at this point in the history
  194. Bump actions/setup-java from 3.10.0 to 3.11.0 (apache#389)

    Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3.10.0 to 3.11.0.
    - [Release notes](https://github.com/actions/setup-java/releases)
    - [Commits](actions/setup-java@v3.10.0...v3.11.0)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-java
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    5acb65c View commit details
    Browse the repository at this point in the history
  195. Bump ossf/scorecard-action from 2.1.2 to 2.1.3 (apache#388)

    Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 2.1.2 to 2.1.3.
    - [Release notes](https://github.com/ossf/scorecard-action/releases)
    - [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md)
    - [Commits](ossf/scorecard-action@e38b190...80e868c)
    
    ---
    updated-dependencies:
    - dependency-name: ossf/scorecard-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    00239f3 View commit details
    Browse the repository at this point in the history
  196. Bump actions/checkout from 3.5.0 to 3.5.2

    Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.0 to 3.5.2.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v3.5.0...v3.5.2)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    2b59ddb View commit details
    Browse the repository at this point in the history
  197. Format: "catch(" -> "catch ("

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    4cc5c37 View commit details
    Browse the repository at this point in the history
  198. [COLLECTIONS-839] migrate all tests to use junit5 assert and BulkTest…

    … not extend TestCase (apache#391)
    samabcde authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    6538189 View commit details
    Browse the repository at this point in the history
  199. Configuration menu
    Copy the full SHA
    d42c87e View commit details
    Browse the repository at this point in the history
  200. Organize imports

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    b2bf4e3 View commit details
    Browse the repository at this point in the history
  201. Bump commons-parent from 56 to 57 (apache#393)

    Bumps [commons-parent](https://github.com/apache/commons-parent) from 56 to 57.
    - [Release notes](https://github.com/apache/commons-parent/releases)
    - [Changelog](https://github.com/apache/commons-parent/blob/master/RELEASE-NOTES.txt)
    - [Commits](https://github.com/apache/commons-parent/commits)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.commons:commons-parent
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    7874b21 View commit details
    Browse the repository at this point in the history
  202. Configuration menu
    Copy the full SHA
    ebbd286 View commit details
    Browse the repository at this point in the history
  203. Configuration menu
    Copy the full SHA
    94cdbec View commit details
    Browse the repository at this point in the history
  204. Javadoc typos

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    c00e682 View commit details
    Browse the repository at this point in the history
  205. Javadoc typos

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    638693c View commit details
    Browse the repository at this point in the history
  206. Configuration menu
    Copy the full SHA
    c20b777 View commit details
    Browse the repository at this point in the history
  207. Grammar

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    5db2642 View commit details
    Browse the repository at this point in the history
  208. Bump commons-parent from 57 to 58

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    05549e0 View commit details
    Browse the repository at this point in the history
  209. Bump guava-testlib from 31.1-jre to 32.0.0-jre (apache#394)

    Bumps [guava-testlib](https://github.com/google/guava) from 31.1-jre to 32.0.0-jre.
    - [Release notes](https://github.com/google/guava/releases)
    - [Commits](https://github.com/google/guava/commits)
    
    ---
    updated-dependencies:
    - dependency-name: com.google.guava:guava-testlib
      dependency-type: direct:development
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    b912b23 View commit details
    Browse the repository at this point in the history
  210. Configuration menu
    Copy the full SHA
    b45ad94 View commit details
    Browse the repository at this point in the history
  211. Re-categorize some entries

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    83c8ee2 View commit details
    Browse the repository at this point in the history
  212. Configuration menu
    Copy the full SHA
    08efcd4 View commit details
    Browse the repository at this point in the history
  213. Bump guava-testlib from 32.0.0-jre to 32.0.1-jre (apache#395)

    Bumps [guava-testlib](https://github.com/google/guava) from 32.0.0-jre to 32.0.1-jre.
    - [Release notes](https://github.com/google/guava/releases)
    - [Commits](https://github.com/google/guava/commits)
    
    ---
    updated-dependencies:
    - dependency-name: com.google.guava:guava-testlib
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    8de9296 View commit details
    Browse the repository at this point in the history
  214. Configuration menu
    Copy the full SHA
    67cb7f7 View commit details
    Browse the repository at this point in the history
  215. Javadoc

    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    633708b View commit details
    Browse the repository at this point in the history
  216. Move EnhancedDoubleHasher.mod() to a public BitMap API (apache#396)

    * Made mod() public
    
    * Moved mod() method to BitMap class.
    
    * Add Javadoc since tag
    
    * Added mod() tests and updated documentation.
    
    * fixed formatting issues
    
    ---------
    
    Co-authored-by: Gary Gregory <[email protected]>
    2 people authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    ba1e44e View commit details
    Browse the repository at this point in the history
  217. Move mod tests to BitMapTest

    Consolidate the cases from EnhancedDoubleHasherTest and BitMapTest.
    
    Use Long.remainderUnsigned as the reference result.
    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    9ac6788 View commit details
    Browse the repository at this point in the history
  218. Update BitMap.mod javadoc

    Add thrown exception when divisor is zero. Add link to reference
    implementation of Long.remainderUnsigned.
    
    Drop redundant @SInCE tag as it matches the entire class @SInCE.
    aherbert authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    bf5cefd View commit details
    Browse the repository at this point in the history
  219. Bump actions/checkout from 3.5.2 to 3.5.3

    Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.2 to 3.5.3.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v3.5.2...v3.5.3)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    69f9a27 View commit details
    Browse the repository at this point in the history
  220. Changes required to open testing to new implementations. (apache#398)

    * Changes required to open testing to new implementations.
    
    * removed extra spaces
    Claudenw authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    c051326 View commit details
    Browse the repository at this point in the history
  221. [COLLECTIONS-841] Open up bloom filter tests - test changes to suppor…

    …t bit decay based Bloom filters (apache#400)
    
    * Adjusted tests to handle bloom filter implementations that utilized
    automatic decay.
    
    * fixed formatting issues
    
    * fixed indent
    
    * Format tweaks
    
    ---------
    
    Co-authored-by: Gary Gregory <[email protected]>
    2 people authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    f425667 View commit details
    Browse the repository at this point in the history
  222. Configuration menu
    Copy the full SHA
    2b7f1f0 View commit details
    Browse the repository at this point in the history
  223. [StepSecurity] ci: Harden GitHub Actions (apache#401)

    Signed-off-by: StepSecurity Bot <[email protected]>
    step-security-bot authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    88b5e65 View commit details
    Browse the repository at this point in the history
  224. Configuration menu
    Copy the full SHA
    f3a18bd View commit details
    Browse the repository at this point in the history
  225. Bump ossf/scorecard-action from 2.1.3 to 2.2.0 (apache#403)

    Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 2.1.3 to 2.2.0.
    - [Release notes](https://github.com/ossf/scorecard-action/releases)
    - [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md)
    - [Commits](ossf/scorecard-action@80e868c...08b4669)
    
    ---
    updated-dependencies:
    - dependency-name: ossf/scorecard-action
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    c6aee80 View commit details
    Browse the repository at this point in the history
  226. Bump guava-testlib from 32.0.1-jre to 32.1.0-jre (apache#404)

    Bumps [guava-testlib](https://github.com/google/guava) from 32.0.1-jre to 32.1.0-jre.
    - [Release notes](https://github.com/google/guava/releases)
    - [Commits](https://github.com/google/guava/commits)
    
    ---
    updated-dependencies:
    - dependency-name: com.google.guava:guava-testlib
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    d777afd View commit details
    Browse the repository at this point in the history
  227. Configuration menu
    Copy the full SHA
    9fec5f4 View commit details
    Browse the repository at this point in the history
  228. Configuration menu
    Copy the full SHA
    08fa869 View commit details
    Browse the repository at this point in the history
  229. Configuration menu
    Copy the full SHA
    37a1dc2 View commit details
    Browse the repository at this point in the history
  230. Bump guava-testlib from 32.1.0-jre to 32.1.1-jre (apache#405)

    Bumps [guava-testlib](https://github.com/google/guava) from 32.1.0-jre to 32.1.1-jre.
    - [Release notes](https://github.com/google/guava/releases)
    - [Commits](https://github.com/google/guava/commits)
    
    ---
    updated-dependencies:
    - dependency-name: com.google.guava:guava-testlib
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    97dfed3 View commit details
    Browse the repository at this point in the history
  231. Configuration menu
    Copy the full SHA
    fac9baa View commit details
    Browse the repository at this point in the history
  232. Add missing entry

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    b459495 View commit details
    Browse the repository at this point in the history
  233. Add org.apache.commons.collections4.properties.OrderedProperties and

    OrderedPropertiesFactory
    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    170a776 View commit details
    Browse the repository at this point in the history
  234. Support entrySet() and forEach()

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    46a364d View commit details
    Browse the repository at this point in the history
  235. Disable testToString for now

    Passes locally, fails on GHA
    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    b88df81 View commit details
    Browse the repository at this point in the history
  236. Configuration menu
    Copy the full SHA
    4104913 View commit details
    Browse the repository at this point in the history
  237. Remove unused import

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    21e2208 View commit details
    Browse the repository at this point in the history
  238. Make AbstractPatriciaTrie public (apache#407)

    * Make AbstractPatriciaTrie public
    
    * Added javadocs
    vad0 authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    782d3bb View commit details
    Browse the repository at this point in the history
  239. Configuration menu
    Copy the full SHA
    c91927a View commit details
    Browse the repository at this point in the history
  240. Bump commons-parent from 58 to 59

    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    cd33766 View commit details
    Browse the repository at this point in the history
  241. Bump actions/setup-java from 3.11.0 to 3.12.0 (apache#408)

    Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3.11.0 to 3.12.0.
    - [Release notes](https://github.com/actions/setup-java/releases)
    - [Commits](actions/setup-java@v3.11.0...v3.12.0)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-java
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    bedb515 View commit details
    Browse the repository at this point in the history
  242. Configuration menu
    Copy the full SHA
    6d765ac View commit details
    Browse the repository at this point in the history
  243. Configuration menu
    Copy the full SHA
    f12c3af View commit details
    Browse the repository at this point in the history
  244. fixes misplaced symbols in javadoc (mainly in Hasher, CountingLongPre…

    …dicate) (apache#409)
    
    resolves grammar and punctuation issues
    mawiesne authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    b6e7ac2 View commit details
    Browse the repository at this point in the history
  245. Configuration menu
    Copy the full SHA
    23ce3d3 View commit details
    Browse the repository at this point in the history
  246. (doc) Fix grammatical error in Javadoc

    syoon2 authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    a30ac76 View commit details
    Browse the repository at this point in the history
  247. Bump com.google.guava:guava-testlib from 32.1.1-jre to 32.1.2-jre (ap…

    …ache#411)
    
    Bumps [com.google.guava:guava-testlib](https://github.com/google/guava) from 32.1.1-jre to 32.1.2-jre.
    - [Release notes](https://github.com/google/guava/releases)
    - [Commits](https://github.com/google/guava/commits)
    
    ---
    updated-dependencies:
    - dependency-name: com.google.guava:guava-testlib
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    c01d3dd View commit details
    Browse the repository at this point in the history
  248. Bump guava-testlib from 31.1-jre to 32.1.2-jre apache#394, apache#395,

    apache#404, apache#405, apache#441. Bump com.google.guava:guava-testlib from 32.1.1-jre to 32.1.2-jre apache#411
    garydgregory authored and anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    e7b796d View commit details
    Browse the repository at this point in the history
  249. Configuration menu
    Copy the full SHA
    45af3cc View commit details
    Browse the repository at this point in the history
  250. Merge remote-tracking branch 'origin/collections_795' into collection…

    …s_795
    
    # Conflicts:
    #	src/test/java/org/apache/commons/collections4/iterators/PairedIteratorTest.java
    anantdamle committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    dd42aa7 View commit details
    Browse the repository at this point in the history