[GitHub] [commons-dbcp] dependabot[bot] commented on pull request #52: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #52:
URL: https://github.com/apache/commons-dbcp/pull/52#issuecomment-680696814


   Superseded by #58.



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.

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




[GitHub] [commons-dbcp] dependabot[bot] opened a new pull request #58: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.0 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   v1.4.1
   
   Add Third Party License Information
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   https://github.com/actions/setup-java/commit/3019d15cad3f7d2657e77aa6efe0571b3a89d0b4";>3019d15
 Add Third Party Licenses (https://github-redirect.dependabot.com/actions/setup-java/issues/87";>#87)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.0...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-dbcp] dependabot[bot] closed pull request #52: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #52:
URL: https://github.com/apache/commons-dbcp/pull/52


   



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.

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




[GitHub] [commons-collections] coveralls edited a comment on pull request #178: solve animal sniffer problem that fails build on 11+

2020-08-25 Thread GitBox


coveralls edited a comment on pull request #178:
URL: 
https://github.com/apache/commons-collections/pull/178#issuecomment-680685964


   
   [![Coverage 
Status](https://coveralls.io/builds/33006850/badge)](https://coveralls.io/builds/33006850)
   
   Coverage remained the same at 90.127% when pulling 
**b95bd7a9be8ec929818e3712f7bcea278e239874 on 
XenoAmess:solve_animal_sniffer_problem_that_stop_build** into 
**cec45f826fad9e0eeccfcb1805300e75c4dfe5d2 on apache:master**.
   



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.

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




[GitHub] [commons-collections] kinow commented on a change in pull request #178: solve animal sniffer problem that fails build on 11+

2020-08-25 Thread GitBox


kinow commented on a change in pull request #178:
URL: 
https://github.com/apache/commons-collections/pull/178#discussion_r477070887



##
File path: 
src/main/java/org/apache/commons/collections4/iterators/ListIteratorWrapper.java
##
@@ -204,7 +204,7 @@ public int previousIndex() {
 
 /**
  * Removes the last element that was returned by {@link #next()} or {@link 
#previous()} from the underlying collection.
- * This call can only be made once per call to {@code next} or {@code 
previous} and only if {@link #add()} was not called in between.
+ * This call can only be made once per call to {@code next} or {@code 
previous} and only if {@link #add(Object)} was not called in between.

Review comment:
   Was this necessary to solve the animal sniffer problems too?





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.

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




[GitHub] [commons-release-plugin] kinow merged pull request #11: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


kinow merged pull request #11:
URL: https://github.com/apache/commons-release-plugin/pull/11


   



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.

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




[GitHub] [commons-collections] kinow commented on pull request #178: solve animal sniffer problem that fails build on 11+

2020-08-25 Thread GitBox


kinow commented on pull request #178:
URL: 
https://github.com/apache/commons-collections/pull/178#issuecomment-680692001


   @XenoAmess I had noticed the error, and tracked down to that function, but 
wasn't sure what had changed. Let's leave CI run/build it now, but looks like 
you've fixed this annoying issue! Thanks a lot!!! :champagne: 



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.

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




[GitHub] [commons-collections] coveralls commented on pull request #178: solve animal sniffer problem that fails build on 11+

2020-08-25 Thread GitBox


coveralls commented on pull request #178:
URL: 
https://github.com/apache/commons-collections/pull/178#issuecomment-680685964


   
   [![Coverage 
Status](https://coveralls.io/builds/33006619/badge)](https://coveralls.io/builds/33006619)
   
   Coverage remained the same at 90.127% when pulling 
**df2a58cefe27d9f996a14dd786a21f8d0185b2ff on 
XenoAmess:solve_animal_sniffer_problem_that_stop_build** into 
**cec45f826fad9e0eeccfcb1805300e75c4dfe5d2 on apache:master**.
   



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.

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




[GitHub] [commons-release-plugin] coveralls commented on pull request #11: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


coveralls commented on pull request #11:
URL: 
https://github.com/apache/commons-release-plugin/pull/11#issuecomment-680684833


   
   [![Coverage 
Status](https://coveralls.io/builds/33006571/badge)](https://coveralls.io/builds/33006571)
   
   Coverage remained the same at 74.936% when pulling 
**3faffef0b0d748665bb7ca839f39d57b398fa995 on 
dependabot/github_actions/actions/setup-java-v1.4.2** into 
**0feec23b095bb7b4432d0f06b616854f419560c7 on master**.
   



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.

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




[GitHub] [commons-io] coveralls commented on pull request #149: Bump mockito-core from 3.5.2 to 3.5.7

2020-08-25 Thread GitBox


coveralls commented on pull request #149:
URL: https://github.com/apache/commons-io/pull/149#issuecomment-680684487


   
   [![Coverage 
Status](https://coveralls.io/builds/33006559/badge)](https://coveralls.io/builds/33006559)
   
   Coverage remained the same at 90.017% when pulling 
**02878a45fc16a123876393a714a7b9a7da9fa259 on 
dependabot/maven/org.mockito-mockito-core-3.5.7** into 
**b7b804c46d38de205c2d36b52ba71ec9bbc4ddeb on master**.
   



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.

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




[GitHub] [commons-collections] XenoAmess opened a new pull request #178: solve animal sniffer problem that stop build

2020-08-25 Thread GitBox


XenoAmess opened a new pull request #178:
URL: https://github.com/apache/commons-collections/pull/178


   Hi.
   I noticed recent builds cannot pass build on jdk 11+ (actually, not very 
recent)
   And I tracked it to find ther be a Math.floorMod(long,int) function newly 
added in 11, and which is not  on jdk8, on jdk8 the codes will invoke 
Math.floorMod(long,long) .
   That is why animal sniffer will fail the build on 11+.
   As it is just a test file, I've hided it by force casting to long.
   



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.

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




[GitHub] [commons-release-plugin] dependabot[bot] commented on pull request #9: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #9:
URL: 
https://github.com/apache/commons-release-plugin/pull/9#issuecomment-680683765


   Superseded by #11.



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.

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




[GitHub] [commons-release-plugin] dependabot[bot] closed pull request #9: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #9:
URL: https://github.com/apache/commons-release-plugin/pull/9


   



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.

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




[GitHub] [commons-release-plugin] dependabot[bot] opened a new pull request #11: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


dependabot[bot] opened a new pull request #11:
URL: https://github.com/apache/commons-release-plugin/pull/11


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.0 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   v1.4.1
   
   Add Third Party License Information
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   https://github.com/actions/setup-java/commit/3019d15cad3f7d2657e77aa6efe0571b3a89d0b4";>3019d15
 Add Third Party Licenses (https://github-redirect.dependabot.com/actions/setup-java/issues/87";>#87)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.0...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-lang] coveralls commented on pull request #612: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


coveralls commented on pull request #612:
URL: https://github.com/apache/commons-lang/pull/612#issuecomment-680681726


   
   [![Coverage 
Status](https://coveralls.io/builds/33006392/badge)](https://coveralls.io/builds/33006392)
   
   Coverage remained the same at 94.704% when pulling 
**7ea35b66057267cf79dd6f81ffb6377b8aaca2e5 on 
dependabot/github_actions/actions/setup-java-v1.4.2** into 
**31dc5c700e1a08f4af33d94301ff06790533099b on master**.
   



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.

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




[GitHub] [commons-pool] coveralls commented on pull request #42: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


coveralls commented on pull request #42:
URL: https://github.com/apache/commons-pool/pull/42#issuecomment-680681925


   
   [![Coverage 
Status](https://coveralls.io/builds/33006461/badge)](https://coveralls.io/builds/33006461)
   
   Coverage remained the same at 84.352% when pulling 
**4343a4ca0c474396b84f30d2b3b8bb3fc4634f02 on 
dependabot/github_actions/actions/setup-java-v1.4.2** into 
**f337409059e168a2fdecb8e4531a2f1358e32a10 on master**.
   



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.

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




[GitHub] [commons-dbutils] coveralls commented on pull request #30: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


coveralls commented on pull request #30:
URL: https://github.com/apache/commons-dbutils/pull/30#issuecomment-680681136


   
   [![Coverage 
Status](https://coveralls.io/builds/33006410/badge)](https://coveralls.io/builds/33006410)
   
   Coverage remained the same at 64.939% when pulling 
**4de79eb55b7b57ede710ecae05d3bb4f9825cfad on 
dependabot/github_actions/actions/setup-java-v1.4.2** into 
**afb6e6aecd0a9a4693bc919c267afc978cfc0486 on master**.
   



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.

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




[GitHub] [commons-io] coveralls commented on pull request #148: Bump actions/setup-java from v1.4.1 to v1.4.2

2020-08-25 Thread GitBox


coveralls commented on pull request #148:
URL: https://github.com/apache/commons-io/pull/148#issuecomment-680680056


   
   [![Coverage 
Status](https://coveralls.io/builds/33006377/badge)](https://coveralls.io/builds/33006377)
   
   Coverage decreased (-0.06%) to 89.955% when pulling 
**f9066623e4546bdb379e92387ab9708927457519 on 
dependabot/github_actions/actions/setup-java-v1.4.2** into 
**b7b804c46d38de205c2d36b52ba71ec9bbc4ddeb on master**.
   



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.

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




[GitHub] [commons-csv] coveralls commented on pull request #101: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


coveralls commented on pull request #101:
URL: https://github.com/apache/commons-csv/pull/101#issuecomment-680679219


   
   [![Coverage 
Status](https://coveralls.io/builds/33006334/badge)](https://coveralls.io/builds/33006334)
   
   Coverage remained the same at 98.506% when pulling 
**e8d299a25d79b53c3ff1ff036efaceb8ca846297 on 
dependabot/github_actions/actions/setup-java-v1.4.2** into 
**e0e80b48b2202eb711e5b87732239f5e2077897e on master**.
   



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.

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




[GitHub] [commons-compress] coveralls commented on pull request #133: Bump actions/setup-java from v1.4.1 to v1.4.2

2020-08-25 Thread GitBox


coveralls commented on pull request #133:
URL: https://github.com/apache/commons-compress/pull/133#issuecomment-680678387


   
   [![Coverage 
Status](https://coveralls.io/builds/33006295/badge)](https://coveralls.io/builds/33006295)
   
   Coverage remained the same at 87.248% when pulling 
**fc7f781cde7982b406f5bf898c35974274a6d1d5 on 
dependabot/github_actions/actions/setup-java-v1.4.2** into 
**08d754cce4bb9a3bc30467e965ab86c64473e032 on master**.
   



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.

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




[GitHub] [commons-codec] coveralls commented on pull request #60: Bump actions/setup-java from v1.4.1 to v1.4.2

2020-08-25 Thread GitBox


coveralls commented on pull request #60:
URL: https://github.com/apache/commons-codec/pull/60#issuecomment-680678063


   
   [![Coverage 
Status](https://coveralls.io/builds/33006289/badge)](https://coveralls.io/builds/33006289)
   
   Coverage remained the same at 93.976% when pulling 
**62b975e86351ae074770ab61bb20c978b52a1eb3 on 
dependabot/github_actions/actions/setup-java-v1.4.2** into 
**53c93d0ffccb65d182306c74d1230ce814889dc1 on master**.
   



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.

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




[GitHub] [commons-collections] kinow merged pull request #177: Bump actions/setup-java from v1.4.1 to v1.4.2

2020-08-25 Thread GitBox


kinow merged pull request #177:
URL: https://github.com/apache/commons-collections/pull/177


   



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.

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




[GitHub] [commons-fileupload] kinow merged pull request #40: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


kinow merged pull request #40:
URL: https://github.com/apache/commons-fileupload/pull/40


   



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.

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




[GitHub] [commons-cli] kinow merged pull request #48: Bump actions/setup-java from v1.4.1 to v1.4.2

2020-08-25 Thread GitBox


kinow merged pull request #48:
URL: https://github.com/apache/commons-cli/pull/48


   



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.

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




[GitHub] [commons-csv] coveralls commented on pull request #100: Bump mockito-core from 3.4.6 to 3.5.7

2020-08-25 Thread GitBox


coveralls commented on pull request #100:
URL: https://github.com/apache/commons-csv/pull/100#issuecomment-680676037


   
   [![Coverage 
Status](https://coveralls.io/builds/33006235/badge)](https://coveralls.io/builds/33006235)
   
   Coverage remained the same at 98.506% when pulling 
**95125361c233550a46ac9b1fd52bc5ee938a916d on 
dependabot/maven/org.mockito-mockito-core-3.5.7** into 
**e0e80b48b2202eb711e5b87732239f5e2077897e on master**.
   



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.

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




[GitHub] [commons-text] kinow merged pull request #155: Bump actions/setup-java from v1.4.1 to v1.4.2

2020-08-25 Thread GitBox


kinow merged pull request #155:
URL: https://github.com/apache/commons-text/pull/155


   



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.

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




[GitHub] [commons-imaging] kinow merged pull request #95: Bump actions/setup-java from v1.4.1 to v1.4.2

2020-08-25 Thread GitBox


kinow merged pull request #95:
URL: https://github.com/apache/commons-imaging/pull/95


   



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.

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




[GitHub] [commons-text] kinow merged pull request #154: Bump mockito-inline from 3.5.6 to 3.5.7

2020-08-25 Thread GitBox


kinow merged pull request #154:
URL: https://github.com/apache/commons-text/pull/154


   



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.

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




[GitHub] [commons-dbutils] coveralls commented on pull request #29: Bump mockito-core from 3.4.6 to 3.5.7

2020-08-25 Thread GitBox


coveralls commented on pull request #29:
URL: https://github.com/apache/commons-dbutils/pull/29#issuecomment-680675599


   
   [![Coverage 
Status](https://coveralls.io/builds/33006215/badge)](https://coveralls.io/builds/33006215)
   
   Coverage remained the same at 64.939% when pulling 
**ca22338b4791771defd76581f39325fbb15e2435 on 
dependabot/maven/org.mockito-mockito-core-3.5.7** into 
**afb6e6aecd0a9a4693bc919c267afc978cfc0486 on master**.
   



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.

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




[GitHub] [commons-text] coveralls commented on pull request #154: Bump mockito-inline from 3.5.6 to 3.5.7

2020-08-25 Thread GitBox


coveralls commented on pull request #154:
URL: https://github.com/apache/commons-text/pull/154#issuecomment-680675222


   
   [![Coverage 
Status](https://coveralls.io/builds/33006200/badge)](https://coveralls.io/builds/33006200)
   
   Coverage remained the same at 98.671% when pulling 
**cd8e27c0785842e7abb167000479adb77ea39a55 on 
dependabot/maven/org.mockito-mockito-inline-3.5.7** into 
**1da0cbb5b31f6729e6ec7c180b540aff174c6e30 on master**.
   



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.

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




[GitHub] [commons-cli] coveralls commented on pull request #48: Bump actions/setup-java from v1.4.1 to v1.4.2

2020-08-25 Thread GitBox


coveralls commented on pull request #48:
URL: https://github.com/apache/commons-cli/pull/48#issuecomment-680674410


   
   [![Coverage 
Status](https://coveralls.io/builds/33006181/badge)](https://coveralls.io/builds/33006181)
   
   Coverage remained the same at 96.358% when pulling 
**f2668f6c44854e383da06bb11cd93304bf0f143d on 
dependabot/github_actions/actions/setup-java-v1.4.2** into 
**d12aadf6b241e6d6b43f261085dd219bd3aeacd6 on master**.
   



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.

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




[GitHub] [commons-validator] dependabot[bot] commented on pull request #39: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #39:
URL: https://github.com/apache/commons-validator/pull/39#issuecomment-680673777


   Superseded by #40.



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.

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




[GitHub] [commons-email] dependabot[bot] closed pull request #26: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #26:
URL: https://github.com/apache/commons-email/pull/26


   



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.

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




[GitHub] [commons-exec] dependabot[bot] opened a new pull request #19: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.0 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   v1.4.1
   
   Add Third Party License Information
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   https://github.com/actions/setup-java/commit/3019d15cad3f7d2657e77aa6efe0571b3a89d0b4";>3019d15
 Add Third Party Licenses (https://github-redirect.dependabot.com/actions/setup-java/issues/87";>#87)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.0...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-csv] dependabot[bot] commented on pull request #93: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #93:
URL: https://github.com/apache/commons-csv/pull/93#issuecomment-680673725


   Superseded by #101.



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.

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




[GitHub] [commons-build-plugin] dependabot[bot] opened a new pull request #13: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


dependabot[bot] opened a new pull request #13:
URL: https://github.com/apache/commons-build-plugin/pull/13


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.0 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   v1.4.1
   
   Add Third Party License Information
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   https://github.com/actions/setup-java/commit/3019d15cad3f7d2657e77aa6efe0571b3a89d0b4";>3019d15
 Add Third Party Licenses (https://github-redirect.dependabot.com/actions/setup-java/issues/87";>#87)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.0...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-email] dependabot[bot] opened a new pull request #27: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.0 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   v1.4.1
   
   Add Third Party License Information
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   https://github.com/actions/setup-java/commit/3019d15cad3f7d2657e77aa6efe0571b3a89d0b4";>3019d15
 Add Third Party Licenses (https://github-redirect.dependabot.com/actions/setup-java/issues/87";>#87)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.0...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-compress] dependabot[bot] closed pull request #132: Bump mockito-core from 1.10.19 to 3.5.6

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #132:
URL: https://github.com/apache/commons-compress/pull/132


   



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.

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




[GitHub] [commons-imaging] dependabot[bot] opened a new pull request #95: Bump actions/setup-java from v1.4.1 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.1 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.1...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-bcel] dependabot[bot] closed pull request #60: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #60:
URL: https://github.com/apache/commons-bcel/pull/60


   



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.

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




[GitHub] [commons-io] dependabot[bot] commented on pull request #147: Bump mockito-core from 3.5.2 to 3.5.6

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #147:
URL: https://github.com/apache/commons-io/pull/147#issuecomment-680673749


   Superseded by #149.



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.

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




[GitHub] [commons-exec] dependabot[bot] commented on pull request #18: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #18:
URL: https://github.com/apache/commons-exec/pull/18#issuecomment-680673938


   Superseded by #19.



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.

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




[GitHub] [commons-pool] dependabot[bot] closed pull request #40: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #40:
URL: https://github.com/apache/commons-pool/pull/40


   



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.

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




[GitHub] [commons-email] dependabot[bot] commented on pull request #26: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #26:
URL: https://github.com/apache/commons-email/pull/26#issuecomment-680673695


   Superseded by #27.



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.

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




[GitHub] [commons-io] dependabot[bot] opened a new pull request #149: Bump mockito-core from 3.5.2 to 3.5.7

2020-08-25 Thread GitBox


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


   Bumps [mockito-core](https://github.com/mockito/mockito) from 3.5.2 to 3.5.7.
   
   Release notes
   Sourced from https://github.com/mockito/mockito/releases";>mockito-core's 
releases.
   
   v3.5.7
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.7
   
   2020-08-25 - https://github.com/mockito/mockito/compare/v3.5.6...v3.5.7";>2 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.7";>https://img.shields.io/badge/Bintray-3.5.7-green.svg"; alt="Bintray" 
/>
   Initializes classes prior to instrumentation to avoid uncontrolled code 
execution. [(https://github-redirect.dependabot.com/mockito/mockito/issues/2023";>#2023)](https://github-redirect.dependabot.com/mockito/mockito/pull/2023";>mockito/mockito#2023)
   Stackoverflow error when upgrading to v3.5.2 [(https://github-redirect.dependabot.com/mockito/mockito/issues/2011";>#2011)](https://github-redirect.dependabot.com/mockito/mockito/issues/2011";>mockito/mockito#2011)
   
   v3.5.6
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.6
   
   2020-08-24 - https://github.com/mockito/mockito/compare/v3.5.5...v3.5.6";>5 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.6";>https://img.shields.io/badge/Bintray-3.5.6-green.svg"; alt="Bintray" 
/>
   Only apply argument on illegal module access for inline tests if Java 
version is at least 9. [(https://github-redirect.dependabot.com/mockito/mockito/issues/2022";>#2022)](https://github-redirect.dependabot.com/mockito/mockito/pull/2022";>mockito/mockito#2022)
   Constructor dispatch [(https://github-redirect.dependabot.com/mockito/mockito/issues/2021";>#2021)](https://github-redirect.dependabot.com/mockito/mockito/pull/2021";>mockito/mockito#2021)
   
   v3.5.5
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.5
   
   2020-08-22 - https://github.com/mockito/mockito/compare/v3.5.4...v3.5.5";>3 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.5";>https://img.shields.io/badge/Bintray-3.5.5-green.svg"; alt="Bintray" 
/>
   Constructor dispatch [(https://github-redirect.dependabot.com/mockito/mockito/issues/2020";>#2020)](https://github-redirect.dependabot.com/mockito/mockito/pull/2020";>mockito/mockito#2020)
   
   
   
   
   Commits
   
   https://github.com/mockito/mockito/commit/8007df7a25d6c59eb561c1f6023d724d3b3c167f";>8007df7
 3.5.7 release (previous 3.5.6) + release notes updated by CI build 4749
   https://github.com/mockito/mockito/commit/f31ba850384fa789278e11aea41efc3b1c877a48";>f31ba85
 [ci maven-central-release] Merge pull request https://github-redirect.dependabot.com/mockito/mockito/issues/2023";>#2023
 from mockito/explicit-ini...
   https://github.com/mockito/mockito/commit/24d8d790c22913a9a92ea70bad721b06a735cd46";>24d8d79
 Initializes classes prior to instrumentation to avoid uncontrolled code 
execu...
   https://github.com/mockito/mockito/commit/929840ab691b2f502b9958ac9483104bfd88a9ee";>929840a
 3.5.6 release (previous 3.5.5) + release notes updated by CI build 4744
   https://github.com/mockito/mockito/commit/7a350f3a902be8fef63567457fe89e9f6f824e2c";>7a350f3
 [ci maven-central-release] Merge pull request https://github-redirect.dependabot.com/mockito/mockito/issues/2022";>#2022
 from mockito/constructor-...
   https://github.com/mockito/mockito/commit/f48b98ac940e8e9e3f0782b37247f031507566da";>f48b98a
 Only apply argument on illegal module access for inline tests if Java 
version...
   https://github.com/mockito/mockito/commit/76a91f05c994afa3e66f066d53dc4c010ac281c6";>76a91f0
 [ci maven-central-release] Merge pull request https://github-redirect.dependabot.com/mockito/mockito/issues/2021";>#2021
 from mockito/constructor-...
   https://github.com/mockito/mockito/commit/57f7db8c4c72f06cb6c94a7edce1f255847e12ac";>57f7db8
 Refine module openness check
   https://github.com/mockito/mockito/commit/eaa12bfc018ed00fcd35588dc900d657a9740e32";>eaa12bf
 Add suspension when Mockito exception is thrown.
   https://github.com/mockito/mockito/commit/065dd127fdd34b6570ae78075c12d4d4026fbbcb";>065dd12
 3.5.5 release (previous 3.5.4) + release notes updated by CI build 4734
   Additional commits viewable in https://github.com/mockito/mockito/compare/v3.5.2...v3.5.7";>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.mockito:mockito-core&package-manager=maven&previous-version=3.5.2&new-version=3.5.7)](https://help.github.com/articles/configuring-automated-security-fixes)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also

[GitHub] [commons-build-plugin] dependabot[bot] commented on pull request #11: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #11:
URL: 
https://github.com/apache/commons-build-plugin/pull/11#issuecomment-680673786


   Superseded by #13.



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.

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




[GitHub] [commons-lang] dependabot[bot] commented on pull request #604: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #604:
URL: https://github.com/apache/commons-lang/pull/604#issuecomment-680673736


   Superseded by #612.



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.

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




[GitHub] [commons-configuration] dependabot[bot] opened a new pull request #65: Bump actions/setup-java from v1.4.1 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.1 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.1...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-build-plugin] dependabot[bot] closed pull request #11: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #11:
URL: https://github.com/apache/commons-build-plugin/pull/11


   



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.

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




[GitHub] [commons-io] dependabot[bot] closed pull request #147: Bump mockito-core from 3.5.2 to 3.5.6

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #147:
URL: https://github.com/apache/commons-io/pull/147


   



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.

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




[GitHub] [commons-validator] dependabot[bot] closed pull request #39: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #39:
URL: https://github.com/apache/commons-validator/pull/39


   



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.

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




[GitHub] [commons-validator] dependabot[bot] opened a new pull request #40: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.0 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   v1.4.1
   
   Add Third Party License Information
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   https://github.com/actions/setup-java/commit/3019d15cad3f7d2657e77aa6efe0571b3a89d0b4";>3019d15
 Add Third Party Licenses (https://github-redirect.dependabot.com/actions/setup-java/issues/87";>#87)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.0...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-logging] dependabot[bot] commented on pull request #16: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #16:
URL: https://github.com/apache/commons-logging/pull/16#issuecomment-680673561


   Superseded by #18.



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.

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




[GitHub] [commons-lang] dependabot[bot] opened a new pull request #612: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.0 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   v1.4.1
   
   Add Third Party License Information
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   https://github.com/actions/setup-java/commit/3019d15cad3f7d2657e77aa6efe0571b3a89d0b4";>3019d15
 Add Third Party Licenses (https://github-redirect.dependabot.com/actions/setup-java/issues/87";>#87)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.0...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-exec] dependabot[bot] closed pull request #18: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #18:
URL: https://github.com/apache/commons-exec/pull/18


   



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.

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




[GitHub] [commons-csv] dependabot[bot] closed pull request #93: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #93:
URL: https://github.com/apache/commons-csv/pull/93


   



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.

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




[GitHub] [commons-compress] dependabot[bot] opened a new pull request #134: Bump mockito-core from 1.10.19 to 3.5.7

2020-08-25 Thread GitBox


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


   Bumps [mockito-core](https://github.com/mockito/mockito) from 1.10.19 to 
3.5.7.
   
   Release notes
   Sourced from https://github.com/mockito/mockito/releases";>mockito-core's 
releases.
   
   v3.5.7
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.7
   
   2020-08-25 - https://github.com/mockito/mockito/compare/v3.5.6...v3.5.7";>2 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.7";>https://img.shields.io/badge/Bintray-3.5.7-green.svg"; alt="Bintray" 
/>
   Initializes classes prior to instrumentation to avoid uncontrolled code 
execution. [(https://github-redirect.dependabot.com/mockito/mockito/issues/2023";>#2023)](https://github-redirect.dependabot.com/mockito/mockito/pull/2023";>mockito/mockito#2023)
   Stackoverflow error when upgrading to v3.5.2 [(https://github-redirect.dependabot.com/mockito/mockito/issues/2011";>#2011)](https://github-redirect.dependabot.com/mockito/mockito/issues/2011";>mockito/mockito#2011)
   
   v3.5.6
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.6
   
   2020-08-24 - https://github.com/mockito/mockito/compare/v3.5.5...v3.5.6";>5 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.6";>https://img.shields.io/badge/Bintray-3.5.6-green.svg"; alt="Bintray" 
/>
   Only apply argument on illegal module access for inline tests if Java 
version is at least 9. [(https://github-redirect.dependabot.com/mockito/mockito/issues/2022";>#2022)](https://github-redirect.dependabot.com/mockito/mockito/pull/2022";>mockito/mockito#2022)
   Constructor dispatch [(https://github-redirect.dependabot.com/mockito/mockito/issues/2021";>#2021)](https://github-redirect.dependabot.com/mockito/mockito/pull/2021";>mockito/mockito#2021)
   
   v3.5.5
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.5
   
   2020-08-22 - https://github.com/mockito/mockito/compare/v3.5.4...v3.5.5";>3 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.5";>https://img.shields.io/badge/Bintray-3.5.5-green.svg"; alt="Bintray" 
/>
   Constructor dispatch [(https://github-redirect.dependabot.com/mockito/mockito/issues/2020";>#2020)](https://github-redirect.dependabot.com/mockito/mockito/pull/2020";>mockito/mockito#2020)
   
   v3.5.2
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.2
   
   2020-08-18 - https://github.com/mockito/mockito/compare/v3.5.1...v3.5.2";>1 commit 
by https://github.com/TimvdLippe";>Tim van der Lippe - published to 
https://bintray.com/mockito/maven/mockito/3.5.2";>https://img.shields.io/badge/Bintray-3.5.2-green.svg"; alt="Bintray" 
/>
   No pull requests referenced in commit messages.
   
   v3.5.1
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.1
   
   2020-08-18 - https://github.com/mockito/mockito/compare/v3.5.0...v3.5.1";>3 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito-development/3.5.1";>https://img.shields.io/badge/Bintray-3.5.1-green.svg"; alt="Bintray" 
/>
   Introduce animal sniffer [(https://github-redirect.dependabot.com/mockito/mockito/issues/2006";>#2006)](https://github-redirect.dependabot.com/mockito/mockito/pull/2006";>mockito/mockito#2006)
   
   v3.5.0
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.0
   
   2020-08-15 - https://github.com/mockito/mockito/compare/v3.4.8...v3.5.0";>9 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.0";>https://img.shields.io/badge/Bintray-3.5.0-green.svg"; alt="Bintray" 
/>
   Pre release 3.5.0 [(https://github-redirect.dependabot.com/mockito/mockito/issues/2004";>#2004)](https://github-redirect.dependabot.com/mockito/mockito/pull/2004";>mockito/mockito#2004)
   
   v3.4.8
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.4.8
   
   2020-08-09 - https://github.com/mockito/mockito/compare/v3.4.7...v3.4.8";>1 commit 
by https://github.com/epeee";>Erhard Pointl - published to https://bintray.com/mockito/maven/mockito-development/3.4.8";>https://img.shields.io/badge/Bintray-3.4.8-green.svg"; alt="Bintray" 
/>
   Update objenesis to 3.1 [(https://github-redirect.dependabot.com/mockito/mockito/issues/1998";>#1998)](https://github-redirect.dependabot.com/mockito/mockito/pull/1998";>mockito/mockito#1998)
   
   
   
   
   
   Commits
   
   https://github.com/mockito/mockito/commit/8007df7a25d6c59eb561c1f6023d724d3b3c167f";>8007df7
 3.5.7 release (previous 3.5.6) + release notes updated by CI build 4749
   https://github.com/mockito/mockito/c

[GitHub] [commons-vfs] dependabot[bot] opened a new pull request #113: Bump actions/setup-java from v1.4.1 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.1 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.1...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-compress] dependabot[bot] commented on pull request #132: Bump mockito-core from 1.10.19 to 3.5.6

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #132:
URL: https://github.com/apache/commons-compress/pull/132#issuecomment-680673772


   Superseded by #134.



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.

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




[GitHub] [commons-dbutils] dependabot[bot] commented on pull request #28: Bump mockito-core from 3.4.6 to 3.5.6

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #28:
URL: https://github.com/apache/commons-dbutils/pull/28#issuecomment-680673504


   Superseded by #29.



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.

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




[GitHub] [commons-dbutils] dependabot[bot] opened a new pull request #29: Bump mockito-core from 3.4.6 to 3.5.7

2020-08-25 Thread GitBox


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


   Bumps [mockito-core](https://github.com/mockito/mockito) from 3.4.6 to 3.5.7.
   
   Release notes
   Sourced from https://github.com/mockito/mockito/releases";>mockito-core's 
releases.
   
   v3.5.7
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.7
   
   2020-08-25 - https://github.com/mockito/mockito/compare/v3.5.6...v3.5.7";>2 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.7";>https://img.shields.io/badge/Bintray-3.5.7-green.svg"; alt="Bintray" 
/>
   Initializes classes prior to instrumentation to avoid uncontrolled code 
execution. [(https://github-redirect.dependabot.com/mockito/mockito/issues/2023";>#2023)](https://github-redirect.dependabot.com/mockito/mockito/pull/2023";>mockito/mockito#2023)
   Stackoverflow error when upgrading to v3.5.2 [(https://github-redirect.dependabot.com/mockito/mockito/issues/2011";>#2011)](https://github-redirect.dependabot.com/mockito/mockito/issues/2011";>mockito/mockito#2011)
   
   v3.5.6
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.6
   
   2020-08-24 - https://github.com/mockito/mockito/compare/v3.5.5...v3.5.6";>5 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.6";>https://img.shields.io/badge/Bintray-3.5.6-green.svg"; alt="Bintray" 
/>
   Only apply argument on illegal module access for inline tests if Java 
version is at least 9. [(https://github-redirect.dependabot.com/mockito/mockito/issues/2022";>#2022)](https://github-redirect.dependabot.com/mockito/mockito/pull/2022";>mockito/mockito#2022)
   Constructor dispatch [(https://github-redirect.dependabot.com/mockito/mockito/issues/2021";>#2021)](https://github-redirect.dependabot.com/mockito/mockito/pull/2021";>mockito/mockito#2021)
   
   v3.5.5
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.5
   
   2020-08-22 - https://github.com/mockito/mockito/compare/v3.5.4...v3.5.5";>3 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.5";>https://img.shields.io/badge/Bintray-3.5.5-green.svg"; alt="Bintray" 
/>
   Constructor dispatch [(https://github-redirect.dependabot.com/mockito/mockito/issues/2020";>#2020)](https://github-redirect.dependabot.com/mockito/mockito/pull/2020";>mockito/mockito#2020)
   
   v3.5.2
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.2
   
   2020-08-18 - https://github.com/mockito/mockito/compare/v3.5.1...v3.5.2";>1 commit 
by https://github.com/TimvdLippe";>Tim van der Lippe - published to 
https://bintray.com/mockito/maven/mockito/3.5.2";>https://img.shields.io/badge/Bintray-3.5.2-green.svg"; alt="Bintray" 
/>
   No pull requests referenced in commit messages.
   
   v3.5.1
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.1
   
   2020-08-18 - https://github.com/mockito/mockito/compare/v3.5.0...v3.5.1";>3 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito-development/3.5.1";>https://img.shields.io/badge/Bintray-3.5.1-green.svg"; alt="Bintray" 
/>
   Introduce animal sniffer [(https://github-redirect.dependabot.com/mockito/mockito/issues/2006";>#2006)](https://github-redirect.dependabot.com/mockito/mockito/pull/2006";>mockito/mockito#2006)
   
   v3.5.0
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.0
   
   2020-08-15 - https://github.com/mockito/mockito/compare/v3.4.8...v3.5.0";>9 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.0";>https://img.shields.io/badge/Bintray-3.5.0-green.svg"; alt="Bintray" 
/>
   Pre release 3.5.0 [(https://github-redirect.dependabot.com/mockito/mockito/issues/2004";>#2004)](https://github-redirect.dependabot.com/mockito/mockito/pull/2004";>mockito/mockito#2004)
   
   v3.4.8
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.4.8
   
   2020-08-09 - https://github.com/mockito/mockito/compare/v3.4.7...v3.4.8";>1 commit 
by https://github.com/epeee";>Erhard Pointl - published to https://bintray.com/mockito/maven/mockito-development/3.4.8";>https://img.shields.io/badge/Bintray-3.4.8-green.svg"; alt="Bintray" 
/>
   Update objenesis to 3.1 [(https://github-redirect.dependabot.com/mockito/mockito/issues/1998";>#1998)](https://github-redirect.dependabot.com/mockito/mockito/pull/1998";>mockito/mockito#1998)
   
   
   
   
   
   Commits
   
   https://github.com/mockito/mockito/commit/8007df7a25d6c59eb561c1f6023d724d3b3c167f";>8007df7
 3.5.7 release (previous 3.5.6) + release notes updated by CI build 4749
   https://github.com/mockito/mockito/commit/

[GitHub] [commons-lang] dependabot[bot] closed pull request #604: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #604:
URL: https://github.com/apache/commons-lang/pull/604


   



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.

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




[GitHub] [commons-dbcp] dependabot[bot] closed pull request #56: Bump mockito-core from 3.4.6 to 3.5.6

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #56:
URL: https://github.com/apache/commons-dbcp/pull/56


   



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.

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




[GitHub] [commons-csv] dependabot[bot] closed pull request #99: Bump mockito-core from 3.4.6 to 3.5.6

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #99:
URL: https://github.com/apache/commons-csv/pull/99


   



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.

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




[GitHub] [commons-fileupload] dependabot[bot] opened a new pull request #40: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.0 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   v1.4.1
   
   Add Third Party License Information
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   https://github.com/actions/setup-java/commit/3019d15cad3f7d2657e77aa6efe0571b3a89d0b4";>3019d15
 Add Third Party Licenses (https://github-redirect.dependabot.com/actions/setup-java/issues/87";>#87)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.0...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-dbcp] dependabot[bot] commented on pull request #56: Bump mockito-core from 3.4.6 to 3.5.6

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #56:
URL: https://github.com/apache/commons-dbcp/pull/56#issuecomment-680673472


   Superseded by #57.



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.

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




[GitHub] [commons-bcel] dependabot[bot] opened a new pull request #62: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.0 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   v1.4.1
   
   Add Third Party License Information
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   https://github.com/actions/setup-java/commit/3019d15cad3f7d2657e77aa6efe0571b3a89d0b4";>3019d15
 Add Third Party Licenses (https://github-redirect.dependabot.com/actions/setup-java/issues/87";>#87)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.0...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-csv] dependabot[bot] opened a new pull request #101: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.0 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   v1.4.1
   
   Add Third Party License Information
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   https://github.com/actions/setup-java/commit/3019d15cad3f7d2657e77aa6efe0571b3a89d0b4";>3019d15
 Add Third Party Licenses (https://github-redirect.dependabot.com/actions/setup-java/issues/87";>#87)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.0...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-csv] dependabot[bot] commented on pull request #99: Bump mockito-core from 3.4.6 to 3.5.6

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #99:
URL: https://github.com/apache/commons-csv/pull/99#issuecomment-680673579


   Superseded by #100.



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.

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




[GitHub] [commons-text] dependabot[bot] opened a new pull request #155: Bump actions/setup-java from v1.4.1 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.1 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.1...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-net] dependabot[bot] closed pull request #57: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #57:
URL: https://github.com/apache/commons-net/pull/57


   



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.

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




[GitHub] [commons-beanutils] dependabot[bot] commented on pull request #34: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #34:
URL: https://github.com/apache/commons-beanutils/pull/34#issuecomment-680673636


   Superseded by #35.



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.

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




[GitHub] [commons-dbutils] dependabot[bot] closed pull request #28: Bump mockito-core from 3.4.6 to 3.5.6

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #28:
URL: https://github.com/apache/commons-dbutils/pull/28


   



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.

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




[GitHub] [commons-fileupload] dependabot[bot] commented on pull request #38: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #38:
URL: https://github.com/apache/commons-fileupload/pull/38#issuecomment-680673575


   Superseded by #40.



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.

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




[GitHub] [commons-pool] dependabot[bot] opened a new pull request #42: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.0 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   v1.4.1
   
   Add Third Party License Information
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   https://github.com/actions/setup-java/commit/3019d15cad3f7d2657e77aa6efe0571b3a89d0b4";>3019d15
 Add Third Party Licenses (https://github-redirect.dependabot.com/actions/setup-java/issues/87";>#87)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.0...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-pool] dependabot[bot] commented on pull request #40: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #40:
URL: https://github.com/apache/commons-pool/pull/40#issuecomment-680673646


   Superseded by #42.



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.

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




[GitHub] [commons-csv] dependabot[bot] opened a new pull request #100: Bump mockito-core from 3.4.6 to 3.5.7

2020-08-25 Thread GitBox


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


   Bumps [mockito-core](https://github.com/mockito/mockito) from 3.4.6 to 3.5.7.
   
   Release notes
   Sourced from https://github.com/mockito/mockito/releases";>mockito-core's 
releases.
   
   v3.5.7
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.7
   
   2020-08-25 - https://github.com/mockito/mockito/compare/v3.5.6...v3.5.7";>2 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.7";>https://img.shields.io/badge/Bintray-3.5.7-green.svg"; alt="Bintray" 
/>
   Initializes classes prior to instrumentation to avoid uncontrolled code 
execution. [(https://github-redirect.dependabot.com/mockito/mockito/issues/2023";>#2023)](https://github-redirect.dependabot.com/mockito/mockito/pull/2023";>mockito/mockito#2023)
   Stackoverflow error when upgrading to v3.5.2 [(https://github-redirect.dependabot.com/mockito/mockito/issues/2011";>#2011)](https://github-redirect.dependabot.com/mockito/mockito/issues/2011";>mockito/mockito#2011)
   
   v3.5.6
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.6
   
   2020-08-24 - https://github.com/mockito/mockito/compare/v3.5.5...v3.5.6";>5 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.6";>https://img.shields.io/badge/Bintray-3.5.6-green.svg"; alt="Bintray" 
/>
   Only apply argument on illegal module access for inline tests if Java 
version is at least 9. [(https://github-redirect.dependabot.com/mockito/mockito/issues/2022";>#2022)](https://github-redirect.dependabot.com/mockito/mockito/pull/2022";>mockito/mockito#2022)
   Constructor dispatch [(https://github-redirect.dependabot.com/mockito/mockito/issues/2021";>#2021)](https://github-redirect.dependabot.com/mockito/mockito/pull/2021";>mockito/mockito#2021)
   
   v3.5.5
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.5
   
   2020-08-22 - https://github.com/mockito/mockito/compare/v3.5.4...v3.5.5";>3 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.5";>https://img.shields.io/badge/Bintray-3.5.5-green.svg"; alt="Bintray" 
/>
   Constructor dispatch [(https://github-redirect.dependabot.com/mockito/mockito/issues/2020";>#2020)](https://github-redirect.dependabot.com/mockito/mockito/pull/2020";>mockito/mockito#2020)
   
   v3.5.2
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.2
   
   2020-08-18 - https://github.com/mockito/mockito/compare/v3.5.1...v3.5.2";>1 commit 
by https://github.com/TimvdLippe";>Tim van der Lippe - published to 
https://bintray.com/mockito/maven/mockito/3.5.2";>https://img.shields.io/badge/Bintray-3.5.2-green.svg"; alt="Bintray" 
/>
   No pull requests referenced in commit messages.
   
   v3.5.1
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.1
   
   2020-08-18 - https://github.com/mockito/mockito/compare/v3.5.0...v3.5.1";>3 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito-development/3.5.1";>https://img.shields.io/badge/Bintray-3.5.1-green.svg"; alt="Bintray" 
/>
   Introduce animal sniffer [(https://github-redirect.dependabot.com/mockito/mockito/issues/2006";>#2006)](https://github-redirect.dependabot.com/mockito/mockito/pull/2006";>mockito/mockito#2006)
   
   v3.5.0
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.0
   
   2020-08-15 - https://github.com/mockito/mockito/compare/v3.4.8...v3.5.0";>9 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.0";>https://img.shields.io/badge/Bintray-3.5.0-green.svg"; alt="Bintray" 
/>
   Pre release 3.5.0 [(https://github-redirect.dependabot.com/mockito/mockito/issues/2004";>#2004)](https://github-redirect.dependabot.com/mockito/mockito/pull/2004";>mockito/mockito#2004)
   
   v3.4.8
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.4.8
   
   2020-08-09 - https://github.com/mockito/mockito/compare/v3.4.7...v3.4.8";>1 commit 
by https://github.com/epeee";>Erhard Pointl - published to https://bintray.com/mockito/maven/mockito-development/3.4.8";>https://img.shields.io/badge/Bintray-3.4.8-green.svg"; alt="Bintray" 
/>
   Update objenesis to 3.1 [(https://github-redirect.dependabot.com/mockito/mockito/issues/1998";>#1998)](https://github-redirect.dependabot.com/mockito/mockito/pull/1998";>mockito/mockito#1998)
   
   
   
   
   
   Commits
   
   https://github.com/mockito/mockito/commit/8007df7a25d6c59eb561c1f6023d724d3b3c167f";>8007df7
 3.5.7 release (previous 3.5.6) + release notes updated by CI build 4749
   https://github.com/mockito/mockito/commit/f3

[GitHub] [commons-io] dependabot[bot] opened a new pull request #148: Bump actions/setup-java from v1.4.1 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.1 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.1...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-parent] dependabot[bot] commented on pull request #16: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #16:
URL: https://github.com/apache/commons-parent/pull/16#issuecomment-680673363


   Superseded by #18.



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.

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




[GitHub] [commons-bcel] dependabot[bot] commented on pull request #60: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #60:
URL: https://github.com/apache/commons-bcel/pull/60#issuecomment-680673593


   Superseded by #62.



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.

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




[GitHub] [commons-logging] dependabot[bot] closed pull request #16: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #16:
URL: https://github.com/apache/commons-logging/pull/16


   



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.

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




[GitHub] [commons-compress] dependabot[bot] opened a new pull request #133: Bump actions/setup-java from v1.4.1 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.1 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.1...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-dbutils] dependabot[bot] commented on pull request #24: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #24:
URL: https://github.com/apache/commons-dbutils/pull/24#issuecomment-680673523


   Superseded by #30.



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.

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




[GitHub] [commons-parent] dependabot[bot] opened a new pull request #18: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.0 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   v1.4.1
   
   Add Third Party License Information
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   https://github.com/actions/setup-java/commit/3019d15cad3f7d2657e77aa6efe0571b3a89d0b4";>3019d15
 Add Third Party Licenses (https://github-redirect.dependabot.com/actions/setup-java/issues/87";>#87)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.0...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-parent] dependabot[bot] closed pull request #16: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #16:
URL: https://github.com/apache/commons-parent/pull/16


   



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.

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




[GitHub] [commons-codec] dependabot[bot] opened a new pull request #60: Bump actions/setup-java from v1.4.1 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.1 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.1...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-dbcp] dependabot[bot] opened a new pull request #57: Bump mockito-core from 3.4.6 to 3.5.7

2020-08-25 Thread GitBox


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


   Bumps [mockito-core](https://github.com/mockito/mockito) from 3.4.6 to 3.5.7.
   
   Release notes
   Sourced from https://github.com/mockito/mockito/releases";>mockito-core's 
releases.
   
   v3.5.7
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.7
   
   2020-08-25 - https://github.com/mockito/mockito/compare/v3.5.6...v3.5.7";>2 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.7";>https://img.shields.io/badge/Bintray-3.5.7-green.svg"; alt="Bintray" 
/>
   Initializes classes prior to instrumentation to avoid uncontrolled code 
execution. [(https://github-redirect.dependabot.com/mockito/mockito/issues/2023";>#2023)](https://github-redirect.dependabot.com/mockito/mockito/pull/2023";>mockito/mockito#2023)
   Stackoverflow error when upgrading to v3.5.2 [(https://github-redirect.dependabot.com/mockito/mockito/issues/2011";>#2011)](https://github-redirect.dependabot.com/mockito/mockito/issues/2011";>mockito/mockito#2011)
   
   v3.5.6
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.6
   
   2020-08-24 - https://github.com/mockito/mockito/compare/v3.5.5...v3.5.6";>5 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.6";>https://img.shields.io/badge/Bintray-3.5.6-green.svg"; alt="Bintray" 
/>
   Only apply argument on illegal module access for inline tests if Java 
version is at least 9. [(https://github-redirect.dependabot.com/mockito/mockito/issues/2022";>#2022)](https://github-redirect.dependabot.com/mockito/mockito/pull/2022";>mockito/mockito#2022)
   Constructor dispatch [(https://github-redirect.dependabot.com/mockito/mockito/issues/2021";>#2021)](https://github-redirect.dependabot.com/mockito/mockito/pull/2021";>mockito/mockito#2021)
   
   v3.5.5
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.5
   
   2020-08-22 - https://github.com/mockito/mockito/compare/v3.5.4...v3.5.5";>3 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.5";>https://img.shields.io/badge/Bintray-3.5.5-green.svg"; alt="Bintray" 
/>
   Constructor dispatch [(https://github-redirect.dependabot.com/mockito/mockito/issues/2020";>#2020)](https://github-redirect.dependabot.com/mockito/mockito/pull/2020";>mockito/mockito#2020)
   
   v3.5.2
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.2
   
   2020-08-18 - https://github.com/mockito/mockito/compare/v3.5.1...v3.5.2";>1 commit 
by https://github.com/TimvdLippe";>Tim van der Lippe - published to 
https://bintray.com/mockito/maven/mockito/3.5.2";>https://img.shields.io/badge/Bintray-3.5.2-green.svg"; alt="Bintray" 
/>
   No pull requests referenced in commit messages.
   
   v3.5.1
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.1
   
   2020-08-18 - https://github.com/mockito/mockito/compare/v3.5.0...v3.5.1";>3 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito-development/3.5.1";>https://img.shields.io/badge/Bintray-3.5.1-green.svg"; alt="Bintray" 
/>
   Introduce animal sniffer [(https://github-redirect.dependabot.com/mockito/mockito/issues/2006";>#2006)](https://github-redirect.dependabot.com/mockito/mockito/pull/2006";>mockito/mockito#2006)
   
   v3.5.0
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.0
   
   2020-08-15 - https://github.com/mockito/mockito/compare/v3.4.8...v3.5.0";>9 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.0";>https://img.shields.io/badge/Bintray-3.5.0-green.svg"; alt="Bintray" 
/>
   Pre release 3.5.0 [(https://github-redirect.dependabot.com/mockito/mockito/issues/2004";>#2004)](https://github-redirect.dependabot.com/mockito/mockito/pull/2004";>mockito/mockito#2004)
   
   v3.4.8
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.4.8
   
   2020-08-09 - https://github.com/mockito/mockito/compare/v3.4.7...v3.4.8";>1 commit 
by https://github.com/epeee";>Erhard Pointl - published to https://bintray.com/mockito/maven/mockito-development/3.4.8";>https://img.shields.io/badge/Bintray-3.4.8-green.svg"; alt="Bintray" 
/>
   Update objenesis to 3.1 [(https://github-redirect.dependabot.com/mockito/mockito/issues/1998";>#1998)](https://github-redirect.dependabot.com/mockito/mockito/pull/1998";>mockito/mockito#1998)
   
   
   
   
   
   Commits
   
   https://github.com/mockito/mockito/commit/8007df7a25d6c59eb561c1f6023d724d3b3c167f";>8007df7
 3.5.7 release (previous 3.5.6) + release notes updated by CI build 4749
   https://github.com/mockito/mockito/commit/f31

[GitHub] [commons-net] dependabot[bot] commented on pull request #57: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] commented on pull request #57:
URL: https://github.com/apache/commons-net/pull/57#issuecomment-680673335


   Superseded by #58.



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.

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




[GitHub] [commons-dbutils] dependabot[bot] closed pull request #24: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #24:
URL: https://github.com/apache/commons-dbutils/pull/24


   



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.

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




[GitHub] [commons-beanutils] dependabot[bot] opened a new pull request #35: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.0 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   v1.4.1
   
   Add Third Party License Information
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   https://github.com/actions/setup-java/commit/3019d15cad3f7d2657e77aa6efe0571b3a89d0b4";>3019d15
 Add Third Party Licenses (https://github-redirect.dependabot.com/actions/setup-java/issues/87";>#87)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.0...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-fileupload] dependabot[bot] closed pull request #38: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #38:
URL: https://github.com/apache/commons-fileupload/pull/38


   



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.

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




[GitHub] [commons-logging] dependabot[bot] opened a new pull request #18: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.0 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   v1.4.1
   
   Add Third Party License Information
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   https://github.com/actions/setup-java/commit/3019d15cad3f7d2657e77aa6efe0571b3a89d0b4";>3019d15
 Add Third Party Licenses (https://github-redirect.dependabot.com/actions/setup-java/issues/87";>#87)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.0...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-dbutils] dependabot[bot] opened a new pull request #30: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.0 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   v1.4.1
   
   Add Third Party License Information
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   https://github.com/actions/setup-java/commit/3019d15cad3f7d2657e77aa6efe0571b3a89d0b4";>3019d15
 Add Third Party Licenses (https://github-redirect.dependabot.com/actions/setup-java/issues/87";>#87)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.0...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-collections] dependabot[bot] opened a new pull request #177: Bump actions/setup-java from v1.4.1 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.1 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.1...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-beanutils] dependabot[bot] closed pull request #34: Bump actions/setup-java from v1.4.0 to v1.4.1

2020-08-25 Thread GitBox


dependabot[bot] closed pull request #34:
URL: https://github.com/apache/commons-beanutils/pull/34


   



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.

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




[GitHub] [commons-net] dependabot[bot] opened a new pull request #58: Bump actions/setup-java from v1.4.0 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.0 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   v1.4.1
   
   Add Third Party License Information
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   https://github.com/actions/setup-java/commit/3019d15cad3f7d2657e77aa6efe0571b3a89d0b4";>3019d15
 Add Third Party Licenses (https://github-redirect.dependabot.com/actions/setup-java/issues/87";>#87)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.0...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-text] dependabot[bot] opened a new pull request #154: Bump mockito-inline from 3.5.6 to 3.5.7

2020-08-25 Thread GitBox


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


   Bumps [mockito-inline](https://github.com/mockito/mockito) from 3.5.6 to 
3.5.7.
   
   Release notes
   Sourced from https://github.com/mockito/mockito/releases";>mockito-inline's 
releases.
   
   v3.5.7
   Release notes were 
automatically generated by http://shipkit.org/";>Shipkit
   3.5.7
   
   2020-08-25 - https://github.com/mockito/mockito/compare/v3.5.6...v3.5.7";>2 commits 
by https://github.com/raphw";>Rafael Winterhalter - published to https://bintray.com/mockito/maven/mockito/3.5.7";>https://img.shields.io/badge/Bintray-3.5.7-green.svg"; alt="Bintray" 
/>
   Initializes classes prior to instrumentation to avoid uncontrolled code 
execution. [(https://github-redirect.dependabot.com/mockito/mockito/issues/2023";>#2023)](https://github-redirect.dependabot.com/mockito/mockito/pull/2023";>mockito/mockito#2023)
   Stackoverflow error when upgrading to v3.5.2 [(https://github-redirect.dependabot.com/mockito/mockito/issues/2011";>#2011)](https://github-redirect.dependabot.com/mockito/mockito/issues/2011";>mockito/mockito#2011)
   
   
   
   
   Commits
   
   https://github.com/mockito/mockito/commit/8007df7a25d6c59eb561c1f6023d724d3b3c167f";>8007df7
 3.5.7 release (previous 3.5.6) + release notes updated by CI build 4749
   https://github.com/mockito/mockito/commit/f31ba850384fa789278e11aea41efc3b1c877a48";>f31ba85
 [ci maven-central-release] Merge pull request https://github-redirect.dependabot.com/mockito/mockito/issues/2023";>#2023
 from mockito/explicit-ini...
   https://github.com/mockito/mockito/commit/24d8d790c22913a9a92ea70bad721b06a735cd46";>24d8d79
 Initializes classes prior to instrumentation to avoid uncontrolled code 
execu...
   See full diff in https://github.com/mockito/mockito/compare/v3.5.6...v3.5.7";>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.mockito:mockito-inline&package-manager=maven&previous-version=3.5.6&new-version=3.5.7)](https://help.github.com/articles/configuring-automated-security-fixes)
   
   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.

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




[GitHub] [commons-cli] dependabot[bot] opened a new pull request #48: Bump actions/setup-java from v1.4.1 to v1.4.2

2020-08-25 Thread GitBox


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


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 
v1.4.1 to v1.4.2.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases.
   
   v1.4.2
   
   Fix for architecture parameter being ignored
   
   
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>8bb50d9
 Move contributor doc
   https://github.com/actions/setup-java/commit/fe06bcdc44e111ce2a9fc254ee76667dea9e028d";>fe06bcd
 Remove old dist/index.js file (https://github-redirect.dependabot.com/actions/setup-java/issues/96";>#96)
   https://github.com/actions/setup-java/commit/d34a7e45c8812086e1d752fd33b1ba46216a6fdd";>d34a7e4
 Architecture Support (https://github-redirect.dependabot.com/actions/setup-java/issues/95";>#95)
   See full diff in https://github.com/actions/setup-java/compare/v1.4.1...8bb50d97d6b4d316daf284fdf8eafbfc988421fc";>compare
 view
   
   
   
   
   
   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.

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




[GitHub] [commons-numbers] coveralls edited a comment on pull request #85: [NUMBERS-152] add a private constructor for already known reduced num and den, to avoid unneeded gcd.

2020-08-25 Thread GitBox


coveralls edited a comment on pull request #85:
URL: https://github.com/apache/commons-numbers/pull/85#issuecomment-680644579


   
   [![Coverage 
Status](https://coveralls.io/builds/33005973/badge)](https://coveralls.io/builds/33005973)
   
   Coverage increased (+0.001%) to 99.636% when pulling 
**7bcfe183ec6df94aac94b5f64a240cdcc943f6d9 on 
XenoAmess:add_non_reduce_constructor_for_Fraction** into 
**c3d173ae9cf25329644b87b8e064f56a2c31ea53 on apache:master**.
   



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.

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




[jira] [Work logged] (NUMBERS-152) add a private constructor for already known reduced num and den, to avoid unneeded gcd.

2020-08-25 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/NUMBERS-152?focusedWorklogId=474673&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-474673
 ]

ASF GitHub Bot logged work on NUMBERS-152:
--

Author: ASF GitHub Bot
Created on: 26/Aug/20 05:44
Start Date: 26/Aug/20 05:44
Worklog Time Spent: 10m 
  Work Description: coveralls edited a comment on pull request #85:
URL: https://github.com/apache/commons-numbers/pull/85#issuecomment-680644579


   
   [![Coverage 
Status](https://coveralls.io/builds/33005973/badge)](https://coveralls.io/builds/33005973)
   
   Coverage increased (+0.001%) to 99.636% when pulling 
**7bcfe183ec6df94aac94b5f64a240cdcc943f6d9 on 
XenoAmess:add_non_reduce_constructor_for_Fraction** into 
**c3d173ae9cf25329644b87b8e064f56a2c31ea53 on apache:master**.
   



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.

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


Issue Time Tracking
---

Worklog Id: (was: 474673)
Time Spent: 1h  (was: 50m)

> add a private constructor for already known reduced num and den, to avoid 
> unneeded gcd.
> ---
>
> Key: NUMBERS-152
> URL: https://issues.apache.org/jira/browse/NUMBERS-152
> Project: Commons Numbers
>  Issue Type: Improvement
>  Components: fraction
>Reporter: Jin Xu
>Priority: Minor
>  Time Spent: 1h
>  Remaining Estimate: 0h
>
> https://github.com/apache/commons-numbers/pull/85
> currently, even if we already know the num and den be already reduced, we 
> must run a gcd when creating the Fraction object.
> I think we can provide a private constructor, specially for situations when 
> we can make sure the num and den be already reduced, then we do not invoke 
> the additional gcd round.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


  1   2   3   4   >