[GitHub] [commons-collections] arturobernalg commented on pull request #313: Remove redundant local variable.

2022-06-16 Thread GitBox


arturobernalg commented on PR #313:
URL: 
https://github.com/apache/commons-collections/pull/313#issuecomment-1157518058

   Ok, your right. I close the PR


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [commons-collections] arturobernalg closed pull request #313: Remove redundant local variable.

2022-06-16 Thread GitBox


arturobernalg closed pull request #313: Remove redundant local variable.
URL: https://github.com/apache/commons-collections/pull/313


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [commons-collections] Claudenw closed pull request #131: Added caching hasher

2022-06-16 Thread GitBox


Claudenw closed pull request #131: Added caching hasher
URL: https://github.com/apache/commons-collections/pull/131


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [commons-collections] Claudenw closed pull request #160: add Simple bloom filter

2022-06-16 Thread GitBox


Claudenw closed pull request #160: add Simple bloom filter
URL: https://github.com/apache/commons-collections/pull/160


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[jira] [Updated] (COLLECTIONS-826) BloomFilter: move CountingLongPredicate

2022-06-16 Thread Claude Warren (Jira)


 [ 
https://issues.apache.org/jira/browse/COLLECTIONS-826?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Claude Warren updated COLLECTIONS-826:
--
Assignee: Claude Warren

> BloomFilter: move CountingLongPredicate
> ---
>
> Key: COLLECTIONS-826
> URL: https://issues.apache.org/jira/browse/COLLECTIONS-826
> Project: Commons Collections
>  Issue Type: Improvement
>  Components: Collection
>Affects Versions: 4.5
>Reporter: Claude Warren
>Assignee: Claude Warren
>Priority: Minor
>  Labels: bloom-filter
>
>  
> {noformat}
>     class CountingLongPredicate implements LongPredicate {
>         int idx = 0;
>         final long[] ary;
>         final LongBiPredicate func;
>         CountingLongPredicate(long[] ary, LongBiPredicate func) {
>             this.ary = ary;
>             this.func = func;
>         }
>         @Override
>         public boolean test(long other) {
>             return func.test(idx == ary.length ? 0 : ary[idx++], other);
>         }
>         boolean forEachRemaining() {
>             while (idx != ary.length && func.test(ary[idx], 0)) {
>                 idx++;
>             }
>             return idx == ary.length;
>         }
>     }
> {noformat}
>  
> Since this is in the interface it is public. It should be an implementation 
> detail. Hiding it ensures it is a one time use only and prevents strangeness 
> when calling forEachRemaining (see below).
> idx will be initialsed as zero anyway so this can be removed: int idx = 0;
>  @aherbert aherbert on 27 Feb
> If func.test returns false the loop will terminate before idx == ary.length. 
> So we return false. However this allows forEachRemaining to be called again. 
> This will use the same position in the array again. If public (currently it 
> is not) then the method could be invoked multiple times and the behaviour is 
> not defined (especially since you have added no comment on this).
> However the class is public but the forEachRemaining method is package 
> private. I suggest moving this out of the interface so the class is package 
> private.
> Note: I tested a spliterator from the List returned from Arrays.asList. The 
> forEachRemaining can be invoked one time only. This behaviour can be obtained 
> by caching idx and setting it to the array length:
> {noformat}
> boolean forEachRemaining() {
> int i = idx;
> final long[] a = ary;
> final int limit = a.length;
> if (i != limit) {
> // Prevent subsequent calls
> idx = limit;
> while (i != limit && func.test(a[i], 0)) {
> i++;
> }
> }
> return i == limit;
> }
> {noformat}
> However the code above as it stands could fail-fast and return false. Then be 
> invoked again, do nothing with the func but will return true. The idx could 
> be set above limit but this will only work if limit is not Integer.MAX_VALUE 
> (which is unlikely). This can be handled by using compared unsigned:
> {noformat}
> boolean forEachRemaining() {
> int i = idx;
> final long[] a = ary;
> final int limit = a.length;
> if (Integer.compareUnsigned(i, limit) < 0) {
> while (i != limit && func.test(a[i], 0)) {
> i++;
> }
> // Set the result for repeat calls
> idx = i == limit ? i : -1;
> }
> return i == limit;
> }
> {noformat}
> This is over engineering a simple helper class. However a tiny optimisation 
> to use local references would be of benefit. So make the class package 
> private, add some javadoc and do:
> {noformat}
> /**
>  * Call the long-long consuming bi-predicate for each remaining unpaired long 
> in
>  * the input array. This method should be invoked after the predicate has been
>  * passed to {@link BitMapProducer#forEachBitMap(LongPredicate)} to consume 
> any
>  * unpaired bitmaps. The second argument to the bi-predicate will be zero.
>  *
>  * @return true if all calls the predicate were successful
>  */
> boolean forEachRemaining() {
> int i = idx;
> final long[] a = ary;
> final int limit = a.length;
> while (i != limit && func.test(a[i], 0)) {
> i++;
> }
> return i == limit;
> }
> {noformat}



--
This message was sent by Atlassian Jira
(v8.20.7#820007)


[GitHub] [commons-collections] Claudenw opened a new pull request, #314: Move counting long predicate

2022-06-16 Thread GitBox


Claudenw opened a new pull request, #314:
URL: https://github.com/apache/commons-collections/pull/314

   Fix [COLLECTIONS-826](https://issues.apache.org/jira/browse/COLLECTIONS-826)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [commons-collections] codecov-commenter commented on pull request #314: Move counting long predicate

2022-06-16 Thread GitBox


codecov-commenter commented on PR #314:
URL: 
https://github.com/apache/commons-collections/pull/314#issuecomment-1157395811

   # 
[Codecov](https://codecov.io/gh/apache/commons-collections/pull/314?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#314](https://codecov.io/gh/apache/commons-collections/pull/314?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (1294897) into 
[master](https://codecov.io/gh/apache/commons-collections/commit/87647d0812f3ec8f10ead3d2059e60801f7538b7?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (87647d0) will **increase** coverage by `0.05%`.
   > The diff coverage is `100.00%`.
   
   ```diff
   @@ Coverage Diff  @@
   ## master #314  +/-   ##
   
   + Coverage 86.02%   86.07%   +0.05% 
   - Complexity 4664 4673   +9 
   
 Files   286  287   +1 
 Lines 1350813511   +3 
 Branches   1984 1983   -1 
   
   + Hits  1162011630  +10 
   + Misses 1325 1321   -4 
   + Partials563  560   -3 
   ```
   
   
   | [Impacted 
Files](https://codecov.io/gh/apache/commons-collections/pull/314?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 | Coverage Δ | |
   |---|---|---|
   | 
[...mmons/collections4/bloomfilter/BitMapProducer.java](https://codecov.io/gh/apache/commons-collections/pull/314/diff?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvY29sbGVjdGlvbnM0L2Jsb29tZmlsdGVyL0JpdE1hcFByb2R1Y2VyLmphdmE=)
 | `88.88% <ø> (-2.78%)` | :arrow_down: |
   | 
[...ollections4/bloomfilter/CountingLongPredicate.java](https://codecov.io/gh/apache/commons-collections/pull/314/diff?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvY29sbGVjdGlvbnM0L2Jsb29tZmlsdGVyL0NvdW50aW5nTG9uZ1ByZWRpY2F0ZS5qYXZh)
 | `100.00% <100.00%> (ø)` | |
   | 
[...commons/collections4/map/AbstractReferenceMap.java](https://codecov.io/gh/apache/commons-collections/pull/314/diff?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvY29sbGVjdGlvbnM0L21hcC9BYnN0cmFjdFJlZmVyZW5jZU1hcC5qYXZh)
 | `91.48% <0.00%> (+2.59%)` | :arrow_up: |
   
   --
   
   [Continue to review full report at 
Codecov](https://codecov.io/gh/apache/commons-collections/pull/314?src=pr=continue_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
   > **Legend** - [Click here to learn 
more](https://docs.codecov.io/docs/codecov-delta?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
   > `Δ = absolute  (impact)`, `ø = not affected`, `? = missing data`
   > Powered by 
[Codecov](https://codecov.io/gh/apache/commons-collections/pull/314?src=pr=footer_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
 Last update 
[87647d0...1294897](https://codecov.io/gh/apache/commons-collections/pull/314?src=pr=lastupdated_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
 Read the [comment 
docs](https://docs.codecov.io/docs/pull-request-comments?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[jira] [Commented] (COLLECTIONS-819) BloomFilter: Remove methods only used in testing from IndexProducer

2022-06-16 Thread Claude Warren (Jira)


[ 
https://issues.apache.org/jira/browse/COLLECTIONS-819?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17554966#comment-17554966
 ] 

Claude Warren commented on COLLECTIONS-819:
---

When Bloom filters were originally proposed as an addition to collections, one 
of the first requests was to be able to take a list of index values and check 
if a Bloom filter contains them and to be able to create a bloom filter from 
such a list.  Both are possible as long as {{fromIndexArray}} is available.

If {{fromIndexArray}} is avalable then {{asIndexArray}} should be available for 
completeness.

> BloomFilter: Remove methods only used in testing from IndexProducer
> ---
>
> Key: COLLECTIONS-819
> URL: https://issues.apache.org/jira/browse/COLLECTIONS-819
> Project: Commons Collections
>  Issue Type: Improvement
>  Components: Collection
>Affects Versions: 4.5
>Reporter: Claude Warren
>Priority: Minor
>  Labels: bloom-filter
>
> [https://github.com/Claudenw/commons-collections/blob/9f2945cc98747893456b73f42ab53f46a866ac37/src/main/java/org/apache/commons/collections4/bloomfilter/IndexProducer.java#L50-L68]
>  
> h3. 
> !https://avatars.githubusercontent.com/u/886334?s=48=4|width=24,height=24! 
> *[aherbert|https://github.com/aherbert]* [on 27 
> Feb|https://github.com/apache/commons-collections/pull/258#discussion_r813449970]
> This method is only used in testing. What is the use case? Note that 
> BloomFilter interface cannot merge an IndexProducer. This functionality is 
> only provided by the constructors for SimpleBloomFilter and 
> SparseBloomFitler. The method is trivially implemented if a user did want to 
> populate a Bloom filter with certain indices. But I do not see why they would 
> unless deserialising its stored representation. Given that we are not 
> supporting any such constructors for the ArrayCountingBloomFilter (creating 
> and populating at the same time) this seems like a partial support in the 
> library. Either the serialisation and deserialisation is better supported, or 
> we drop these methods from the public API for now.
>  
>  
> [https://github.com/Claudenw/commons-collections/blob/9f2945cc98747893456b73f42ab53f46a866ac37/src/main/java/org/apache/commons/collections4/bloomfilter/IndexProducer.java#L104-L119]
>  
> h3. 
> !https://avatars.githubusercontent.com/u/886334?s=48=4|width=24,height=24! 
> *[aherbert|https://github.com/aherbert]* [on 27 
> Feb|https://github.com/apache/commons-collections/pull/258#discussion_r813449970]
> This method is only used in testing. It is not required for any other 
> functionality in the API. What is the use case? If this is for serialisation 
> then the method is trivially performed anyway and the decision should be made 
> to use this or the bitmap long[] representation depending on the saturation 
> of the filter. It would be simpler to drop this method.
> h3.  
>  



--
This message was sent by Atlassian Jira
(v8.20.7#820007)


[GitHub] [commons-parent] dependabot[bot] commented on pull request #117: Bump commons.pmd-impl.version from 6.45.0 to 6.46.0

2022-06-16 Thread GitBox


dependabot[bot] commented on PR #117:
URL: https://github.com/apache/commons-parent/pull/117#issuecomment-1157717559

   Looks like these dependencies are up-to-date now, so this is no longer 
needed.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [commons-parent] dependabot[bot] closed pull request #117: Bump commons.pmd-impl.version from 6.45.0 to 6.46.0

2022-06-16 Thread GitBox


dependabot[bot] closed pull request #117: Bump commons.pmd-impl.version from 
6.45.0 to 6.46.0
URL: https://github.com/apache/commons-parent/pull/117


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [commons-dbcp] codecov-commenter commented on pull request #196: Bump h2 from 2.1.212 to 2.1.214

2022-06-16 Thread GitBox


codecov-commenter commented on PR #196:
URL: https://github.com/apache/commons-dbcp/pull/196#issuecomment-1158468303

   # 
[Codecov](https://codecov.io/gh/apache/commons-dbcp/pull/196?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#196](https://codecov.io/gh/apache/commons-dbcp/pull/196?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (6273707) into 
[master](https://codecov.io/gh/apache/commons-dbcp/commit/d697b482e485d7f493fd2b6dc480470fc67db125?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (d697b48) will **decrease** coverage by `0.02%`.
   > The diff coverage is `n/a`.
   
   ```diff
   @@ Coverage Diff  @@
   ## master #196  +/-   ##
   
   - Coverage 59.22%   59.19%   -0.03% 
   + Complexity 1794 1792   -2 
   
 Files56   56  
 Lines  7737 7737  
 Branches527  527  
   
   - Hits   4582 4580   -2 
   - Misses 2900 2901   +1 
   - Partials255  256   +1 
   ```
   
   
   | [Impacted 
Files](https://codecov.io/gh/apache/commons-dbcp/pull/196?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 | Coverage Δ | |
   |---|---|---|
   | 
[...n/java/org/apache/commons/dbcp2/PoolingDriver.java](https://codecov.io/gh/apache/commons-dbcp/pull/196/diff?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvZGJjcDIvUG9vbGluZ0RyaXZlci5qYXZh)
 | `59.37% <0.00%> (-3.13%)` | :arrow_down: |
   
   --
   
   [Continue to review full report at 
Codecov](https://codecov.io/gh/apache/commons-dbcp/pull/196?src=pr=continue_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
   > **Legend** - [Click here to learn 
more](https://docs.codecov.io/docs/codecov-delta?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
   > `Δ = absolute  (impact)`, `ø = not affected`, `? = missing data`
   > Powered by 
[Codecov](https://codecov.io/gh/apache/commons-dbcp/pull/196?src=pr=footer_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
 Last update 
[d697b48...6273707](https://codecov.io/gh/apache/commons-dbcp/pull/196?src=pr=lastupdated_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
 Read the [comment 
docs](https://docs.codecov.io/docs/pull-request-comments?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [commons-io] dependabot[bot] opened a new pull request, #363: Bump maven-enforcer-plugin from 3.0.0 to 3.1.0

2022-06-16 Thread GitBox


dependabot[bot] opened a new pull request, #363:
URL: https://github.com/apache/commons-io/pull/363

   Bumps [maven-enforcer-plugin](https://github.com/apache/maven-enforcer) from 
3.0.0 to 3.1.0.
   
   Release notes
   Sourced from https://github.com/apache/maven-enforcer/releases;>maven-enforcer-plugin's
 releases.
   
   3.1.0
   
    New features and improvements
   
   https://issues.apache.org/jira/browse/MENFORCER-420;>[MENFORCER-420] 
- cache dependencies across rules (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/152;>#152)
 https://github.com/josephw;>@​josephw
   https://issues.apache.org/jira/browse/MENFORCER-409;>[MENFORCER-409] 
- Log at ERROR level when  is set (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/133;>#133)
 https://github.com/electrum;>@​electrum
   
    Bug Fixes
   
   https://issues.apache.org/jira/browse/MENFORCER-389;>[MENFORCER-389] 
- Allow filtering of parent in requireReleaseDeps (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/157;>#157)
 https://github.com/slawekjaranowski;>@​slawekjaranowski
   https://issues.apache.org/jira/browse/MENFORCER-421;>[MENFORCER-421] 
- Use currently build artifacts in IT tests (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/159;>#159)
 https://github.com/slawekjaranowski;>@​slawekjaranowski
   https://issues.apache.org/jira/browse/MENFORCER-402;>[MENFORCER-402] 
- fix provided dependencies in RequireUpperBoundDeps (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/140;>#140)
 https://github.com/subes;>@​subes
   
    Dependency updates
   
   Bump mockito.version from 4.6.0 to 4.6.1 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/161;>#161)
 https://github.com/dependabot;>@​dependabot
   Bump assertj-core from 3.23.0 to 3.23.1 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/160;>#160)
 https://github.com/dependabot;>@​dependabot
   Bump assertj-core from 3.22.0 to 3.23.0 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/158;>#158)
 https://github.com/dependabot;>@​dependabot
   Bump mockito.version from 4.5.1 to 4.6.0 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/156;>#156)
 https://github.com/dependabot;>@​dependabot
   https://issues.apache.org/jira/browse/MENFORCER-419;>[MENFORCER-419] 
- Upgrade Maven to 3.2.5 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/154;>#154)
 https://github.com/slawekjaranowski;>@​slawekjaranowski
   https://issues.apache.org/jira/browse/MENFORCER-418;>[MENFORCER-418] 
- Upgrade Parent to 36 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/153;>#153)
 https://github.com/slawekjaranowski;>@​slawekjaranowski
   Bump plexus-utils from 3.4.1 to 3.4.2 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/151;>#151)
 https://github.com/dependabot;>@​dependabot
   Bump maven-dependency-tree from 3.1.0 to 3.1.1 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/150;>#150)
 https://github.com/dependabot;>@​dependabot
   Bump maven-javadoc-plugin from 3.3.1 to 3.4.0 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/147;>#147)
 https://github.com/dependabot;>@​dependabot
   Bump maven-surefire-plugin from 3.0.0-M5 to 3.0.0-M6 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/148;>#148)
 https://github.com/dependabot;>@​dependabot
   Bump maven-project-info-reports-plugin from 3.2.2 to 3.3.0 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/149;>#149)
 https://github.com/dependabot;>@​dependabot
   Bump mockito.version from 4.4.0 to 4.5.1 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/146;>#146)
 https://github.com/dependabot;>@​dependabot
   Bump assertj-core from 3.21.0 to 3.22.0 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/134;>#134)
 https://github.com/dependabot;>@​dependabot
   Bump mockito.version from 4.2.0 to 4.4.0 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/142;>#142)
 https://github.com/dependabot;>@​dependabot
   Bump maven-jxr-plugin from 3.1.1 to 3.2.0 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/143;>#143)
 https://github.com/dependabot;>@​dependabot
   Bump maven-project-info-reports-plugin from 3.1.2 to 3.2.2 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/144;>#144)
 https://github.com/dependabot;>@​dependabot
   Bump mrm-maven-plugin from 1.2.0 to 1.3.0 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/129;>#129)
 https://github.com/dependabot;>@​dependabot
   Bump mockito.version from 4.1.0 to 4.2.0 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/132;>#132)
 https://github.com/dependabot;>@​dependabot
   Bump maven-javadoc-plugin from 3.2.0 to 3.3.1 (https://github-redirect.dependabot.com/apache/maven-enforcer/issues/130;>#130)

[GitHub] [commons-io] dependabot[bot] opened a new pull request, #364: Bump apache-rat-plugin from 0.13 to 0.14

2022-06-16 Thread GitBox


dependabot[bot] opened a new pull request, #364:
URL: https://github.com/apache/commons-io/pull/364

   Bumps apache-rat-plugin from 0.13 to 0.14.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.rat:apache-rat-plugin=maven=0.13=0.14)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [commons-io] kinow merged pull request #363: Bump maven-enforcer-plugin from 3.0.0 to 3.1.0

2022-06-16 Thread GitBox


kinow merged PR #363:
URL: https://github.com/apache/commons-io/pull/363


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [commons-io] codecov-commenter commented on pull request #363: Bump maven-enforcer-plugin from 3.0.0 to 3.1.0

2022-06-16 Thread GitBox


codecov-commenter commented on PR #363:
URL: https://github.com/apache/commons-io/pull/363#issuecomment-1158309558

   # 
[Codecov](https://codecov.io/gh/apache/commons-io/pull/363?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#363](https://codecov.io/gh/apache/commons-io/pull/363?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (aec8789) into 
[master](https://codecov.io/gh/apache/commons-io/commit/d2371b61d5be1d35603394de331ef16fb4ec0556?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (d2371b6) will **not change** coverage.
   > The diff coverage is `n/a`.
   
   ```diff
   @@Coverage Diff@@
   ## master #363   +/-   ##
   =
 Coverage 84.39%   84.39%   
 Complexity 2960 2960   
   =
 Files   192  192   
 Lines  7310 7310   
 Branches950  950   
   =
 Hits   6169 6169   
 Misses  897  897   
 Partials244  244   
   ```
   
   
   
   --
   
   [Continue to review full report at 
Codecov](https://codecov.io/gh/apache/commons-io/pull/363?src=pr=continue_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
   > **Legend** - [Click here to learn 
more](https://docs.codecov.io/docs/codecov-delta?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
   > `Δ = absolute  (impact)`, `ø = not affected`, `? = missing data`
   > Powered by 
[Codecov](https://codecov.io/gh/apache/commons-io/pull/363?src=pr=footer_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
 Last update 
[d2371b6...aec8789](https://codecov.io/gh/apache/commons-io/pull/363?src=pr=lastupdated_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
 Read the [comment 
docs](https://docs.codecov.io/docs/pull-request-comments?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [commons-dbcp] dependabot[bot] opened a new pull request, #196: Bump h2 from 2.1.212 to 2.1.214

2022-06-16 Thread GitBox


dependabot[bot] opened a new pull request, #196:
URL: https://github.com/apache/commons-dbcp/pull/196

   Bumps [h2](https://github.com/h2database/h2database) from 2.1.212 to 2.1.214.
   
   Release notes
   Sourced from https://github.com/h2database/h2database/releases;>h2's 
releases.
   
   version-2.1.214
   Important bugs and regression fixes discovered after 2.1.212 release:
   
   
   
   
   Commits
   
   https://github.com/h2database/h2database/commit/1ba3590b5d29581a14b018b966e5da0a8ff2994c;>1ba3590
 release preparation - another minor adjustment
   https://github.com/h2database/h2database/commit/bbb5a590b91597649b19f81a5f89ecb4bf44d33d;>bbb5a59
 release preparation - minor version
   https://github.com/h2database/h2database/commit/01ad7fbdf8454de4023233b736785b59a326f1a6;>01ad7fb
 release preparation
   https://github.com/h2database/h2database/commit/48e5d1000a2ec65a91e92f1a70d40bbcade76e09;>48e5d10
 Merge pull request https://github-redirect.dependabot.com/h2database/h2database/issues/3540;>#3540
 from katzyn/compatibility
   https://github.com/h2database/h2database/commit/1fbdd510301a0f4b86d9079a7b2d006481302689;>1fbdd51
 Update PgJDBC to version 42.4.0
   https://github.com/h2database/h2database/commit/c0d989e43f73cb90d01948009705301423712f5d;>c0d989e
 Use DECFLOAT for NUMERIC without parameters in PostgreSQL compatibility 
mode
   https://github.com/h2database/h2database/commit/726bc266a1d1863df6cf41236a31b85f76820aa1;>726bc26
 Merge pull request https://github-redirect.dependabot.com/h2database/h2database/issues/3539;>#3539
 from katzyn/parameters
   https://github.com/h2database/h2database/commit/90caa1d36a21fc0b0b58e2fbefd83e46acff9bd0;>90caa1d
 Fix missing parameters in some subqueries
   https://github.com/h2database/h2database/commit/28eec321385687e0133e4867a71db8db940a23aa;>28eec32
 Merge pull request https://github-redirect.dependabot.com/h2database/h2database/issues/3532;>#3532
 from katzyn/misc
   https://github.com/h2database/h2database/commit/05d5999c0a065b9974c1698cfb494a69fd06a4ef;>05d5999
 Add more helper methods
   Additional commits viewable in https://github.com/h2database/h2database/compare/version-2.1.212...version-2.1.214;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.h2database:h2=maven=2.1.212=2.1.214)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org