-
Notifications
You must be signed in to change notification settings - Fork 473
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
Commits on Aug 14, 2023
-
Configuration menu - View commit details
-
Copy full SHA for afa8fe8 - Browse repository at this point
Copy the full SHA afa8fe8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8aa1cd4 - Browse repository at this point
Copy the full SHA 8aa1cd4View commit details -
[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
Configuration menu - View commit details
-
Copy full SHA for 2a6308e - Browse repository at this point
Copy the full SHA 2a6308eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 61d87b9 - Browse repository at this point
Copy the full SHA 61d87b9View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for d814fc1 - Browse repository at this point
Copy the full SHA d814fc1View commit details -
Configuration menu - View commit details
-
Copy full SHA for cf3fb3d - Browse repository at this point
Copy the full SHA cf3fb3dView commit details -
Configuration menu - View commit details
-
Copy full SHA for a22a2b9 - Browse repository at this point
Copy the full SHA a22a2b9View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 4e36ad9 - Browse repository at this point
Copy the full SHA 4e36ad9View commit details -
Move counting long predicate (apache#314)
* Moved CounitngLongPredicate * Moved CounitngLongPredicate * fixed checkstyle issues * made instance vars private
Configuration menu - View commit details
-
Copy full SHA for 86e5f7c - Browse repository at this point
Copy the full SHA 86e5f7cView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 0096325 - Browse repository at this point
Copy the full SHA 0096325View commit details -
Configuration menu - View commit details
-
Copy full SHA for e306c67 - Browse repository at this point
Copy the full SHA e306c67View commit details -
Configuration menu - View commit details
-
Copy full SHA for b7bcfcf - Browse repository at this point
Copy the full SHA b7bcfcfView commit details -
COLLECTIONS-823: Modified ArrayCountingBloomFilter.forEachBitMap to b…
…e more efficient (apache#316) * Modified forEachBitMap * made blocksm1 final and initialized with counts.length
Configuration menu - View commit details
-
Copy full SHA for a2b0fb7 - Browse repository at this point
Copy the full SHA a2b0fb7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 194c16c - Browse repository at this point
Copy the full SHA 194c16cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 50c9a89 - Browse repository at this point
Copy the full SHA 50c9a89View commit details -
put IndexFilter in separate file.
put BitMapTracker and ArrayTracker back as enclosed classes in IndexFilter
Configuration menu - View commit details
-
Copy full SHA for b723a52 - Browse repository at this point
Copy the full SHA b723a52View commit details -
Configuration menu - View commit details
-
Copy full SHA for c9c0692 - Browse repository at this point
Copy the full SHA c9c0692View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6b060af - Browse repository at this point
Copy the full SHA 6b060afView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c2f9c9 - Browse repository at this point
Copy the full SHA 3c2f9c9View commit details -
Configuration menu - View commit details
-
Copy full SHA for f44bab8 - Browse repository at this point
Copy the full SHA f44bab8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0a21aab - Browse repository at this point
Copy the full SHA 0a21aabView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2824b3d - Browse repository at this point
Copy the full SHA 2824b3dView commit details -
Configuration menu - View commit details
-
Copy full SHA for f5256e4 - Browse repository at this point
Copy the full SHA f5256e4View commit details -
replaced merge with old mergeInPlace
removed mergeInPlace
Configuration menu - View commit details
-
Copy full SHA for e7b92dc - Browse repository at this point
Copy the full SHA e7b92dcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 056c6f4 - Browse repository at this point
Copy the full SHA 056c6f4View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 7b4ea05 - Browse repository at this point
Copy the full SHA 7b4ea05View commit details -
Configuration menu - View commit details
-
Copy full SHA for 88147b1 - Browse repository at this point
Copy the full SHA 88147b1View commit details -
Configuration menu - View commit details
-
Copy full SHA for e452ee9 - Browse repository at this point
Copy the full SHA e452ee9View commit details -
Configuration menu - View commit details
-
Copy full SHA for f4d9058 - Browse repository at this point
Copy the full SHA f4d9058View commit details -
Configuration menu - View commit details
-
Copy full SHA for eddbd00 - Browse repository at this point
Copy the full SHA eddbd00View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 4bc40e5 - Browse repository at this point
Copy the full SHA 4bc40e5View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 2b03765 - Browse repository at this point
Copy the full SHA 2b03765View commit details -
Collections 827: Add tests using or, and and xor with different lengt…
…h filters. (apache#328) * added missing tests * simplified test framework
Configuration menu - View commit details
-
Copy full SHA for 55528c5 - Browse repository at this point
Copy the full SHA 55528c5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 731c42f - Browse repository at this point
Copy the full SHA 731c42fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 05ec896 - Browse repository at this point
Copy the full SHA 05ec896View commit details -
Configuration menu - View commit details
-
Copy full SHA for f767cfd - Browse repository at this point
Copy the full SHA f767cfdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 403aeaf - Browse repository at this point
Copy the full SHA 403aeafView commit details -
Use static Remove incorrect javadoc tags Add javadoc to return tag
Configuration menu - View commit details
-
Copy full SHA for f4ae48f - Browse repository at this point
Copy the full SHA f4ae48fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 134303e - Browse repository at this point
Copy the full SHA 134303eView commit details -
[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
Configuration menu - View commit details
-
Copy full SHA for 4c410fb - Browse repository at this point
Copy the full SHA 4c410fbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c7a225 - Browse repository at this point
Copy the full SHA 3c7a225View commit details -
Configuration menu - View commit details
-
Copy full SHA for 333a2e9 - Browse repository at this point
Copy the full SHA 333a2e9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 03f9f6d - Browse repository at this point
Copy the full SHA 03f9f6dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 426a289 - Browse repository at this point
Copy the full SHA 426a289View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0f701b7 - Browse repository at this point
Copy the full SHA 0f701b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9eb8e43 - Browse repository at this point
Copy the full SHA 9eb8e43View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0118753 - Browse repository at this point
Copy the full SHA 0118753View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6720909 - Browse repository at this point
Copy the full SHA 6720909View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1538214 - Browse repository at this point
Copy the full SHA 1538214View commit details -
Configuration menu - View commit details
-
Copy full SHA for a14e1e5 - Browse repository at this point
Copy the full SHA a14e1e5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6e06ecd - Browse repository at this point
Copy the full SHA 6e06ecdView commit details -
Configuration menu - View commit details
-
Copy full SHA for d8938a7 - Browse repository at this point
Copy the full SHA d8938a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for db8c7d6 - Browse repository at this point
Copy the full SHA db8c7d6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 54ef3fa - Browse repository at this point
Copy the full SHA 54ef3faView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 44cb1f5 - Browse repository at this point
Copy the full SHA 44cb1f5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ea10a0 - Browse repository at this point
Copy the full SHA 5ea10a0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 46e7ea9 - Browse repository at this point
Copy the full SHA 46e7ea9View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 964695a - Browse repository at this point
Copy the full SHA 964695aView commit details -
Configuration menu - View commit details
-
Copy full SHA for ac30e1b - Browse repository at this point
Copy the full SHA ac30e1bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4d214b5 - Browse repository at this point
Copy the full SHA 4d214b5View commit details -
Use streams to generate arrays. Use BitSet to create a unique set of indices.
Configuration menu - View commit details
-
Copy full SHA for 98ce7ff - Browse repository at this point
Copy the full SHA 98ce7ffView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for a294c35 - Browse repository at this point
Copy the full SHA a294c35View commit details -
Configuration menu - View commit details
-
Copy full SHA for 28078f7 - Browse repository at this point
Copy the full SHA 28078f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for f88867c - Browse repository at this point
Copy the full SHA f88867cView commit details -
Configuration menu - View commit details
-
Copy full SHA for c0a5ba3 - Browse repository at this point
Copy the full SHA c0a5ba3View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 34c11c3 - Browse repository at this point
Copy the full SHA 34c11c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 076f8ee - Browse repository at this point
Copy the full SHA 076f8eeView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for f88644c - Browse repository at this point
Copy the full SHA f88644cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 33aa9d1 - Browse repository at this point
Copy the full SHA 33aa9d1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 663cf79 - Browse repository at this point
Copy the full SHA 663cf79View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 40fc4d1 - Browse repository at this point
Copy the full SHA 40fc4d1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 08c3e11 - Browse repository at this point
Copy the full SHA 08c3e11View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0fe27a2 - Browse repository at this point
Copy the full SHA 0fe27a2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0d20bfa - Browse repository at this point
Copy the full SHA 0d20bfaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1a21f3e - Browse repository at this point
Copy the full SHA 1a21f3eView commit details -
Configuration menu - View commit details
-
Copy full SHA for d1e2412 - Browse repository at this point
Copy the full SHA d1e2412View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1dc2d9c - Browse repository at this point
Copy the full SHA 1dc2d9cView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 24b8b2c - Browse repository at this point
Copy the full SHA 24b8b2cView commit details -
Configuration menu - View commit details
-
Copy full SHA for a6355c2 - Browse repository at this point
Copy the full SHA a6355c2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ea29ab - Browse repository at this point
Copy the full SHA 2ea29abView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 673da2f - Browse repository at this point
Copy the full SHA 673da2fView commit details -
Configuration menu - View commit details
-
Copy full SHA for df2bfae - Browse repository at this point
Copy the full SHA df2bfaeView commit details -
Configuration menu - View commit details
-
Copy full SHA for b1b8c65 - Browse repository at this point
Copy the full SHA b1b8c65View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 604c9bd - Browse repository at this point
Copy the full SHA 604c9bdView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 6dbf920 - Browse repository at this point
Copy the full SHA 6dbf920View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 99bea64 - Browse repository at this point
Copy the full SHA 99bea64View commit details -
Configuration menu - View commit details
-
Copy full SHA for 59c73fd - Browse repository at this point
Copy the full SHA 59c73fdView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 337e931 - Browse repository at this point
Copy the full SHA 337e931View commit details -
[COLLECTIONS-835] Fix links in javadoc and documentations
- fix broken links, - use direct links instead of redirects, - use HTTPS where possible.
Configuration menu - View commit details
-
Copy full SHA for 2e60e13 - Browse repository at this point
Copy the full SHA 2e60e13View commit details -
Configuration menu - View commit details
-
Copy full SHA for d524cf0 - Browse repository at this point
Copy the full SHA d524cf0View commit details -
[COLLECTIONS-814] CollectionUtils.removeAll() not throwing proper Nul…
…lPointerException(NPE) if the first parameter is empty Add null check
Configuration menu - View commit details
-
Copy full SHA for 5283d38 - Browse repository at this point
Copy the full SHA 5283d38View commit details -
Configuration menu - View commit details
-
Copy full SHA for d103b64 - Browse repository at this point
Copy the full SHA d103b64View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 48ebe7f - Browse repository at this point
Copy the full SHA 48ebe7fView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 2ab32ce - Browse repository at this point
Copy the full SHA 2ab32ceView commit details -
Configuration menu - View commit details
-
Copy full SHA for 26168e5 - Browse repository at this point
Copy the full SHA 26168e5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 392c8cc - Browse repository at this point
Copy the full SHA 392c8ccView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 9278b83 - Browse repository at this point
Copy the full SHA 9278b83View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5bdd36e - Browse repository at this point
Copy the full SHA 5bdd36eView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for bdc488c - Browse repository at this point
Copy the full SHA bdc488cView commit details -
Configuration menu - View commit details
-
Copy full SHA for cbb3877 - Browse repository at this point
Copy the full SHA cbb3877View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ba3c3a - Browse repository at this point
Copy the full SHA 5ba3c3aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0221d15 - Browse repository at this point
Copy the full SHA 0221d15View commit details -
Configuration menu - View commit details
-
Copy full SHA for f5b3dd7 - Browse repository at this point
Copy the full SHA f5b3dd7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9b93933 - Browse repository at this point
Copy the full SHA 9b93933View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 3034107 - Browse repository at this point
Copy the full SHA 3034107View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 39bd0d9 - Browse repository at this point
Copy the full SHA 39bd0d9View commit details -
Correct whitespace issues. Javadoc additions and corrections.
Configuration menu - View commit details
-
Copy full SHA for 36b56e7 - Browse repository at this point
Copy the full SHA 36b56e7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7434b20 - Browse repository at this point
Copy the full SHA 7434b20View commit details -
(chore) Fix minor typos (apache#323)
Fix various minor typos in : - project documentations, - javadoc and comments, - method attribute and variable names, - test method names.
Configuration menu - View commit details
-
Copy full SHA for bf9fc25 - Browse repository at this point
Copy the full SHA bf9fc25View commit details -
Configuration menu - View commit details
-
Copy full SHA for c07500f - Browse repository at this point
Copy the full SHA c07500fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 687480d - Browse repository at this point
Copy the full SHA 687480dView commit details -
Use diamonds Use final
Configuration menu - View commit details
-
Copy full SHA for eefba11 - Browse repository at this point
Copy the full SHA eefba11View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5186ccb - Browse repository at this point
Copy the full SHA 5186ccbView commit details -
Configuration menu - View commit details
-
Copy full SHA for fbb34d3 - Browse repository at this point
Copy the full SHA fbb34d3View commit details -
Configuration menu - View commit details
-
Copy full SHA for bf230c3 - Browse repository at this point
Copy the full SHA bf230c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 490b6af - Browse repository at this point
Copy the full SHA 490b6afView commit details -
Configuration menu - View commit details
-
Copy full SHA for fef5a26 - Browse repository at this point
Copy the full SHA fef5a26View commit details -
Configuration menu - View commit details
-
Copy full SHA for 970a09f - Browse repository at this point
Copy the full SHA 970a09fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 955352e - Browse repository at this point
Copy the full SHA 955352eView commit details -
Configuration menu - View commit details
-
Copy full SHA for e360f3b - Browse repository at this point
Copy the full SHA e360f3bView commit details -
- PMD: No need to just call super - PMD: Simplify ternary expression to expression - PMD: Ignore empty loop warning - Fix import
Configuration menu - View commit details
-
Copy full SHA for 1845fe8 - Browse repository at this point
Copy the full SHA 1845fe8View commit details -
Configuration menu - View commit details
-
Copy full SHA for a023de1 - Browse repository at this point
Copy the full SHA a023de1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 659b840 - Browse repository at this point
Copy the full SHA 659b840View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5b12651 - Browse repository at this point
Copy the full SHA 5b12651View commit details -
Configuration menu - View commit details
-
Copy full SHA for ebae8a3 - Browse repository at this point
Copy the full SHA ebae8a3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0496277 - Browse repository at this point
Copy the full SHA 0496277View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7170bf8 - Browse repository at this point
Copy the full SHA 7170bf8View commit details -
Normalize spelling to "behavior"
Configuration menu - View commit details
-
Copy full SHA for f9333ca - Browse repository at this point
Copy the full SHA f9333caView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7c848e3 - Browse repository at this point
Copy the full SHA 7c848e3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6024a71 - Browse repository at this point
Copy the full SHA 6024a71View commit details -
Collections-837: Remove HasherCollection
* Removed HasherCollection. * Moved multiple hashing functions into TestingHashers.
Configuration menu - View commit details
-
Copy full SHA for 2b8301e - Browse repository at this point
Copy the full SHA 2b8301eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 31de544 - Browse repository at this point
Copy the full SHA 31de544View commit details -
Configuration menu - View commit details
-
Copy full SHA for 067fedd - Browse repository at this point
Copy the full SHA 067feddView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0a7395c - Browse repository at this point
Copy the full SHA 0a7395cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3cb83a8 - Browse repository at this point
Copy the full SHA 3cb83a8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 981de22 - Browse repository at this point
Copy the full SHA 981de22View commit details -
Configuration menu - View commit details
-
Copy full SHA for 297ae00 - Browse repository at this point
Copy the full SHA 297ae00View commit details -
Configuration menu - View commit details
-
Copy full SHA for 19ed3d4 - Browse repository at this point
Copy the full SHA 19ed3d4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9c16067 - Browse repository at this point
Copy the full SHA 9c16067View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 11577d0 - Browse repository at this point
Copy the full SHA 11577d0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0cdae4d - Browse repository at this point
Copy the full SHA 0cdae4dView commit details -
Configuration menu - View commit details
-
Copy full SHA for efc1065 - Browse repository at this point
Copy the full SHA efc1065View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1c87346 - Browse repository at this point
Copy the full SHA 1c87346View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 8bfe546 - Browse repository at this point
Copy the full SHA 8bfe546View commit details -
Configuration menu - View commit details
-
Copy full SHA for 32c6677 - Browse repository at this point
Copy the full SHA 32c6677View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9ca64a9 - Browse repository at this point
Copy the full SHA 9ca64a9View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 8bc78fb - Browse repository at this point
Copy the full SHA 8bc78fbView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 090aa99 - Browse repository at this point
Copy the full SHA 090aa99View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for dd80f9d - Browse repository at this point
Copy the full SHA dd80f9dView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 065a09f - Browse repository at this point
Copy the full SHA 065a09fView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for ea89e40 - Browse repository at this point
Copy the full SHA ea89e40View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1527ca8 - Browse repository at this point
Copy the full SHA 1527ca8View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 0b3529c - Browse repository at this point
Copy the full SHA 0b3529cView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for a9f5c7f - Browse repository at this point
Copy the full SHA a9f5c7fView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for ad16709 - Browse repository at this point
Copy the full SHA ad16709View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3ae2668 - Browse repository at this point
Copy the full SHA 3ae2668View commit details -
Configuration menu - View commit details
-
Copy full SHA for 70f14fc - Browse repository at this point
Copy the full SHA 70f14fcView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for d673b06 - Browse repository at this point
Copy the full SHA d673b06View commit details -
Configuration menu - View commit details
-
Copy full SHA for c31bf9c - Browse repository at this point
Copy the full SHA c31bf9cView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for dbab6e2 - Browse repository at this point
Copy the full SHA dbab6e2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 126185e - Browse repository at this point
Copy the full SHA 126185eView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 1340b16 - Browse repository at this point
Copy the full SHA 1340b16View commit details -
Configuration menu - View commit details
-
Copy full SHA for b25f1a4 - Browse repository at this point
Copy the full SHA b25f1a4View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for e136aa3 - Browse repository at this point
Copy the full SHA e136aa3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 22a6b59 - Browse repository at this point
Copy the full SHA 22a6b59View commit details -
Configuration menu - View commit details
-
Copy full SHA for da1083e - Browse repository at this point
Copy the full SHA da1083eView commit details -
Configuration menu - View commit details
-
Copy full SHA for d80a5a7 - Browse repository at this point
Copy the full SHA d80a5a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 14234ba - Browse repository at this point
Copy the full SHA 14234baView commit details -
Configuration menu - View commit details
-
Copy full SHA for c1cae17 - Browse repository at this point
Copy the full SHA c1cae17View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 78863e3 - Browse repository at this point
Copy the full SHA 78863e3View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 791cf80 - Browse repository at this point
Copy the full SHA 791cf80View commit details -
Configuration menu - View commit details
-
Copy full SHA for 10b1292 - Browse repository at this point
Copy the full SHA 10b1292View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7996552 - Browse repository at this point
Copy the full SHA 7996552View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for fe239b9 - Browse repository at this point
Copy the full SHA fe239b9View commit details -
Configuration menu - View commit details
-
Copy full SHA for e82c795 - Browse repository at this point
Copy the full SHA e82c795View commit details -
Configuration menu - View commit details
-
Copy full SHA for 64d8c65 - Browse repository at this point
Copy the full SHA 64d8c65View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8363328 - Browse repository at this point
Copy the full SHA 8363328View commit details -
Configuration menu - View commit details
-
Copy full SHA for 19775dc - Browse repository at this point
Copy the full SHA 19775dcView commit details -
Configuration menu - View commit details
-
Copy full SHA for ed39e80 - Browse repository at this point
Copy the full SHA ed39e80View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5cbf81a - Browse repository at this point
Copy the full SHA 5cbf81aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e70a00 - Browse repository at this point
Copy the full SHA 4e70a00View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 19edcb5 - Browse repository at this point
Copy the full SHA 19edcb5View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 94f0514 - Browse repository at this point
Copy the full SHA 94f0514View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3e8bc92 - Browse repository at this point
Copy the full SHA 3e8bc92View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 59f4fa3 - Browse repository at this point
Copy the full SHA 59f4fa3View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for cc1f04b - Browse repository at this point
Copy the full SHA cc1f04bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7797a45 - Browse repository at this point
Copy the full SHA 7797a45View commit details -
Configuration menu - View commit details
-
Copy full SHA for f2c8b42 - Browse repository at this point
Copy the full SHA f2c8b42View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for ea1c58e - Browse repository at this point
Copy the full SHA ea1c58eView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 3fce696 - Browse repository at this point
Copy the full SHA 3fce696View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 548c445 - Browse repository at this point
Copy the full SHA 548c445View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7af91ee - Browse repository at this point
Copy the full SHA 7af91eeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 68e3ff1 - Browse repository at this point
Copy the full SHA 68e3ff1View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 5acb65c - Browse repository at this point
Copy the full SHA 5acb65cView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 00239f3 - Browse repository at this point
Copy the full SHA 00239f3View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 2b59ddb - Browse repository at this point
Copy the full SHA 2b59ddbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4cc5c37 - Browse repository at this point
Copy the full SHA 4cc5c37View commit details -
[COLLECTIONS-839] migrate all tests to use junit5 assert and BulkTest…
… not extend TestCase (apache#391)
Configuration menu - View commit details
-
Copy full SHA for 6538189 - Browse repository at this point
Copy the full SHA 6538189View commit details -
Configuration menu - View commit details
-
Copy full SHA for d42c87e - Browse repository at this point
Copy the full SHA d42c87eView commit details -
Configuration menu - View commit details
-
Copy full SHA for b2bf4e3 - Browse repository at this point
Copy the full SHA b2bf4e3View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 7874b21 - Browse repository at this point
Copy the full SHA 7874b21View commit details -
Configuration menu - View commit details
-
Copy full SHA for ebbd286 - Browse repository at this point
Copy the full SHA ebbd286View commit details -
Configuration menu - View commit details
-
Copy full SHA for 94cdbec - Browse repository at this point
Copy the full SHA 94cdbecView commit details -
Configuration menu - View commit details
-
Copy full SHA for c00e682 - Browse repository at this point
Copy the full SHA c00e682View commit details -
Configuration menu - View commit details
-
Copy full SHA for 638693c - Browse repository at this point
Copy the full SHA 638693cView commit details -
Configuration menu - View commit details
-
Copy full SHA for c20b777 - Browse repository at this point
Copy the full SHA c20b777View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5db2642 - Browse repository at this point
Copy the full SHA 5db2642View commit details -
Configuration menu - View commit details
-
Copy full SHA for 05549e0 - Browse repository at this point
Copy the full SHA 05549e0View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for b912b23 - Browse repository at this point
Copy the full SHA b912b23View commit details -
Configuration menu - View commit details
-
Copy full SHA for b45ad94 - Browse repository at this point
Copy the full SHA b45ad94View commit details -
Configuration menu - View commit details
-
Copy full SHA for 83c8ee2 - Browse repository at this point
Copy the full SHA 83c8ee2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 08efcd4 - Browse repository at this point
Copy the full SHA 08efcd4View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 8de9296 - Browse repository at this point
Copy the full SHA 8de9296View commit details -
Configuration menu - View commit details
-
Copy full SHA for 67cb7f7 - Browse repository at this point
Copy the full SHA 67cb7f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 633708b - Browse repository at this point
Copy the full SHA 633708bView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for ba1e44e - Browse repository at this point
Copy the full SHA ba1e44eView commit details -
Consolidate the cases from EnhancedDoubleHasherTest and BitMapTest. Use Long.remainderUnsigned as the reference result.
Configuration menu - View commit details
-
Copy full SHA for 9ac6788 - Browse repository at this point
Copy the full SHA 9ac6788View commit details -
Configuration menu - View commit details
-
Copy full SHA for bf5cefd - Browse repository at this point
Copy the full SHA bf5cefdView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 69f9a27 - Browse repository at this point
Copy the full SHA 69f9a27View commit details -
Changes required to open testing to new implementations. (apache#398)
* Changes required to open testing to new implementations. * removed extra spaces
Configuration menu - View commit details
-
Copy full SHA for c051326 - Browse repository at this point
Copy the full SHA c051326View commit details -
[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]>
Configuration menu - View commit details
-
Copy full SHA for f425667 - Browse repository at this point
Copy the full SHA f425667View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b7f1f0 - Browse repository at this point
Copy the full SHA 2b7f1f0View commit details -
[StepSecurity] ci: Harden GitHub Actions (apache#401)
Signed-off-by: StepSecurity Bot <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 88b5e65 - Browse repository at this point
Copy the full SHA 88b5e65View commit details -
Configuration menu - View commit details
-
Copy full SHA for f3a18bd - Browse repository at this point
Copy the full SHA f3a18bdView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for c6aee80 - Browse repository at this point
Copy the full SHA c6aee80View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for d777afd - Browse repository at this point
Copy the full SHA d777afdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9fec5f4 - Browse repository at this point
Copy the full SHA 9fec5f4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 08fa869 - Browse repository at this point
Copy the full SHA 08fa869View commit details -
Configuration menu - View commit details
-
Copy full SHA for 37a1dc2 - Browse repository at this point
Copy the full SHA 37a1dc2View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 97dfed3 - Browse repository at this point
Copy the full SHA 97dfed3View commit details -
Configuration menu - View commit details
-
Copy full SHA for fac9baa - Browse repository at this point
Copy the full SHA fac9baaView commit details -
Configuration menu - View commit details
-
Copy full SHA for b459495 - Browse repository at this point
Copy the full SHA b459495View commit details -
Add org.apache.commons.collections4.properties.OrderedProperties and
OrderedPropertiesFactory
Configuration menu - View commit details
-
Copy full SHA for 170a776 - Browse repository at this point
Copy the full SHA 170a776View commit details -
Configuration menu - View commit details
-
Copy full SHA for 46a364d - Browse repository at this point
Copy the full SHA 46a364dView commit details -
Passes locally, fails on GHA
Configuration menu - View commit details
-
Copy full SHA for b88df81 - Browse repository at this point
Copy the full SHA b88df81View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4104913 - Browse repository at this point
Copy the full SHA 4104913View commit details -
Configuration menu - View commit details
-
Copy full SHA for 21e2208 - Browse repository at this point
Copy the full SHA 21e2208View commit details -
Make AbstractPatriciaTrie public (apache#407)
* Make AbstractPatriciaTrie public * Added javadocs
Configuration menu - View commit details
-
Copy full SHA for 782d3bb - Browse repository at this point
Copy the full SHA 782d3bbView commit details -
Configuration menu - View commit details
-
Copy full SHA for c91927a - Browse repository at this point
Copy the full SHA c91927aView commit details -
Configuration menu - View commit details
-
Copy full SHA for cd33766 - Browse repository at this point
Copy the full SHA cd33766View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for bedb515 - Browse repository at this point
Copy the full SHA bedb515View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6d765ac - Browse repository at this point
Copy the full SHA 6d765acView commit details -
Configuration menu - View commit details
-
Copy full SHA for f12c3af - Browse repository at this point
Copy the full SHA f12c3afView commit details -
fixes misplaced symbols in javadoc (mainly in Hasher, CountingLongPre…
…dicate) (apache#409) resolves grammar and punctuation issues
Configuration menu - View commit details
-
Copy full SHA for b6e7ac2 - Browse repository at this point
Copy the full SHA b6e7ac2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 23ce3d3 - Browse repository at this point
Copy the full SHA 23ce3d3View commit details -
Configuration menu - View commit details
-
Copy full SHA for a30ac76 - Browse repository at this point
Copy the full SHA a30ac76View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for c01d3dd - Browse repository at this point
Copy the full SHA c01d3ddView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for e7b796d - Browse repository at this point
Copy the full SHA e7b796dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 45af3cc - Browse repository at this point
Copy the full SHA 45af3ccView commit details -
Merge remote-tracking branch 'origin/collections_795' into collection…
…s_795 # Conflicts: # src/test/java/org/apache/commons/collections4/iterators/PairedIteratorTest.java
Configuration menu - View commit details
-
Copy full SHA for dd42aa7 - Browse repository at this point
Copy the full SHA dd42aa7View commit details