[jira] [Updated] (IMAGING-319) updateExifMetadataLossless lost the first character of a String

2022-03-04 Thread Bruno P. Kinoshita (Jira)


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

Bruno P. Kinoshita updated IMAGING-319:
---
Assignee: Bruno P. Kinoshita

> updateExifMetadataLossless lost the first character of a String
> ---
>
> Key: IMAGING-319
> URL: https://issues.apache.org/jira/browse/IMAGING-319
> Project: Commons Imaging
>  Issue Type: Bug
>  Components: Format: JPEG
>Affects Versions: 1.0-alpha2
>Reporter: Sicheng Yang
>Assignee: Bruno P. Kinoshita
>Priority: Major
> Attachments: Screen Shot 2021-11-26 at 4.01.06 PM-1.png, Screen Shot 
> 2021-11-26 at 4.01.21 PM-1.png, iPhone12-geotag.JPG
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> I try to use TiffOutputSet to generate a new image. However, if a tag that 
> contains String, the program may miss the first character of the String.
>  
> import java.io.*;
> import org.apache.commons.imaging.ImageReadException;
> import org.apache.commons.imaging.ImageWriteException;
> import org.apache.commons.imaging.Imaging;
> import org.apache.commons.imaging.common.ImageMetadata;
> import org.apache.commons.imaging.formats.jpeg.JpegImageMetadata;
> import org.apache.commons.imaging.formats.jpeg.exif.ExifRewriter;
> import org.apache.commons.imaging.formats.tiff.TiffImageMetadata;
> import org.apache.commons.imaging.formats.tiff.write.TiffOutputSet;
> public class LibraryTest {
>     public static void main(String[] args) throws ImageReadException, 
> IOException, ImageWriteException {
>         File source = new File("./assets/iPhone12-geotag.JPG");
>         File result = new 
> File("./assets/results/editted-iPhone12-geotag.JPG");
>         final ImageMetadata metadata = Imaging.getMetadata(source);
>         final JpegImageMetadata jpegMetadata = (JpegImageMetadata) metadata;
>         final TiffImageMetadata exif = jpegMetadata.getExif();
>         TiffOutputSet outputSet = exif.getOutputSet();
>         BufferedOutputStream bufferedOutputStream = new 
> BufferedOutputStream(new FileOutputStream(result));
>         new ExifRewriter().updateExifMetadataLossless(source, 
> bufferedOutputStream, outputSet);
>     }
> }
>  
> This is the sample code.
> Tag value in original image
> !image-2021-11-26-16-01-58-645.png!
> Tag value in output image
> !image-2021-11-26-16-04-12-185.png!



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Work logged] (COLLECTIONS-777) Fully migrate Commons Collection to JUnit 5

2022-03-04 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/COLLECTIONS-777?focusedWorklogId=737000=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-737000
 ]

ASF GitHub Bot logged work on COLLECTIONS-777:
--

Author: ASF GitHub Bot
Created on: 05/Mar/22 02:02
Start Date: 05/Mar/22 02:02
Worklog Time Spent: 10m 
  Work Description: garydgregory commented on pull request #287:
URL: 
https://github.com/apache/commons-collections/pull/287#issuecomment-1059649721


   Checkstyle failures reported in 
https://github.com/apache/commons-collections/runs/5428415084?check_suite_focus=true:
   ```
   Error:  
src/test/java/org/apache/commons/collections4/IterableUtilsTest.java:[513,29] 
(indentation) Indentation: 'block' child has incorrect indentation level 28, 
expected level should be 20.
   Error:  
src/test/java/org/apache/commons/collections4/IterableUtilsTest.java:[514,29] 
(indentation) Indentation: 'block' child has incorrect indentation level 28, 
expected level should be 20.
   Error:  
src/test/java/org/apache/commons/collections4/IterableUtilsTest.java:[515,25] 
(indentation) Indentation: 'block rcurly' has incorrect indentation level 24, 
expected level should be 16.
   Error:  
src/test/java/org/apache/commons/collections4/IterableUtilsTest.java:[519,29] 
(indentation) Indentation: 'block' child has incorrect indentation level 28, 
expected level should be 20.
   Error:  
src/test/java/org/apache/commons/collections4/IterableUtilsTest.java:[520,29] 
(indentation) Indentation: 'block' child has incorrect indentation level 28, 
expected level should be 20.
   Error:  
src/test/java/org/apache/commons/collections4/IterableUtilsTest.java:[[521](https://github.com/apache/commons-collections/runs/5428415084?check_suite_focus=true#step:5:521),25]
 (indentation) Indentation: 'block rcurly' has incorrect indentation level 24, 
expected level should be 16.
   Error:  
src/test/java/org/apache/commons/collections4/ListUtilsTest.java:[27,15] 
(imports) UnusedImports: Unused import - org.junit.jupiter.api.Assertions.fail.
   Error:  
src/test/java/org/apache/commons/collections4/MapUtilsTest.java:[196,25] 
(indentation) Indentation: 'array initialization' child has incorrect 
indentation level 24, expected level should be 20.
   ```


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

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

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


Issue Time Tracking
---

Worklog Id: (was: 737000)
Time Spent: 3h 20m  (was: 3h 10m)

> Fully migrate Commons Collection to JUnit 5
> ---
>
> Key: COLLECTIONS-777
> URL: https://issues.apache.org/jira/browse/COLLECTIONS-777
> Project: Commons Collections
>  Issue Type: Improvement
>  Components: Core
>Reporter: Arturo Bernal
>Priority: Major
>  Time Spent: 3h 20m
>  Remaining Estimate: 0h
>
> The idea it's fully migrate Commons Collection to JUnit 5. This time i'll 
> split the work in sub-task in order to avoid PR with to many files



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[GitHub] [commons-collections] garydgregory commented on pull request #287: COLLECTIONS-777 JUnit v5

2022-03-04 Thread GitBox


garydgregory commented on pull request #287:
URL: 
https://github.com/apache/commons-collections/pull/287#issuecomment-1059649721


   Checkstyle failures reported in 
https://github.com/apache/commons-collections/runs/5428415084?check_suite_focus=true:
   ```
   Error:  
src/test/java/org/apache/commons/collections4/IterableUtilsTest.java:[513,29] 
(indentation) Indentation: 'block' child has incorrect indentation level 28, 
expected level should be 20.
   Error:  
src/test/java/org/apache/commons/collections4/IterableUtilsTest.java:[514,29] 
(indentation) Indentation: 'block' child has incorrect indentation level 28, 
expected level should be 20.
   Error:  
src/test/java/org/apache/commons/collections4/IterableUtilsTest.java:[515,25] 
(indentation) Indentation: 'block rcurly' has incorrect indentation level 24, 
expected level should be 16.
   Error:  
src/test/java/org/apache/commons/collections4/IterableUtilsTest.java:[519,29] 
(indentation) Indentation: 'block' child has incorrect indentation level 28, 
expected level should be 20.
   Error:  
src/test/java/org/apache/commons/collections4/IterableUtilsTest.java:[520,29] 
(indentation) Indentation: 'block' child has incorrect indentation level 28, 
expected level should be 20.
   Error:  
src/test/java/org/apache/commons/collections4/IterableUtilsTest.java:[[521](https://github.com/apache/commons-collections/runs/5428415084?check_suite_focus=true#step:5:521),25]
 (indentation) Indentation: 'block rcurly' has incorrect indentation level 24, 
expected level should be 16.
   Error:  
src/test/java/org/apache/commons/collections4/ListUtilsTest.java:[27,15] 
(imports) UnusedImports: Unused import - org.junit.jupiter.api.Assertions.fail.
   Error:  
src/test/java/org/apache/commons/collections4/MapUtilsTest.java:[196,25] 
(indentation) Indentation: 'array initialization' child has incorrect 
indentation level 24, expected level should be 20.
   ```


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

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

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




[GitHub] [commons-beanutils] garydgregory merged pull request #103: Bump actions/cache from 2.1.6 to 2.1.7

2022-03-04 Thread GitBox


garydgregory merged pull request #103:
URL: https://github.com/apache/commons-beanutils/pull/103


   


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

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

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




[GitHub] [commons-beanutils] garydgregory merged pull request #108: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory merged pull request #108:
URL: https://github.com/apache/commons-beanutils/pull/108


   


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

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

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




[GitHub] [commons-beanutils] garydgregory merged pull request #109: Bump biz.aQute.bndlib from 5.3.0 to 6.2.0

2022-03-04 Thread GitBox


garydgregory merged pull request #109:
URL: https://github.com/apache/commons-beanutils/pull/109


   


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

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

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




[GitHub] [commons-validator] garydgregory merged pull request #70: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory merged pull request #70:
URL: https://github.com/apache/commons-validator/pull/70


   


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

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

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




[GitHub] [commons-beanutils] dependabot[bot] closed pull request #102: Bump biz.aQute.bndlib from 5.3.0 to 6.1.0

2022-03-04 Thread GitBox


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


   


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

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

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




[GitHub] [commons-beanutils] dependabot[bot] commented on pull request #102: Bump biz.aQute.bndlib from 5.3.0 to 6.1.0

2022-03-04 Thread GitBox


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


   Superseded by #109.


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

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

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




[GitHub] [commons-beanutils] dependabot[bot] opened a new pull request #109: Bump biz.aQute.bndlib from 5.3.0 to 6.2.0

2022-03-04 Thread GitBox


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


   Bumps [biz.aQute.bndlib](https://github.com/bndtools/bnd) from 5.3.0 to 
6.2.0.
   
   Release notes
   Sourced from https://github.com/bndtools/bnd/releases;>biz.aQute.bndlib's 
releases.
   
   Bnd/Bndtools 6.2.0
   See https://github.com/bndtools/bnd/wiki/Changes-in-6.2.0;>Release 
Notes.
   Bnd/Bndtools 6.1.0
   See https://github.com/bndtools/bnd/wiki/Changes-in-6.1.0;>Release 
Notes.
   Bnd/Bndtools 6.0.0
   See https://github.com/bndtools/bnd/wiki/Changes-in-6.0.0;>Release 
Notes.
   
   
   
   Commits
   
   See full diff in https://github.com/bndtools/bnd/commits/6.2.0;>compare view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=biz.aQute.bnd:biz.aQute.bndlib=maven=5.3.0=6.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


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

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

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




[GitHub] [commons-validator] dependabot[bot] opened a new pull request #70: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


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


   Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
   
   Release notes
   Sourced from https://github.com/actions/checkout/releases;>actions/checkout's 
releases.
   
   v3.0.0
   
   Update default runtime to node16
   
   v2.4.0
   
   Convert SSH URLs like org-ORG_ID@github.com: to 
https://github.com/ - https://github-redirect.dependabot.com/actions/checkout/pull/621;>pr
   
   v2.3.5
   Update dependencies
   v2.3.4
   
   https://github-redirect.dependabot.com/actions/checkout/pull/379;>Add 
missing awaits
   https://github-redirect.dependabot.com/actions/checkout/pull/360;>Swap to 
Environment Files
   
   v2.3.3
   
   https://github-redirect.dependabot.com/actions/checkout/pull/345;>Remove 
Unneeded commit information from build logs
   https://github-redirect.dependabot.com/actions/checkout/pull/326;>Add 
Licensed to verify third party dependencies
   
   v2.3.2
   https://github-redirect.dependabot.com/actions/checkout/pull/320;>Add 
Third Party License Information to Dist Files
   v2.3.1
   https://github-redirect.dependabot.com/actions/checkout/pull/284;>Fix 
default branch resolution for .wiki and when using SSH
   v2.3.0
   https://github-redirect.dependabot.com/actions/checkout/pull/278;>Fallback
 to the default branch
   v2.2.0
   https://github-redirect.dependabot.com/actions/checkout/pull/258;>Fetch 
all history for all tags and branches when fetch-depth=0
   v2.1.1
   Changes to support GHES (https://github-redirect.dependabot.com/actions/checkout/pull/236;>here
 and https://github-redirect.dependabot.com/actions/checkout/pull/248;>here)
   v2.1.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/191;>Group 
output
   https://github-redirect.dependabot.com/actions/checkout/pull/199;>Changes 
to support GHES alpha release
   https://github-redirect.dependabot.com/actions/checkout/pull/184;>Persist 
core.sshCommand for submodules
   https://github-redirect.dependabot.com/actions/checkout/pull/163;>Add 
support ssh
   https://github-redirect.dependabot.com/actions/checkout/pull/179;>Convert 
submodule SSH URL to HTTPS, when not using SSH
   https://github-redirect.dependabot.com/actions/checkout/pull/157;>Add 
submodule support
   https://github-redirect.dependabot.com/actions/checkout/pull/144;>Follow 
proxy settings
   https://github-redirect.dependabot.com/actions/checkout/pull/141;>Fix ref 
for pr closed event when a pr is merged
   https://github-redirect.dependabot.com/actions/checkout/pull/128;>Fix 
issue checking detached when git less than 2.22
   
   
   
   
   Changelog
   Sourced from https://github.com/actions/checkout/blob/main/CHANGELOG.md;>actions/checkout's
 changelog.
   
   Changelog
   v2.3.1
   
   https://github-redirect.dependabot.com/actions/checkout/pull/284;>Fix 
default branch resolution for .wiki and when using SSH
   
   v2.3.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/278;>Fallback
 to the default branch
   
   v2.2.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/258;>Fetch 
all history for all tags and branches when fetch-depth=0
   
   v2.1.1
   
   Changes to support GHES (https://github-redirect.dependabot.com/actions/checkout/pull/236;>here
 and https://github-redirect.dependabot.com/actions/checkout/pull/248;>here)
   
   v2.1.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/191;>Group 
output
   https://github-redirect.dependabot.com/actions/checkout/pull/199;>Changes 
to support GHES alpha release
   https://github-redirect.dependabot.com/actions/checkout/pull/184;>Persist 
core.sshCommand for submodules
   https://github-redirect.dependabot.com/actions/checkout/pull/163;>Add 
support ssh
   https://github-redirect.dependabot.com/actions/checkout/pull/179;>Convert 
submodule SSH URL to HTTPS, when not using SSH
   https://github-redirect.dependabot.com/actions/checkout/pull/157;>Add 
submodule support
   https://github-redirect.dependabot.com/actions/checkout/pull/144;>Follow 
proxy settings
   https://github-redirect.dependabot.com/actions/checkout/pull/141;>Fix ref 
for pr closed event when a pr is merged
   https://github-redirect.dependabot.com/actions/checkout/pull/128;>Fix 
issue checking detached when git less than 2.22
   
   v2.0.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/108;>Do not 
pass cred on command line
   https://github-redirect.dependabot.com/actions/checkout/pull/107;>Add 
input persist-credentials
   https://github-redirect.dependabot.com/actions/checkout/pull/104;>Fallback
 to REST API to download repo
   
   v2 (beta)
   
   Improved fetch performance
   
   The default behavior now fetches only the SHA being checked-out
   
   
   Script authenticated git commands
   
   Persists with.token in the local git config
   Enables your scripts to run authenticated git commands
   Post-job 

[GitHub] [commons-beanutils] dependabot[bot] opened a new pull request #108: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


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


   Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
   
   Release notes
   Sourced from https://github.com/actions/checkout/releases;>actions/checkout's 
releases.
   
   v3.0.0
   
   Update default runtime to node16
   
   v2.4.0
   
   Convert SSH URLs like org-ORG_ID@github.com: to 
https://github.com/ - https://github-redirect.dependabot.com/actions/checkout/pull/621;>pr
   
   v2.3.5
   Update dependencies
   v2.3.4
   
   https://github-redirect.dependabot.com/actions/checkout/pull/379;>Add 
missing awaits
   https://github-redirect.dependabot.com/actions/checkout/pull/360;>Swap to 
Environment Files
   
   v2.3.3
   
   https://github-redirect.dependabot.com/actions/checkout/pull/345;>Remove 
Unneeded commit information from build logs
   https://github-redirect.dependabot.com/actions/checkout/pull/326;>Add 
Licensed to verify third party dependencies
   
   v2.3.2
   https://github-redirect.dependabot.com/actions/checkout/pull/320;>Add 
Third Party License Information to Dist Files
   v2.3.1
   https://github-redirect.dependabot.com/actions/checkout/pull/284;>Fix 
default branch resolution for .wiki and when using SSH
   v2.3.0
   https://github-redirect.dependabot.com/actions/checkout/pull/278;>Fallback
 to the default branch
   v2.2.0
   https://github-redirect.dependabot.com/actions/checkout/pull/258;>Fetch 
all history for all tags and branches when fetch-depth=0
   v2.1.1
   Changes to support GHES (https://github-redirect.dependabot.com/actions/checkout/pull/236;>here
 and https://github-redirect.dependabot.com/actions/checkout/pull/248;>here)
   v2.1.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/191;>Group 
output
   https://github-redirect.dependabot.com/actions/checkout/pull/199;>Changes 
to support GHES alpha release
   https://github-redirect.dependabot.com/actions/checkout/pull/184;>Persist 
core.sshCommand for submodules
   https://github-redirect.dependabot.com/actions/checkout/pull/163;>Add 
support ssh
   https://github-redirect.dependabot.com/actions/checkout/pull/179;>Convert 
submodule SSH URL to HTTPS, when not using SSH
   https://github-redirect.dependabot.com/actions/checkout/pull/157;>Add 
submodule support
   https://github-redirect.dependabot.com/actions/checkout/pull/144;>Follow 
proxy settings
   https://github-redirect.dependabot.com/actions/checkout/pull/141;>Fix ref 
for pr closed event when a pr is merged
   https://github-redirect.dependabot.com/actions/checkout/pull/128;>Fix 
issue checking detached when git less than 2.22
   
   
   
   
   Changelog
   Sourced from https://github.com/actions/checkout/blob/main/CHANGELOG.md;>actions/checkout's
 changelog.
   
   Changelog
   v2.3.1
   
   https://github-redirect.dependabot.com/actions/checkout/pull/284;>Fix 
default branch resolution for .wiki and when using SSH
   
   v2.3.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/278;>Fallback
 to the default branch
   
   v2.2.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/258;>Fetch 
all history for all tags and branches when fetch-depth=0
   
   v2.1.1
   
   Changes to support GHES (https://github-redirect.dependabot.com/actions/checkout/pull/236;>here
 and https://github-redirect.dependabot.com/actions/checkout/pull/248;>here)
   
   v2.1.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/191;>Group 
output
   https://github-redirect.dependabot.com/actions/checkout/pull/199;>Changes 
to support GHES alpha release
   https://github-redirect.dependabot.com/actions/checkout/pull/184;>Persist 
core.sshCommand for submodules
   https://github-redirect.dependabot.com/actions/checkout/pull/163;>Add 
support ssh
   https://github-redirect.dependabot.com/actions/checkout/pull/179;>Convert 
submodule SSH URL to HTTPS, when not using SSH
   https://github-redirect.dependabot.com/actions/checkout/pull/157;>Add 
submodule support
   https://github-redirect.dependabot.com/actions/checkout/pull/144;>Follow 
proxy settings
   https://github-redirect.dependabot.com/actions/checkout/pull/141;>Fix ref 
for pr closed event when a pr is merged
   https://github-redirect.dependabot.com/actions/checkout/pull/128;>Fix 
issue checking detached when git less than 2.22
   
   v2.0.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/108;>Do not 
pass cred on command line
   https://github-redirect.dependabot.com/actions/checkout/pull/107;>Add 
input persist-credentials
   https://github-redirect.dependabot.com/actions/checkout/pull/104;>Fallback
 to REST API to download repo
   
   v2 (beta)
   
   Improved fetch performance
   
   The default behavior now fetches only the SHA being checked-out
   
   
   Script authenticated git commands
   
   Persists with.token in the local git config
   Enables your scripts to run authenticated git commands
   

[GitHub] [commons-collections] codecov-commenter commented on pull request #287: COLLECTIONS-777 JUnit v5

2022-03-04 Thread GitBox


codecov-commenter commented on pull request #287:
URL: 
https://github.com/apache/commons-collections/pull/287#issuecomment-1059548290


   # 
[Codecov](https://codecov.io/gh/apache/commons-collections/pull/287?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#287](https://codecov.io/gh/apache/commons-collections/pull/287?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (81b6ea0) into 
[master](https://codecov.io/gh/apache/commons-collections/commit/f93c7d5976550881dfd5382e7bbda89d8c997f6c?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (f93c7d5) will **not change** coverage.
   > The diff coverage is `n/a`.
   
   [![Impacted file tree 
graph](https://codecov.io/gh/apache/commons-collections/pull/287/graphs/tree.svg?width=650=150=pr=2OkdLkQHzZ_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)](https://codecov.io/gh/apache/commons-collections/pull/287?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
   
   ```diff
   @@Coverage Diff@@
   ## master #287   +/-   ##
   =
 Coverage 85.80%   85.80%   
 Complexity 4674 4674   
   =
 Files   292  292   
 Lines 1347213472   
 Branches   1955 1955   
   =
 Hits  1156011560   
 Misses 1332 1332   
 Partials580  580   
   ```
   
   
   
   --
   
   [Continue to review full report at 
Codecov](https://codecov.io/gh/apache/commons-collections/pull/287?src=pr=continue_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
   > **Legend** - [Click here to learn 
more](https://docs.codecov.io/docs/codecov-delta?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
   > `Δ = absolute  (impact)`, `ø = not affected`, `? = missing data`
   > Powered by 
[Codecov](https://codecov.io/gh/apache/commons-collections/pull/287?src=pr=footer_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
 Last update 
[f93c7d5...81b6ea0](https://codecov.io/gh/apache/commons-collections/pull/287?src=pr=lastupdated_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
 Read the [comment 
docs](https://docs.codecov.io/docs/pull-request-comments?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
   


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

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

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




[jira] [Work logged] (COLLECTIONS-777) Fully migrate Commons Collection to JUnit 5

2022-03-04 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/COLLECTIONS-777?focusedWorklogId=736919=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-736919
 ]

ASF GitHub Bot logged work on COLLECTIONS-777:
--

Author: ASF GitHub Bot
Created on: 04/Mar/22 21:34
Start Date: 04/Mar/22 21:34
Worklog Time Spent: 10m 
  Work Description: codecov-commenter commented on pull request #287:
URL: 
https://github.com/apache/commons-collections/pull/287#issuecomment-1059548290


   # 
[Codecov](https://codecov.io/gh/apache/commons-collections/pull/287?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#287](https://codecov.io/gh/apache/commons-collections/pull/287?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (81b6ea0) into 
[master](https://codecov.io/gh/apache/commons-collections/commit/f93c7d5976550881dfd5382e7bbda89d8c997f6c?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
 (f93c7d5) will **not change** coverage.
   > The diff coverage is `n/a`.
   
   [![Impacted file tree 
graph](https://codecov.io/gh/apache/commons-collections/pull/287/graphs/tree.svg?width=650=150=pr=2OkdLkQHzZ_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)](https://codecov.io/gh/apache/commons-collections/pull/287?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
   
   ```diff
   @@Coverage Diff@@
   ## master #287   +/-   ##
   =
 Coverage 85.80%   85.80%   
 Complexity 4674 4674   
   =
 Files   292  292   
 Lines 1347213472   
 Branches   1955 1955   
   =
 Hits  1156011560   
 Misses 1332 1332   
 Partials580  580   
   ```
   
   
   
   --
   
   [Continue to review full report at 
Codecov](https://codecov.io/gh/apache/commons-collections/pull/287?src=pr=continue_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
   > **Legend** - [Click here to learn 
more](https://docs.codecov.io/docs/codecov-delta?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation)
   > `Δ = absolute  (impact)`, `ø = not affected`, `? = missing data`
   > Powered by 
[Codecov](https://codecov.io/gh/apache/commons-collections/pull/287?src=pr=footer_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
 Last update 
[f93c7d5...81b6ea0](https://codecov.io/gh/apache/commons-collections/pull/287?src=pr=lastupdated_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
 Read the [comment 
docs](https://docs.codecov.io/docs/pull-request-comments?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=The+Apache+Software+Foundation).
   


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

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

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


Issue Time Tracking
---

Worklog Id: (was: 736919)
Time Spent: 3h 10m  (was: 3h)

> Fully migrate Commons Collection to JUnit 5
> ---
>
> Key: COLLECTIONS-777
> URL: https://issues.apache.org/jira/browse/COLLECTIONS-777
> Project: Commons Collections
>  Issue Type: Improvement
>  Components: Core
>Reporter: Arturo Bernal
>Priority: Major
>  Time Spent: 3h 10m
>  Remaining Estimate: 0h
>
> The idea it's fully migrate Commons Collection to JUnit 5. This time i'll 
> split the work in sub-task in order to avoid PR with to many files



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Work logged] (COLLECTIONS-777) Fully migrate Commons Collection to JUnit 5

2022-03-04 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/COLLECTIONS-777?focusedWorklogId=736916=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-736916
 ]

ASF GitHub Bot logged work on COLLECTIONS-777:
--

Author: ASF GitHub Bot
Created on: 04/Mar/22 21:33
Start Date: 04/Mar/22 21:33
Worklog Time Spent: 10m 
  Work Description: nhojpatrick opened a new pull request #287:
URL: https://github.com/apache/commons-collections/pull/287


   JUnit v5 assertThrows BagUtilsTest
   
   JUnit v5 assertThrows ClosureUtilsTest
   
   JUnit v5 assertThrows FluentIterableTest
   
   JUnit v5 assertThrows IterableUtilsTest
   
   JUnit v5 assertThrows ListUtilsTest
   
   JUnit v5 assertThrows MapUtilsTest
   
   JUnit v5 assertThrows SetUtilsTest
   
   JUnit v5 assertThrows GrowthListTest
   
   JUnit v5 assertThrows BoundedIteratorTest
   
   JUnit v5 assertThrows CollectionUtilsTest
   
   JUnit v5 assertThrows IteratorUtilsTest
   
   JUnit v5 assertThrows AbstractLinkedListTest
   
   JUnit v5 assertThrows SplitMapUtilsTest


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

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

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


Issue Time Tracking
---

Worklog Id: (was: 736916)
Time Spent: 2h 50m  (was: 2h 40m)

> Fully migrate Commons Collection to JUnit 5
> ---
>
> Key: COLLECTIONS-777
> URL: https://issues.apache.org/jira/browse/COLLECTIONS-777
> Project: Commons Collections
>  Issue Type: Improvement
>  Components: Core
>Reporter: Arturo Bernal
>Priority: Major
>  Time Spent: 2h 50m
>  Remaining Estimate: 0h
>
> The idea it's fully migrate Commons Collection to JUnit 5. This time i'll 
> split the work in sub-task in order to avoid PR with to many files



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Work logged] (COLLECTIONS-777) Fully migrate Commons Collection to JUnit 5

2022-03-04 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/COLLECTIONS-777?focusedWorklogId=736917=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-736917
 ]

ASF GitHub Bot logged work on COLLECTIONS-777:
--

Author: ASF GitHub Bot
Created on: 04/Mar/22 21:33
Start Date: 04/Mar/22 21:33
Worklog Time Spent: 10m 
  Work Description: nhojpatrick commented on pull request #287:
URL: 
https://github.com/apache/commons-collections/pull/287#issuecomment-1059547757


   Another set ready to be merged.


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

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

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


Issue Time Tracking
---

Worklog Id: (was: 736917)
Time Spent: 3h  (was: 2h 50m)

> Fully migrate Commons Collection to JUnit 5
> ---
>
> Key: COLLECTIONS-777
> URL: https://issues.apache.org/jira/browse/COLLECTIONS-777
> Project: Commons Collections
>  Issue Type: Improvement
>  Components: Core
>Reporter: Arturo Bernal
>Priority: Major
>  Time Spent: 3h
>  Remaining Estimate: 0h
>
> The idea it's fully migrate Commons Collection to JUnit 5. This time i'll 
> split the work in sub-task in order to avoid PR with to many files



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[GitHub] [commons-collections] nhojpatrick commented on pull request #287: COLLECTIONS-777 JUnit v5

2022-03-04 Thread GitBox


nhojpatrick commented on pull request #287:
URL: 
https://github.com/apache/commons-collections/pull/287#issuecomment-1059547757


   Another set ready to be merged.


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

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

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




[GitHub] [commons-collections] nhojpatrick opened a new pull request #287: COLLECTIONS-777 JUnit v5

2022-03-04 Thread GitBox


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


   JUnit v5 assertThrows BagUtilsTest
   
   JUnit v5 assertThrows ClosureUtilsTest
   
   JUnit v5 assertThrows FluentIterableTest
   
   JUnit v5 assertThrows IterableUtilsTest
   
   JUnit v5 assertThrows ListUtilsTest
   
   JUnit v5 assertThrows MapUtilsTest
   
   JUnit v5 assertThrows SetUtilsTest
   
   JUnit v5 assertThrows GrowthListTest
   
   JUnit v5 assertThrows BoundedIteratorTest
   
   JUnit v5 assertThrows CollectionUtilsTest
   
   JUnit v5 assertThrows IteratorUtilsTest
   
   JUnit v5 assertThrows AbstractLinkedListTest
   
   JUnit v5 assertThrows SplitMapUtilsTest


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

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

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




[GitHub] [commons-exec] garydgregory merged pull request #29: Bump maven-checkstyle-plugin from 2.13 to 3.1.2

2022-03-04 Thread GitBox


garydgregory merged pull request #29:
URL: https://github.com/apache/commons-exec/pull/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.

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

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




[GitHub] [commons-exec] garydgregory merged pull request #46: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory merged pull request #46:
URL: https://github.com/apache/commons-exec/pull/46


   


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

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

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




[GitHub] [commons-configuration] dependabot[bot] commented on pull request #160: Bump slf4j.version from 1.7.33 to 1.7.35

2022-03-04 Thread GitBox


dependabot[bot] commented on pull request #160:
URL: 
https://github.com/apache/commons-configuration/pull/160#issuecomment-1059499189


   Superseded by #166.


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

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

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




[GitHub] [commons-configuration] dependabot[bot] closed pull request #160: Bump slf4j.version from 1.7.33 to 1.7.35

2022-03-04 Thread GitBox


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


   


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

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

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




[GitHub] [commons-configuration] dependabot[bot] opened a new pull request #166: Bump slf4j.version from 1.7.33 to 1.7.36

2022-03-04 Thread GitBox


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


   Bumps `slf4j.version` from 1.7.33 to 1.7.36.
   Updates `slf4j-api` from 1.7.33 to 1.7.36
   
   Commits
   
   https://github.com/qos-ch/slf4j/commit/e9ee55cca93c2bf26f14482a9bdf961c750d2a56;>e9ee55c
 update timestamp before release
   https://github.com/qos-ch/slf4j/commit/3b6a92f66815605ce851671dd1d6e0758c29ed4c;>3b6a92f
 reproducible builds
   https://github.com/qos-ch/slf4j/commit/882502706063b460997a3c6018223018f36cecd3;>8825027
 prepare release 1.7.36, fix SLF4J-541
   https://github.com/qos-ch/slf4j/commit/561738747da5813b8a9d2e2ebd10f0128a78a960;>5617387
 add relase.sh
   https://github.com/qos-ch/slf4j/commit/02860b67ef7ff39fa9c7d98fd00da2ee913faeda;>02860b6
 prepare relase 1.7.35
   https://github.com/qos-ch/slf4j/commit/a622f5186a57188dab7f71651245eb91c6ac263b;>a622f51
 fix maven deploy issues
   https://github.com/qos-ch/slf4j/commit/26068bd4bf93fcbd00185ad986dc43b79aceeb4a;>26068bd
 slf4j no longer references log4j
   https://github.com/qos-ch/slf4j/commit/0a21ee1ac1daa2d8e077bec68815421dd7a7a54a;>0a21ee1
 replace references to slf4j-log4j12
   https://github.com/qos-ch/slf4j/commit/51b6d20b71de75f69ee68167afbf4073c1be7c31;>51b6d20
 prepare release 1.7.34
   https://github.com/qos-ch/slf4j/commit/d22943faedd5da8d0321cf60437796fb53618481;>d22943f
 relocate slf4j-log4j12 as slf4j-reload4j
   Additional commits viewable in https://github.com/qos-ch/slf4j/compare/v_1.7.33...v_1.7.36;>compare 
view
   
   
   
   
   Updates `slf4j-ext` from 1.7.33 to 1.7.36
   
   Commits
   
   https://github.com/qos-ch/slf4j/commit/e9ee55cca93c2bf26f14482a9bdf961c750d2a56;>e9ee55c
 update timestamp before release
   https://github.com/qos-ch/slf4j/commit/3b6a92f66815605ce851671dd1d6e0758c29ed4c;>3b6a92f
 reproducible builds
   https://github.com/qos-ch/slf4j/commit/882502706063b460997a3c6018223018f36cecd3;>8825027
 prepare release 1.7.36, fix SLF4J-541
   https://github.com/qos-ch/slf4j/commit/561738747da5813b8a9d2e2ebd10f0128a78a960;>5617387
 add relase.sh
   https://github.com/qos-ch/slf4j/commit/02860b67ef7ff39fa9c7d98fd00da2ee913faeda;>02860b6
 prepare relase 1.7.35
   https://github.com/qos-ch/slf4j/commit/a622f5186a57188dab7f71651245eb91c6ac263b;>a622f51
 fix maven deploy issues
   https://github.com/qos-ch/slf4j/commit/26068bd4bf93fcbd00185ad986dc43b79aceeb4a;>26068bd
 slf4j no longer references log4j
   https://github.com/qos-ch/slf4j/commit/0a21ee1ac1daa2d8e077bec68815421dd7a7a54a;>0a21ee1
 replace references to slf4j-log4j12
   https://github.com/qos-ch/slf4j/commit/51b6d20b71de75f69ee68167afbf4073c1be7c31;>51b6d20
 prepare release 1.7.34
   https://github.com/qos-ch/slf4j/commit/d22943faedd5da8d0321cf60437796fb53618481;>d22943f
 relocate slf4j-log4j12 as slf4j-reload4j
   Additional commits viewable in https://github.com/qos-ch/slf4j/compare/v_1.7.33...v_1.7.36;>compare 
view
   
   
   
   
   Updates `slf4j-log4j12` from 1.7.33 to 1.7.36
   
   Commits
   
   https://github.com/qos-ch/slf4j/commit/e9ee55cca93c2bf26f14482a9bdf961c750d2a56;>e9ee55c
 update timestamp before release
   https://github.com/qos-ch/slf4j/commit/3b6a92f66815605ce851671dd1d6e0758c29ed4c;>3b6a92f
 reproducible builds
   https://github.com/qos-ch/slf4j/commit/882502706063b460997a3c6018223018f36cecd3;>8825027
 prepare release 1.7.36, fix SLF4J-541
   https://github.com/qos-ch/slf4j/commit/561738747da5813b8a9d2e2ebd10f0128a78a960;>5617387
 add relase.sh
   https://github.com/qos-ch/slf4j/commit/02860b67ef7ff39fa9c7d98fd00da2ee913faeda;>02860b6
 prepare relase 1.7.35
   https://github.com/qos-ch/slf4j/commit/a622f5186a57188dab7f71651245eb91c6ac263b;>a622f51
 fix maven deploy issues
   https://github.com/qos-ch/slf4j/commit/26068bd4bf93fcbd00185ad986dc43b79aceeb4a;>26068bd
 slf4j no longer references log4j
   https://github.com/qos-ch/slf4j/commit/0a21ee1ac1daa2d8e077bec68815421dd7a7a54a;>0a21ee1
 replace references to slf4j-log4j12
   https://github.com/qos-ch/slf4j/commit/51b6d20b71de75f69ee68167afbf4073c1be7c31;>51b6d20
 prepare release 1.7.34
   https://github.com/qos-ch/slf4j/commit/d22943faedd5da8d0321cf60437796fb53618481;>d22943f
 relocate slf4j-log4j12 as slf4j-reload4j
   Additional commits viewable in https://github.com/qos-ch/slf4j/compare/v_1.7.33...v_1.7.36;>compare 
view
   
   
   
   
   Updates `slf4j-nop` from 1.7.33 to 1.7.36
   
   Commits
   
   https://github.com/qos-ch/slf4j/commit/e9ee55cca93c2bf26f14482a9bdf961c750d2a56;>e9ee55c
 update timestamp before release
   https://github.com/qos-ch/slf4j/commit/3b6a92f66815605ce851671dd1d6e0758c29ed4c;>3b6a92f
 reproducible builds
   https://github.com/qos-ch/slf4j/commit/882502706063b460997a3c6018223018f36cecd3;>8825027
 prepare release 1.7.36, fix SLF4J-541
   https://github.com/qos-ch/slf4j/commit/561738747da5813b8a9d2e2ebd10f0128a78a960;>5617387
 add relase.sh
   

[GitHub] [commons-configuration] garydgregory merged pull request #165: Bump spring.version from 5.3.15 to 5.3.16

2022-03-04 Thread GitBox


garydgregory merged pull request #165:
URL: https://github.com/apache/commons-configuration/pull/165


   


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

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

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




[GitHub] [commons-daemon] garydgregory merged pull request #40: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory merged pull request #40:
URL: https://github.com/apache/commons-daemon/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.

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

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




[GitHub] [commons-text] garydgregory merged pull request #304: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory merged pull request #304:
URL: https://github.com/apache/commons-text/pull/304


   


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

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

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




[GitHub] [commons-bcel] garydgregory merged pull request #116: Bump maven-pmd-plugin from 3.15.0 to 3.16.0

2022-03-04 Thread GitBox


garydgregory merged pull request #116:
URL: https://github.com/apache/commons-bcel/pull/116


   


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

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

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




[GitHub] [commons-bcel] garydgregory merged pull request #115: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory merged pull request #115:
URL: https://github.com/apache/commons-bcel/pull/115


   


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

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

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




[GitHub] [commons-text] dependabot[bot] opened a new pull request #304: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


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


   Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
   
   Release notes
   Sourced from https://github.com/actions/checkout/releases;>actions/checkout's 
releases.
   
   v3.0.0
   
   Update default runtime to node16
   
   v2.4.0
   
   Convert SSH URLs like org-ORG_ID@github.com: to 
https://github.com/ - https://github-redirect.dependabot.com/actions/checkout/pull/621;>pr
   
   v2.3.5
   Update dependencies
   v2.3.4
   
   https://github-redirect.dependabot.com/actions/checkout/pull/379;>Add 
missing awaits
   https://github-redirect.dependabot.com/actions/checkout/pull/360;>Swap to 
Environment Files
   
   v2.3.3
   
   https://github-redirect.dependabot.com/actions/checkout/pull/345;>Remove 
Unneeded commit information from build logs
   https://github-redirect.dependabot.com/actions/checkout/pull/326;>Add 
Licensed to verify third party dependencies
   
   v2.3.2
   https://github-redirect.dependabot.com/actions/checkout/pull/320;>Add 
Third Party License Information to Dist Files
   v2.3.1
   https://github-redirect.dependabot.com/actions/checkout/pull/284;>Fix 
default branch resolution for .wiki and when using SSH
   v2.3.0
   https://github-redirect.dependabot.com/actions/checkout/pull/278;>Fallback
 to the default branch
   v2.2.0
   https://github-redirect.dependabot.com/actions/checkout/pull/258;>Fetch 
all history for all tags and branches when fetch-depth=0
   v2.1.1
   Changes to support GHES (https://github-redirect.dependabot.com/actions/checkout/pull/236;>here
 and https://github-redirect.dependabot.com/actions/checkout/pull/248;>here)
   v2.1.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/191;>Group 
output
   https://github-redirect.dependabot.com/actions/checkout/pull/199;>Changes 
to support GHES alpha release
   https://github-redirect.dependabot.com/actions/checkout/pull/184;>Persist 
core.sshCommand for submodules
   https://github-redirect.dependabot.com/actions/checkout/pull/163;>Add 
support ssh
   https://github-redirect.dependabot.com/actions/checkout/pull/179;>Convert 
submodule SSH URL to HTTPS, when not using SSH
   https://github-redirect.dependabot.com/actions/checkout/pull/157;>Add 
submodule support
   https://github-redirect.dependabot.com/actions/checkout/pull/144;>Follow 
proxy settings
   https://github-redirect.dependabot.com/actions/checkout/pull/141;>Fix ref 
for pr closed event when a pr is merged
   https://github-redirect.dependabot.com/actions/checkout/pull/128;>Fix 
issue checking detached when git less than 2.22
   
   
   
   
   Changelog
   Sourced from https://github.com/actions/checkout/blob/main/CHANGELOG.md;>actions/checkout's
 changelog.
   
   Changelog
   v2.3.1
   
   https://github-redirect.dependabot.com/actions/checkout/pull/284;>Fix 
default branch resolution for .wiki and when using SSH
   
   v2.3.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/278;>Fallback
 to the default branch
   
   v2.2.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/258;>Fetch 
all history for all tags and branches when fetch-depth=0
   
   v2.1.1
   
   Changes to support GHES (https://github-redirect.dependabot.com/actions/checkout/pull/236;>here
 and https://github-redirect.dependabot.com/actions/checkout/pull/248;>here)
   
   v2.1.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/191;>Group 
output
   https://github-redirect.dependabot.com/actions/checkout/pull/199;>Changes 
to support GHES alpha release
   https://github-redirect.dependabot.com/actions/checkout/pull/184;>Persist 
core.sshCommand for submodules
   https://github-redirect.dependabot.com/actions/checkout/pull/163;>Add 
support ssh
   https://github-redirect.dependabot.com/actions/checkout/pull/179;>Convert 
submodule SSH URL to HTTPS, when not using SSH
   https://github-redirect.dependabot.com/actions/checkout/pull/157;>Add 
submodule support
   https://github-redirect.dependabot.com/actions/checkout/pull/144;>Follow 
proxy settings
   https://github-redirect.dependabot.com/actions/checkout/pull/141;>Fix ref 
for pr closed event when a pr is merged
   https://github-redirect.dependabot.com/actions/checkout/pull/128;>Fix 
issue checking detached when git less than 2.22
   
   v2.0.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/108;>Do not 
pass cred on command line
   https://github-redirect.dependabot.com/actions/checkout/pull/107;>Add 
input persist-credentials
   https://github-redirect.dependabot.com/actions/checkout/pull/104;>Fallback
 to REST API to download repo
   
   v2 (beta)
   
   Improved fetch performance
   
   The default behavior now fetches only the SHA being checked-out
   
   
   Script authenticated git commands
   
   Persists with.token in the local git config
   Enables your scripts to run authenticated git commands
   Post-job 

[GitHub] [commons-bcel] dependabot[bot] opened a new pull request #116: Bump maven-pmd-plugin from 3.15.0 to 3.16.0

2022-03-04 Thread GitBox


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


   Bumps [maven-pmd-plugin](https://github.com/apache/maven-pmd-plugin) from 
3.15.0 to 3.16.0.
   
   Release notes
   Sourced from https://github.com/apache/maven-pmd-plugin/releases;>maven-pmd-plugin's 
releases.
   
   3.16.0
    Bug Fixes
   
   https://issues.apache.org/jira/browse/MPMD-325;>[MPMD-325] 
Could not find class due to IncompatibleClassChangeError warning
   https://issues.apache.org/jira/browse/MPMD-324;>[MPMD-324] 
Ruleset URLs have hyphen replaced with forwardslash
   https://issues.apache.org/jira/browse/MPMD-323;>[MPMD-323] 
ResourceManager should use project base dir instead of pom location
   
    Build
   
   https://issues.apache.org/jira/browse/MPMD-328;>[MPMD-328] 
Shared GitHub Actions
   
    New features and improvements
   
   https://issues.apache.org/jira/browse/MPMD-327;>[MPMD-327] 
Upgrade to PMD 6.42.0
   
    Dependency updates
   
   https://issues.apache.org/jira/browse/MPMD-326;>[MPMD-326] 
Set Maven 3.1.1 as minimum version
   
   
   
   
   Commits
   
   https://github.com/apache/maven-pmd-plugin/commit/b8a794e37e4cb3bb986ce044f3ef8df0dd392ed1;>b8a794e
 [maven-release-plugin] prepare release maven-pmd-plugin-3.16.0
   https://github.com/apache/maven-pmd-plugin/commit/6fc39ec2428a9fd68319da39f89d2191ac3ad25b;>6fc39ec
 [MPMD-323] ResourceManager should use project base dir instead of pom
   https://github.com/apache/maven-pmd-plugin/commit/4eae72c6c6f394c0c65fc4994eead9d06a6544f2;>4eae72c
 [MPMD-324] Ruleset URLs have hyphen replaced with forwardslash
   https://github.com/apache/maven-pmd-plugin/commit/64e35f73c27107c192b33b856f549fa66953b305;>64e35f7
 Make maven core provided scope
   https://github.com/apache/maven-pmd-plugin/commit/1dd8d0007fcf5d48571b9483bd3865a57d8e5383;>1dd8d00
 [MPMD-327] Upgrade to PMD 6.42.0
   https://github.com/apache/maven-pmd-plugin/commit/fae45251df926bb2e91ac14914b374c5f0ed28ed;>fae4525
 [MPMD-327] Upgrade to PMD 6.41.0
   https://github.com/apache/maven-pmd-plugin/commit/80e8aabe537063ddb64887c4dc18ca6c91be19e8;>80e8aab
 (doc) Update README.md
   https://github.com/apache/maven-pmd-plugin/commit/3fffd9cc7c0bea9ddd8489c9a7b4fee264d2d2c0;>3fffd9c
 [MPMD-328] Shared Github Actions (https://github-redirect.dependabot.com/apache/maven-pmd-plugin/issues/48;>#48)
   https://github.com/apache/maven-pmd-plugin/commit/2175d5e3936d0f4718da6f890a442cfc60cd617e;>2175d5e
 [MPMD-327] Upgrade to PMD 6.40.0
   https://github.com/apache/maven-pmd-plugin/commit/b8ac1fbc41b2b7e69bb6d8c0a336119e8fdd2d26;>b8ac1fb
 [MPMD-327] Upgrade to PMD 6.39.0
   Additional commits viewable in https://github.com/apache/maven-pmd-plugin/compare/maven-pmd-plugin-3.15.0...maven-pmd-plugin-3.16.0;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-pmd-plugin=maven=3.15.0=3.16.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


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

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

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




[GitHub] [commons-bcel] dependabot[bot] opened a new pull request #115: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


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


   Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
   
   Release notes
   Sourced from https://github.com/actions/checkout/releases;>actions/checkout's 
releases.
   
   v3.0.0
   
   Update default runtime to node16
   
   v2.4.0
   
   Convert SSH URLs like org-ORG_ID@github.com: to 
https://github.com/ - https://github-redirect.dependabot.com/actions/checkout/pull/621;>pr
   
   v2.3.5
   Update dependencies
   v2.3.4
   
   https://github-redirect.dependabot.com/actions/checkout/pull/379;>Add 
missing awaits
   https://github-redirect.dependabot.com/actions/checkout/pull/360;>Swap to 
Environment Files
   
   v2.3.3
   
   https://github-redirect.dependabot.com/actions/checkout/pull/345;>Remove 
Unneeded commit information from build logs
   https://github-redirect.dependabot.com/actions/checkout/pull/326;>Add 
Licensed to verify third party dependencies
   
   v2.3.2
   https://github-redirect.dependabot.com/actions/checkout/pull/320;>Add 
Third Party License Information to Dist Files
   v2.3.1
   https://github-redirect.dependabot.com/actions/checkout/pull/284;>Fix 
default branch resolution for .wiki and when using SSH
   v2.3.0
   https://github-redirect.dependabot.com/actions/checkout/pull/278;>Fallback
 to the default branch
   v2.2.0
   https://github-redirect.dependabot.com/actions/checkout/pull/258;>Fetch 
all history for all tags and branches when fetch-depth=0
   v2.1.1
   Changes to support GHES (https://github-redirect.dependabot.com/actions/checkout/pull/236;>here
 and https://github-redirect.dependabot.com/actions/checkout/pull/248;>here)
   v2.1.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/191;>Group 
output
   https://github-redirect.dependabot.com/actions/checkout/pull/199;>Changes 
to support GHES alpha release
   https://github-redirect.dependabot.com/actions/checkout/pull/184;>Persist 
core.sshCommand for submodules
   https://github-redirect.dependabot.com/actions/checkout/pull/163;>Add 
support ssh
   https://github-redirect.dependabot.com/actions/checkout/pull/179;>Convert 
submodule SSH URL to HTTPS, when not using SSH
   https://github-redirect.dependabot.com/actions/checkout/pull/157;>Add 
submodule support
   https://github-redirect.dependabot.com/actions/checkout/pull/144;>Follow 
proxy settings
   https://github-redirect.dependabot.com/actions/checkout/pull/141;>Fix ref 
for pr closed event when a pr is merged
   https://github-redirect.dependabot.com/actions/checkout/pull/128;>Fix 
issue checking detached when git less than 2.22
   
   
   
   
   Changelog
   Sourced from https://github.com/actions/checkout/blob/main/CHANGELOG.md;>actions/checkout's
 changelog.
   
   Changelog
   v2.3.1
   
   https://github-redirect.dependabot.com/actions/checkout/pull/284;>Fix 
default branch resolution for .wiki and when using SSH
   
   v2.3.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/278;>Fallback
 to the default branch
   
   v2.2.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/258;>Fetch 
all history for all tags and branches when fetch-depth=0
   
   v2.1.1
   
   Changes to support GHES (https://github-redirect.dependabot.com/actions/checkout/pull/236;>here
 and https://github-redirect.dependabot.com/actions/checkout/pull/248;>here)
   
   v2.1.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/191;>Group 
output
   https://github-redirect.dependabot.com/actions/checkout/pull/199;>Changes 
to support GHES alpha release
   https://github-redirect.dependabot.com/actions/checkout/pull/184;>Persist 
core.sshCommand for submodules
   https://github-redirect.dependabot.com/actions/checkout/pull/163;>Add 
support ssh
   https://github-redirect.dependabot.com/actions/checkout/pull/179;>Convert 
submodule SSH URL to HTTPS, when not using SSH
   https://github-redirect.dependabot.com/actions/checkout/pull/157;>Add 
submodule support
   https://github-redirect.dependabot.com/actions/checkout/pull/144;>Follow 
proxy settings
   https://github-redirect.dependabot.com/actions/checkout/pull/141;>Fix ref 
for pr closed event when a pr is merged
   https://github-redirect.dependabot.com/actions/checkout/pull/128;>Fix 
issue checking detached when git less than 2.22
   
   v2.0.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/108;>Do not 
pass cred on command line
   https://github-redirect.dependabot.com/actions/checkout/pull/107;>Add 
input persist-credentials
   https://github-redirect.dependabot.com/actions/checkout/pull/104;>Fallback
 to REST API to download repo
   
   v2 (beta)
   
   Improved fetch performance
   
   The default behavior now fetches only the SHA being checked-out
   
   
   Script authenticated git commands
   
   Persists with.token in the local git config
   Enables your scripts to run authenticated git commands
   Post-job 

[GitHub] [commons-configuration] dependabot[bot] opened a new pull request #165: Bump spring.version from 5.3.15 to 5.3.16

2022-03-04 Thread GitBox


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


   Bumps `spring.version` from 5.3.15 to 5.3.16.
   Updates `spring-core` from 5.3.15 to 5.3.16
   
   Release notes
   Sourced from https://github.com/spring-projects/spring-framework/releases;>spring-core's
 releases.
   
   v5.3.16
   :star: New Features
   
   Deprecate SocketUtils https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/28052;>#28052
   Add convenience factory method for ManagedList, ManagedSet and 
ManagedMap https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/28026;>#28026
   Synthesized annotation toString() doesn't match non-synthesized 
annotation on Java 9+ https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/28015;>#28015
   Add support for strict JSON comparison in WebTestClient https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/27993;>#27993
   Improve log message when searching for default executor for async 
processing https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/27983;>#27983
   Inconsistent behaviour in spring-orm between 
EntityManagerFactoryUtils.closeEntityManager() and 
SessionFactoryUtils.closeSession() https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/27972;>#27972
   Spring AOP cannot generate proxy for lambda on Java 16+ https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/27971;>#27971
   RestTemplate reading Json prohibits JDK HttpClient connection reuse 
(keep-alive) https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/27969;>#27969
   Deprecate AsyncTaskExecutor.execute(Runnable task, long startTimeout) https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/27959;>#27959
   Add CacheErrorHandler implementation that logs exceptions rather than 
rethrowing them https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/27826;>#27826
   Support for CGLIB BeanMap utility on JDK 17 https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/27802;>#27802
   Avoid message listener recovery in case of persistence exceptions from 
external transaction manager https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/1807;>#1807
   
   :lady_beetle: Bug Fixes
   
   Fix CronExpression fails to calculate next execution on the day of 
daylight saving time https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/28044;>#28044
   CronExpression fails to calculate next execution on the day of daylight 
saving time https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/28038;>#28038
   Using recursive annotations in Kotlin causes stack overflow https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/28012;>#28012
   Add formatting for SockJS close GoAway frame to prevent infinite loop 
for xhr-polling and xhr-streaming transport https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/28000;>#28000
   Reflective method invocation does not detect interface method when 
interface is declared in a subclass (e.g. HashMap.HashIterator.hasNext) https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/27995;>#27995
   ReflectionUtils.USER_DECLARED_METHODS does not filter methods declared 
in java.lang.Object https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/27970;>#27970
   CronExpression doesn't handle Quartz weekday of month expressions 
correctly https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/27966;>#27966
   ServletServerHttpRequest getHeaders() throws IllegalArgumentException 
instead of ignoring invalid content type / https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/27957;>#27957
   PropertySourcesPlaceholderConfigurer ignores 
ignoreUnresolvablePlaceholders flag https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/27947;>#27947
   Fix regression in BeanPropertyRowMapper regarding underscore name https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/27941;>#27941
   WebClient corrupts binary data when trying to upload many files https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/27939;>#27939
   Spring fails to determine XML is XSD-based if DOCTYPE appears in a 
comment https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/27915;>#27915
   ResourceHttpRequestHandler with PathPatternParser cannot resolve 
resources with a jsessionid URL https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/27913;>#27913
   
   :notebook_with_decorative_cover: Documentation
   
   Improve documentation for uri(URI) method in WebTestClient regarding 
base URI 

[GitHub] [commons-configuration] garydgregory merged pull request #163: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory merged pull request #163:
URL: https://github.com/apache/commons-configuration/pull/163


   


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

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

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




[GitHub] [commons-net] dependabot[bot] commented on pull request #101: Bump ftpserver-core from 1.1.2 to 1.1.3

2022-03-04 Thread GitBox


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


   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


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

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

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




[GitHub] [commons-net] garydgregory closed pull request #101: Bump ftpserver-core from 1.1.2 to 1.1.3

2022-03-04 Thread GitBox


garydgregory closed pull request #101:
URL: https://github.com/apache/commons-net/pull/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.

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

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




[GitHub] [commons-net] garydgregory commented on pull request #101: Bump ftpserver-core from 1.1.2 to 1.1.3

2022-03-04 Thread GitBox


garydgregory commented on pull request #101:
URL: https://github.com/apache/commons-net/pull/101#issuecomment-1059302656


   1.1.3 BREAKS binary compatibility with 1.1.2:
   https://issues.apache.org/jira/browse/FTPSERVER-506
   Done differently.


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

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

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




[GitHub] [commons-configuration] dependabot[bot] closed pull request #153: Bump spotbugs-maven-plugin from 4.2.3 to 4.5.2.0

2022-03-04 Thread GitBox


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


   


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

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

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




[GitHub] [commons-configuration] dependabot[bot] commented on pull request #153: Bump spotbugs-maven-plugin from 4.2.3 to 4.5.2.0

2022-03-04 Thread GitBox


dependabot[bot] commented on pull request #153:
URL: 
https://github.com/apache/commons-configuration/pull/153#issuecomment-1059295310


   Superseded by #164.


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

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

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




[GitHub] [commons-configuration] dependabot[bot] opened a new pull request #164: Bump spotbugs-maven-plugin from 4.2.3 to 4.5.3.0

2022-03-04 Thread GitBox


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


   Bumps 
[spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin) from 
4.2.3 to 4.5.3.0.
   
   Release notes
   Sourced from https://github.com/spotbugs/spotbugs-maven-plugin/releases;>spotbugs-maven-plugin's
 releases.
   
   Spotbugs-maven-plugin 4.5.3.0
   
   Support spotbugs maven plugin 4.5.3.0
   Make maven scoped dependencies provided scope
   
   Spotbugs-maven-plugin 4.5.2.0
   
   Support spotbugs 4.5.2
   Fix deprecations from spotbugs 4.5.0
   
   Spotbugs-maven-plugin 4.5.0.0
   support for spotbugs 4.5.0
   Spotbugs-maven-plugin 4.4.2.2
   
   Use new base-parent pom with removal of undocumented maven url 
attributes that cause issues for users of older jfrog artifactory 
installations.
   
   Spotbugs-maven-plugin 4.4.2.1 Release
   
   Reworked version string to account for any patches we need to make to 
plugin that would otherwise case a diverge from spotbugs or require us to wait. 
 This is similar to how other plugins approach this such as lombok.  The first 
3 positions are reserved for the alignment with spotbugs.  The last position is 
for our patch revision level.  Normally this would be '0' but given we released 
4.4.2 already, it made sense to denote '1' so that it was clear there was a 
difference.
   This patch release addresses issues with resolution of the maven 
dependencies that resulted in a few regression libraries that had 
vulnerabilities.
   This patch further changed lowest maven from 3.2.5 to 3.3.9 but reality 
is that even 3.3.9 likely doesn't work.  Since all maven before 3.8.1 are 
vulnerable, most should be there.  If not, let us know.  Future releases will 
raise that revision number up.
   
   Spotbugs-maven-plugin 4.4.2 Release
   Added support for spotbugs 4.4.2
   Now running github actions on jdk 17 and 18-ea to show this works there
   Now running against maven 3.8.3
   Updated a number of plugins and dependencies
   Spotbugs-maven-plugin 4.4.1 Release
   
   Add support for Sarif
   Support spotbugs 4.4.1
   Library Updates
   
   
   
   
   Commits
   
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/ae3658622b8590836b7994801526c39e52f2e76f;>ae36586
 [maven-release-plugin] prepare release spotbugs-maven-plugin-4.5.3.0
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/03b7e0dae5375b33abc6f3f2cda80fa6824b4b9e;>03b7e0d
 Merge pull request https://github-redirect.dependabot.com/spotbugs/spotbugs-maven-plugin/issues/392;>#392
 from hazendaz/spotbugs
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/477b67e3277a419386c384830b831b59fd2bf188;>477b67e
 [pom] Bump spotbugs to 4.5.3
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/4c29db7bfa66552bc972eb70369d0c677e7de434;>4c29db7
 Merge pull request https://github-redirect.dependabot.com/spotbugs/spotbugs-maven-plugin/issues/390;>#390
 from hazendaz/spotbugs
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/7ceb76b9bb290eb393eea8f52eaced6cdc8281f5;>7ceb76b
 [actions] Adjust name for wrapper 3.3.9 usage and wrapper goal
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/15b5b51bb0d0c81d9cd84685354be31510fbe142;>15b5b51
 [actions] Add github action to run entirely through maven 3.3.9
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/fd7b8cc94f0f57d4a2d605f00ed609de16d0dd3c;>fd7b8cc
 Merge pull request https://github-redirect.dependabot.com/spotbugs/spotbugs-maven-plugin/issues/389;>#389
 from hazendaz/spotbugs
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/196b77ff23e457b82a0ea624c19bf0e8ae60d662;>196b77f
 [mvn] Update maven wrapper
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/15fff12958c4f97550313383852901d32ea2cecb;>15fff12
 Merge pull request https://github-redirect.dependabot.com/spotbugs/spotbugs-maven-plugin/issues/388;>#388
 from hazendaz/spotbugs
   https://github.com/spotbugs/spotbugs-maven-plugin/commit/6c0bb1e9c333c887d096747409d621d37933f943;>6c0bb1e
 Merge pull request https://github-redirect.dependabot.com/spotbugs/spotbugs-maven-plugin/issues/387;>#387
 from spotbugs/dependabot/maven/scmPluginVersion-1.12.2
   Additional commits viewable in https://github.com/spotbugs/spotbugs-maven-plugin/compare/spotbugs-maven-plugin-4.2.3...spotbugs-maven-plugin-4.5.3.0;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.github.spotbugs:spotbugs-maven-plugin=maven=4.2.3=4.5.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   

[GitHub] [commons-daemon] dependabot[bot] opened a new pull request #40: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


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


   Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
   
   Release notes
   Sourced from https://github.com/actions/checkout/releases;>actions/checkout's 
releases.
   
   v3.0.0
   
   Update default runtime to node16
   
   v2.4.0
   
   Convert SSH URLs like org-ORG_ID@github.com: to 
https://github.com/ - https://github-redirect.dependabot.com/actions/checkout/pull/621;>pr
   
   v2.3.5
   Update dependencies
   v2.3.4
   
   https://github-redirect.dependabot.com/actions/checkout/pull/379;>Add 
missing awaits
   https://github-redirect.dependabot.com/actions/checkout/pull/360;>Swap to 
Environment Files
   
   v2.3.3
   
   https://github-redirect.dependabot.com/actions/checkout/pull/345;>Remove 
Unneeded commit information from build logs
   https://github-redirect.dependabot.com/actions/checkout/pull/326;>Add 
Licensed to verify third party dependencies
   
   v2.3.2
   https://github-redirect.dependabot.com/actions/checkout/pull/320;>Add 
Third Party License Information to Dist Files
   v2.3.1
   https://github-redirect.dependabot.com/actions/checkout/pull/284;>Fix 
default branch resolution for .wiki and when using SSH
   v2.3.0
   https://github-redirect.dependabot.com/actions/checkout/pull/278;>Fallback
 to the default branch
   v2.2.0
   https://github-redirect.dependabot.com/actions/checkout/pull/258;>Fetch 
all history for all tags and branches when fetch-depth=0
   v2.1.1
   Changes to support GHES (https://github-redirect.dependabot.com/actions/checkout/pull/236;>here
 and https://github-redirect.dependabot.com/actions/checkout/pull/248;>here)
   v2.1.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/191;>Group 
output
   https://github-redirect.dependabot.com/actions/checkout/pull/199;>Changes 
to support GHES alpha release
   https://github-redirect.dependabot.com/actions/checkout/pull/184;>Persist 
core.sshCommand for submodules
   https://github-redirect.dependabot.com/actions/checkout/pull/163;>Add 
support ssh
   https://github-redirect.dependabot.com/actions/checkout/pull/179;>Convert 
submodule SSH URL to HTTPS, when not using SSH
   https://github-redirect.dependabot.com/actions/checkout/pull/157;>Add 
submodule support
   https://github-redirect.dependabot.com/actions/checkout/pull/144;>Follow 
proxy settings
   https://github-redirect.dependabot.com/actions/checkout/pull/141;>Fix ref 
for pr closed event when a pr is merged
   https://github-redirect.dependabot.com/actions/checkout/pull/128;>Fix 
issue checking detached when git less than 2.22
   
   
   
   
   Changelog
   Sourced from https://github.com/actions/checkout/blob/main/CHANGELOG.md;>actions/checkout's
 changelog.
   
   Changelog
   v2.3.1
   
   https://github-redirect.dependabot.com/actions/checkout/pull/284;>Fix 
default branch resolution for .wiki and when using SSH
   
   v2.3.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/278;>Fallback
 to the default branch
   
   v2.2.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/258;>Fetch 
all history for all tags and branches when fetch-depth=0
   
   v2.1.1
   
   Changes to support GHES (https://github-redirect.dependabot.com/actions/checkout/pull/236;>here
 and https://github-redirect.dependabot.com/actions/checkout/pull/248;>here)
   
   v2.1.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/191;>Group 
output
   https://github-redirect.dependabot.com/actions/checkout/pull/199;>Changes 
to support GHES alpha release
   https://github-redirect.dependabot.com/actions/checkout/pull/184;>Persist 
core.sshCommand for submodules
   https://github-redirect.dependabot.com/actions/checkout/pull/163;>Add 
support ssh
   https://github-redirect.dependabot.com/actions/checkout/pull/179;>Convert 
submodule SSH URL to HTTPS, when not using SSH
   https://github-redirect.dependabot.com/actions/checkout/pull/157;>Add 
submodule support
   https://github-redirect.dependabot.com/actions/checkout/pull/144;>Follow 
proxy settings
   https://github-redirect.dependabot.com/actions/checkout/pull/141;>Fix ref 
for pr closed event when a pr is merged
   https://github-redirect.dependabot.com/actions/checkout/pull/128;>Fix 
issue checking detached when git less than 2.22
   
   v2.0.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/108;>Do not 
pass cred on command line
   https://github-redirect.dependabot.com/actions/checkout/pull/107;>Add 
input persist-credentials
   https://github-redirect.dependabot.com/actions/checkout/pull/104;>Fallback
 to REST API to download repo
   
   v2 (beta)
   
   Improved fetch performance
   
   The default behavior now fetches only the SHA being checked-out
   
   
   Script authenticated git commands
   
   Persists with.token in the local git config
   Enables your scripts to run authenticated git commands
   Post-job 

[GitHub] [commons-configuration] dependabot[bot] opened a new pull request #163: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


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


   Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
   
   Release notes
   Sourced from https://github.com/actions/checkout/releases;>actions/checkout's 
releases.
   
   v3.0.0
   
   Update default runtime to node16
   
   v2.4.0
   
   Convert SSH URLs like org-ORG_ID@github.com: to 
https://github.com/ - https://github-redirect.dependabot.com/actions/checkout/pull/621;>pr
   
   v2.3.5
   Update dependencies
   v2.3.4
   
   https://github-redirect.dependabot.com/actions/checkout/pull/379;>Add 
missing awaits
   https://github-redirect.dependabot.com/actions/checkout/pull/360;>Swap to 
Environment Files
   
   v2.3.3
   
   https://github-redirect.dependabot.com/actions/checkout/pull/345;>Remove 
Unneeded commit information from build logs
   https://github-redirect.dependabot.com/actions/checkout/pull/326;>Add 
Licensed to verify third party dependencies
   
   v2.3.2
   https://github-redirect.dependabot.com/actions/checkout/pull/320;>Add 
Third Party License Information to Dist Files
   v2.3.1
   https://github-redirect.dependabot.com/actions/checkout/pull/284;>Fix 
default branch resolution for .wiki and when using SSH
   v2.3.0
   https://github-redirect.dependabot.com/actions/checkout/pull/278;>Fallback
 to the default branch
   v2.2.0
   https://github-redirect.dependabot.com/actions/checkout/pull/258;>Fetch 
all history for all tags and branches when fetch-depth=0
   v2.1.1
   Changes to support GHES (https://github-redirect.dependabot.com/actions/checkout/pull/236;>here
 and https://github-redirect.dependabot.com/actions/checkout/pull/248;>here)
   v2.1.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/191;>Group 
output
   https://github-redirect.dependabot.com/actions/checkout/pull/199;>Changes 
to support GHES alpha release
   https://github-redirect.dependabot.com/actions/checkout/pull/184;>Persist 
core.sshCommand for submodules
   https://github-redirect.dependabot.com/actions/checkout/pull/163;>Add 
support ssh
   https://github-redirect.dependabot.com/actions/checkout/pull/179;>Convert 
submodule SSH URL to HTTPS, when not using SSH
   https://github-redirect.dependabot.com/actions/checkout/pull/157;>Add 
submodule support
   https://github-redirect.dependabot.com/actions/checkout/pull/144;>Follow 
proxy settings
   https://github-redirect.dependabot.com/actions/checkout/pull/141;>Fix ref 
for pr closed event when a pr is merged
   https://github-redirect.dependabot.com/actions/checkout/pull/128;>Fix 
issue checking detached when git less than 2.22
   
   
   
   
   Changelog
   Sourced from https://github.com/actions/checkout/blob/main/CHANGELOG.md;>actions/checkout's
 changelog.
   
   Changelog
   v2.3.1
   
   https://github-redirect.dependabot.com/actions/checkout/pull/284;>Fix 
default branch resolution for .wiki and when using SSH
   
   v2.3.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/278;>Fallback
 to the default branch
   
   v2.2.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/258;>Fetch 
all history for all tags and branches when fetch-depth=0
   
   v2.1.1
   
   Changes to support GHES (https://github-redirect.dependabot.com/actions/checkout/pull/236;>here
 and https://github-redirect.dependabot.com/actions/checkout/pull/248;>here)
   
   v2.1.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/191;>Group 
output
   https://github-redirect.dependabot.com/actions/checkout/pull/199;>Changes 
to support GHES alpha release
   https://github-redirect.dependabot.com/actions/checkout/pull/184;>Persist 
core.sshCommand for submodules
   https://github-redirect.dependabot.com/actions/checkout/pull/163;>Add 
support ssh
   https://github-redirect.dependabot.com/actions/checkout/pull/179;>Convert 
submodule SSH URL to HTTPS, when not using SSH
   https://github-redirect.dependabot.com/actions/checkout/pull/157;>Add 
submodule support
   https://github-redirect.dependabot.com/actions/checkout/pull/144;>Follow 
proxy settings
   https://github-redirect.dependabot.com/actions/checkout/pull/141;>Fix ref 
for pr closed event when a pr is merged
   https://github-redirect.dependabot.com/actions/checkout/pull/128;>Fix 
issue checking detached when git less than 2.22
   
   v2.0.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/108;>Do not 
pass cred on command line
   https://github-redirect.dependabot.com/actions/checkout/pull/107;>Add 
input persist-credentials
   https://github-redirect.dependabot.com/actions/checkout/pull/104;>Fallback
 to REST API to download repo
   
   v2 (beta)
   
   Improved fetch performance
   
   The default behavior now fetches only the SHA being checked-out
   
   
   Script authenticated git commands
   
   Persists with.token in the local git config
   Enables your scripts to run authenticated git commands
   

[GitHub] [commons-net] garydgregory merged pull request #100: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory merged pull request #100:
URL: https://github.com/apache/commons-net/pull/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.

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

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




[GitHub] [commons-digester] garydgregory commented on pull request #24: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory commented on pull request #24:
URL: https://github.com/apache/commons-digester/pull/24#issuecomment-1059288304


   @dependabot rebase


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

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

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




[GitHub] [commons-dbcp] garydgregory merged pull request #173: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory merged pull request #173:
URL: https://github.com/apache/commons-dbcp/pull/173


   


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

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

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




[GitHub] [commons-dbcp] garydgregory merged pull request #174: Bump japicmp-maven-plugin from 0.15.6 to 0.15.7

2022-03-04 Thread GitBox


garydgregory merged pull request #174:
URL: https://github.com/apache/commons-dbcp/pull/174


   


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

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

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




[GitHub] [commons-lang] garydgregory commented on pull request #860: Bump checkstyle from 9.3 to 10.0

2022-03-04 Thread GitBox


garydgregory commented on pull request #860:
URL: https://github.com/apache/commons-lang/pull/860#issuecomment-1059278475


   Close: Requires Java 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.

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

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




[GitHub] [commons-lang] garydgregory closed pull request #860: Bump checkstyle from 9.3 to 10.0

2022-03-04 Thread GitBox


garydgregory closed pull request #860:
URL: https://github.com/apache/commons-lang/pull/860


   


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

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

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




[GitHub] [commons-lang] dependabot[bot] commented on pull request #860: Bump checkstyle from 9.3 to 10.0

2022-03-04 Thread GitBox


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


   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


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

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

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




[GitHub] [commons-lang] garydgregory merged pull request #861: Bump commons.pmd-impl.version from 6.42.0 to 6.43.0

2022-03-04 Thread GitBox


garydgregory merged pull request #861:
URL: https://github.com/apache/commons-lang/pull/861


   


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

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

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




[GitHub] [commons-codec] garydgregory commented on pull request #115: Bump checkstyle from 9.3 to 10.0

2022-03-04 Thread GitBox


garydgregory commented on pull request #115:
URL: https://github.com/apache/commons-codec/pull/115#issuecomment-1059276015


   Close: Requires Java 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.

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

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




[GitHub] [commons-codec] garydgregory closed pull request #115: Bump checkstyle from 9.3 to 10.0

2022-03-04 Thread GitBox


garydgregory closed pull request #115:
URL: https://github.com/apache/commons-codec/pull/115


   


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

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

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




[GitHub] [commons-codec] dependabot[bot] commented on pull request #115: Bump checkstyle from 9.3 to 10.0

2022-03-04 Thread GitBox


dependabot[bot] commented on pull request #115:
URL: https://github.com/apache/commons-codec/pull/115#issuecomment-1059276040


   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


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

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

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




[GitHub] [commons-codec] dependabot[bot] opened a new pull request #115: Bump checkstyle from 9.3 to 10.0

2022-03-04 Thread GitBox


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


   Bumps [checkstyle](https://github.com/checkstyle/checkstyle) from 9.3 to 
10.0.
   
   Release notes
   Sourced from https://github.com/checkstyle/checkstyle/releases;>checkstyle's 
releases.
   
   checkstyle-10.0
   https://checkstyle.org/releasenotes.html#Release_10.0;>https://checkstyle.org/releasenotes.html#Release_10.0
   
   
   
   Commits
   
   https://github.com/checkstyle/checkstyle/commit/f1ad267111dcdd9757594116b83174b92d1e40ca;>f1ad267
 [maven-release-plugin] prepare release checkstyle-10.0
   https://github.com/checkstyle/checkstyle/commit/b81031fbfb6535421f79e4f619c4bf217f59d800;>b81031f
 doc: release notes 10.0
   https://github.com/checkstyle/checkstyle/commit/6c8dbf3124c3df1b1acdbb2f63d8b78f86cf5b5d;>6c8dbf3
 Issue https://github-redirect.dependabot.com/checkstyle/checkstyle/issues/11345;>#11345:
 SuppressionsLoaderTest.loadFilterSet failing with SSLHandshakeE...
   https://github.com/checkstyle/checkstyle/commit/e292c079ced9ede7dfbc657e444208eca5b69538;>e292c07
 Issue https://github-redirect.dependabot.com/checkstyle/checkstyle/issues/10859;>#10859:
 FinalClass now exempts private-only ctor classes that are exten...
   https://github.com/checkstyle/checkstyle/commit/50a9a64b6d70aa722dcf754ad5d46e37784f5b05;>50a9a64
 supplemental: refactor FinalClassCheck to ease update for https://github-redirect.dependabot.com/checkstyle/checkstyle/issues/10859;>#10859
   https://github.com/checkstyle/checkstyle/commit/890e1f4ab44a2950b58af3a9fb976a8c21e6eff1;>890e1f4
 dependency: bump maven-project-info-reports-plugin from 3.2.1 to 3.2.2
   https://github.com/checkstyle/checkstyle/commit/3ef61de60c1ae93cf0d9a06c56ad84cfedeefa88;>3ef61de
 Issue https://github-redirect.dependabot.com/checkstyle/checkstyle/issues/6320;>#6320:
 add remove conditionals mutator for coding package
   https://github.com/checkstyle/checkstyle/commit/aec751dfba46e7ce6eae351cd93fde43f2cf3105;>aec751d
 dependency: bump nexus-staging-maven-plugin from 1.6.11 to 1.6.12
   https://github.com/checkstyle/checkstyle/commit/eeeb96e26a850133eba894d7ae7282560dd3ba0a;>eeeb96e
 minor: use java-11 api
   https://github.com/checkstyle/checkstyle/commit/7fbe7999c22f739f6ba25ef0d2ad9ee649aa5429;>7fbe799
 dependency: bump junit-pioneer from 1.6.0 to 1.6.1
   Additional commits viewable in https://github.com/checkstyle/checkstyle/compare/checkstyle-9.3...checkstyle-10.0;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.puppycrawl.tools:checkstyle=maven=9.3=10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


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

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

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




[GitHub] [commons-build-plugin] garydgregory merged pull request #58: Bump spotbugs-maven-plugin from 4.5.2.0 to 4.5.3.0

2022-03-04 Thread GitBox


garydgregory merged pull request #58:
URL: https://github.com/apache/commons-build-plugin/pull/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.

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

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




[GitHub] [commons-build-plugin] garydgregory merged pull request #60: Bump versions-maven-plugin from 2.8.1 to 2.9.0

2022-03-04 Thread GitBox


garydgregory merged pull request #60:
URL: https://github.com/apache/commons-build-plugin/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.

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

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




[GitHub] [commons-build-plugin] garydgregory merged pull request #59: Bump maven-plugin-tools-ant from 3.6.2 to 3.6.4

2022-03-04 Thread GitBox


garydgregory merged pull request #59:
URL: https://github.com/apache/commons-build-plugin/pull/59


   


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

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

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




[GitHub] [commons-build-plugin] garydgregory commented on pull request #58: Bump spotbugs-maven-plugin from 4.5.2.0 to 4.5.3.0

2022-03-04 Thread GitBox


garydgregory commented on pull request #58:
URL: 
https://github.com/apache/commons-build-plugin/pull/58#issuecomment-1059268265


   @dependabot rebase


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

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

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




[GitHub] [commons-build-plugin] dependabot[bot] commented on pull request #62: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


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


   Looks like actions/checkout is up-to-date now, so this is no longer needed.


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

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

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




[GitHub] [commons-build-plugin] dependabot[bot] closed pull request #62: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


dependabot[bot] closed pull request #62:
URL: https://github.com/apache/commons-build-plugin/pull/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.

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

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




[GitHub] [commons-build-plugin] garydgregory merged pull request #57: Bump spotbugs from 4.5.2 to 4.5.3

2022-03-04 Thread GitBox


garydgregory merged pull request #57:
URL: https://github.com/apache/commons-build-plugin/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.

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

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




[GitHub] [commons-jcs] garydgregory merged pull request #85: Bump log4j-api from 2.17.1 to 2.17.2

2022-03-04 Thread GitBox


garydgregory merged pull request #85:
URL: https://github.com/apache/commons-jcs/pull/85


   


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

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

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




[GitHub] [commons-jcs] garydgregory merged pull request #84: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory merged pull request #84:
URL: https://github.com/apache/commons-jcs/pull/84


   


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

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

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




[GitHub] [commons-cli] dependabot[bot] commented on pull request #94: Bump checkstyle from 9.3 to 10.0

2022-03-04 Thread GitBox


dependabot[bot] commented on pull request #94:
URL: https://github.com/apache/commons-cli/pull/94#issuecomment-1059260318


   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


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

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

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




[GitHub] [commons-cli] garydgregory merged pull request #93: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory merged pull request #93:
URL: https://github.com/apache/commons-cli/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.

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

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




[GitHub] [commons-cli] garydgregory commented on pull request #94: Bump checkstyle from 9.3 to 10.0

2022-03-04 Thread GitBox


garydgregory commented on pull request #94:
URL: https://github.com/apache/commons-cli/pull/94#issuecomment-1059260291


   Closing: Requires Java 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.

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

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




[GitHub] [commons-cli] garydgregory closed pull request #94: Bump checkstyle from 9.3 to 10.0

2022-03-04 Thread GitBox


garydgregory closed pull request #94:
URL: https://github.com/apache/commons-cli/pull/94


   


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

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

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




[GitHub] [commons-release-plugin] garydgregory closed pull request #104: Bump checkstyle from 9.3 to 10.0

2022-03-04 Thread GitBox


garydgregory closed pull request #104:
URL: https://github.com/apache/commons-release-plugin/pull/104


   


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

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

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




[GitHub] [commons-release-plugin] garydgregory commented on pull request #104: Bump checkstyle from 9.3 to 10.0

2022-03-04 Thread GitBox


garydgregory commented on pull request #104:
URL: 
https://github.com/apache/commons-release-plugin/pull/104#issuecomment-1059259499


   Closing: Requires Java 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.

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

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




[GitHub] [commons-release-plugin] dependabot[bot] commented on pull request #104: Bump checkstyle from 9.3 to 10.0

2022-03-04 Thread GitBox


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


   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


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

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

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




[GitHub] [commons-lang] dependabot[bot] opened a new pull request #861: Bump commons.pmd-impl.version from 6.42.0 to 6.43.0

2022-03-04 Thread GitBox


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


   Bumps `commons.pmd-impl.version` from 6.42.0 to 6.43.0.
   Updates `pmd-core` from 6.42.0 to 6.43.0
   
   Release notes
   Sourced from https://github.com/pmd/pmd/releases;>pmd-core's 
releases.
   
   PMD 6.43.0 (26-February-2022)
   26-February-2022 - 6.43.0
   The PMD team is pleased to announce PMD 6.43.0.
   This is a minor release.
   Table Of Contents
   
   https://github.com/pmd/pmd/blob/HEAD/#new-and-noteworthy;>New 
and noteworthy
   https://github.com/pmd/pmd/blob/HEAD/#fixed-issues;>Fixed 
Issues
   https://github.com/pmd/pmd/blob/HEAD/#api-changes;>API 
Changes
   
   https://github.com/pmd/pmd/blob/HEAD/#deprecated-api;>Deprecated 
API
   https://github.com/pmd/pmd/blob/HEAD/#internal-api;>Internal 
API
   https://github.com/pmd/pmd/blob/HEAD/#changed-api;>Changed 
API
   
   
   https://github.com/pmd/pmd/blob/HEAD/#external-contributions;>External 
Contributions
   https://github.com/pmd/pmd/blob/HEAD/#stats;>Stats
   
   New and noteworthy
   Fixed Issues
   
   core
   
   https://github-redirect.dependabot.com/pmd/pmd/issues/3427;>#3427: 
[core] Stop printing CLI usage text when exiting due to invalid parameters
   https://github-redirect.dependabot.com/pmd/pmd/issues/3768;>#3768: 
[core] SARIF formatter reports multiple locations when it should report 
multiple results
   
   
   doc
   
   https://github-redirect.dependabot.com/pmd/pmd/issues/2502;>#2502: 
[doc] Add floating table-of-contents (toc) on the right
   https://github-redirect.dependabot.com/pmd/pmd/pull/3807;>#3807: 
[doc] Document Ant Task parameter threads
   
   
   java
   
   https://github-redirect.dependabot.com/pmd/pmd/issues/3697;>#3698: 
[java] Parsing error with try-with-resources and qualified resource
   
   
   java-bestpractices
   
   https://github-redirect.dependabot.com/pmd/pmd/issues/3605;>#3605: 
[java] SwitchStmtsShouldHaveDefault triggered when default case is present
   
   
   java-codestyle
   
   https://github-redirect.dependabot.com/pmd/pmd/issues/278;>#278: 
[java] ConfusingTernary should treat != null as positive 
condition
   
   
   java-performance
   
   https://github-redirect.dependabot.com/pmd/pmd/issues/3374;>#3374: 
[java] UseStringBufferForStringAppends: Wrong example in documentation
   
   
   misc
   
   https://github-redirect.dependabot.com/pmd/pmd/issues/3759;>#3759: 
[lang-test] Upgrade dokka maven plugin to 1.4.32
   
   
   plsql
   
   https://github-redirect.dependabot.com/pmd/pmd/issues/3746;>#3746: 
[plsql] Parsing exception Less than or equal to/Greater than or equal 
to operators in DML statements
   
   
   
   API Changes
   Deprecated API
   Some API deprecations were performed in core PMD classes, to improve 
compatibility with PMD 7.
   
   Report: the constructor and other construction 
methods like addViolation or createReport
   RuleContext: all constructors, getters and 
setters. A new set
   of stable methods, matching those in PMD 7, was added to replace the 
addViolation
   
   
   
   ... (truncated)
   
   
   Commits
   
   https://github.com/pmd/pmd/commit/dd0ee6190b4e3a3f64a714ace0debd0a08e5070b;>dd0ee61
 [maven-release-plugin] prepare release pmd_releases/6.43.0
   https://github.com/pmd/pmd/commit/d9ce3057b89293e9f52fbb6f02913ee811e12357;>d9ce305
 Prepare pmd release 6.43.0
   https://github.com/pmd/pmd/commit/dd07a00f6a060cfe8edb4f7f63617ba1414598f1;>dd07a00
 Merge pull request https://github-redirect.dependabot.com/pmd/pmd/issues/3807;>#3807 
from adangel:doc-ant-threads
   https://github.com/pmd/pmd/commit/9a437b015a30f5ce4f09baef85e354666dd04224;>9a437b0
 Merge pull request https://github-redirect.dependabot.com/pmd/pmd/issues/3788;>#3788 
from
   https://github.com/pmd/pmd/commit/47901b75d299dd5e3bbf2bc37d0618b39d95094d;>47901b7
 Merge pull request https://github-redirect.dependabot.com/pmd/pmd/issues/3805;>#3805 
from oowekyala:issue3605-default-case
   https://github.com/pmd/pmd/commit/f36945572d0e82fdf8b50d77d65d82cd94c65f3c;>f369455
 Add https://github.com/karel1980;>@​karel1980 as a 
contributor
   https://github.com/pmd/pmd/commit/71f4fe7243370d2b36135c746d3076c1aa621bda;>71f4fe7
 [doc] Update release notes (https://github-redirect.dependabot.com/pmd/pmd/issues/3605;>#3605 https://github-redirect.dependabot.com/pmd/pmd/issues/3805;>#3805)
   https://github.com/pmd/pmd/commit/74516235dda0aac53c9a1d53b8804500d8614a63;>7451623
 [doc] Update release notes (https://github-redirect.dependabot.com/pmd/pmd/issues/3807;>#3807) 
[skip ci]
   https://github.com/pmd/pmd/commit/73940e2672b9117c5e9b719a5ccb6c1415366748;>73940e2
 [doc] Document Ant Task parameter threads
   https://github.com/pmd/pmd/commit/36134edda20e5685cff76e92309c80e8ee0e9f90;>36134ed
 Merge pull request https://github-redirect.dependabot.com/pmd/pmd/issues/3804;>#3804 
from JerritEic:issue2502-Add-floating-table-of-contents
   Additional commits viewable in 

[GitHub] [commons-dbutils] garydgregory closed pull request #107: Bump checkstyle from 9.2.1 to 10.0

2022-03-04 Thread GitBox


garydgregory closed pull request #107:
URL: https://github.com/apache/commons-dbutils/pull/107


   


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

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

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




[GitHub] [commons-dbutils] dependabot[bot] commented on pull request #107: Bump checkstyle from 9.2.1 to 10.0

2022-03-04 Thread GitBox


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


   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


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

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

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




[GitHub] [commons-dbutils] garydgregory commented on pull request #107: Bump checkstyle from 9.2.1 to 10.0

2022-03-04 Thread GitBox


garydgregory commented on pull request #107:
URL: https://github.com/apache/commons-dbutils/pull/107#issuecomment-1059257025


   Closing: Requires Java 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.

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

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




[GitHub] [commons-dbutils] garydgregory merged pull request #106: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory merged pull request #106:
URL: https://github.com/apache/commons-dbutils/pull/106


   


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

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

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




[GitHub] [commons-logging] garydgregory merged pull request #75: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory merged pull request #75:
URL: https://github.com/apache/commons-logging/pull/75


   


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

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

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




[GitHub] [commons-lang] dependabot[bot] opened a new pull request #860: Bump checkstyle from 9.3 to 10.0

2022-03-04 Thread GitBox


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


   Bumps [checkstyle](https://github.com/checkstyle/checkstyle) from 9.3 to 
10.0.
   
   Release notes
   Sourced from https://github.com/checkstyle/checkstyle/releases;>checkstyle's 
releases.
   
   checkstyle-10.0
   https://checkstyle.org/releasenotes.html#Release_10.0;>https://checkstyle.org/releasenotes.html#Release_10.0
   
   
   
   Commits
   
   https://github.com/checkstyle/checkstyle/commit/f1ad267111dcdd9757594116b83174b92d1e40ca;>f1ad267
 [maven-release-plugin] prepare release checkstyle-10.0
   https://github.com/checkstyle/checkstyle/commit/b81031fbfb6535421f79e4f619c4bf217f59d800;>b81031f
 doc: release notes 10.0
   https://github.com/checkstyle/checkstyle/commit/6c8dbf3124c3df1b1acdbb2f63d8b78f86cf5b5d;>6c8dbf3
 Issue https://github-redirect.dependabot.com/checkstyle/checkstyle/issues/11345;>#11345:
 SuppressionsLoaderTest.loadFilterSet failing with SSLHandshakeE...
   https://github.com/checkstyle/checkstyle/commit/e292c079ced9ede7dfbc657e444208eca5b69538;>e292c07
 Issue https://github-redirect.dependabot.com/checkstyle/checkstyle/issues/10859;>#10859:
 FinalClass now exempts private-only ctor classes that are exten...
   https://github.com/checkstyle/checkstyle/commit/50a9a64b6d70aa722dcf754ad5d46e37784f5b05;>50a9a64
 supplemental: refactor FinalClassCheck to ease update for https://github-redirect.dependabot.com/checkstyle/checkstyle/issues/10859;>#10859
   https://github.com/checkstyle/checkstyle/commit/890e1f4ab44a2950b58af3a9fb976a8c21e6eff1;>890e1f4
 dependency: bump maven-project-info-reports-plugin from 3.2.1 to 3.2.2
   https://github.com/checkstyle/checkstyle/commit/3ef61de60c1ae93cf0d9a06c56ad84cfedeefa88;>3ef61de
 Issue https://github-redirect.dependabot.com/checkstyle/checkstyle/issues/6320;>#6320:
 add remove conditionals mutator for coding package
   https://github.com/checkstyle/checkstyle/commit/aec751dfba46e7ce6eae351cd93fde43f2cf3105;>aec751d
 dependency: bump nexus-staging-maven-plugin from 1.6.11 to 1.6.12
   https://github.com/checkstyle/checkstyle/commit/eeeb96e26a850133eba894d7ae7282560dd3ba0a;>eeeb96e
 minor: use java-11 api
   https://github.com/checkstyle/checkstyle/commit/7fbe7999c22f739f6ba25ef0d2ad9ee649aa5429;>7fbe799
 dependency: bump junit-pioneer from 1.6.0 to 1.6.1
   Additional commits viewable in https://github.com/checkstyle/checkstyle/compare/checkstyle-9.3...checkstyle-10.0;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.puppycrawl.tools:checkstyle=maven=9.3=10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


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

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

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




[GitHub] [commons-lang] garydgregory merged pull request #859: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory merged pull request #859:
URL: https://github.com/apache/commons-lang/pull/859


   


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

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

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




[GitHub] [commons-codec] garydgregory merged pull request #114: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory merged pull request #114:
URL: https://github.com/apache/commons-codec/pull/114


   


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

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

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




[GitHub] [commons-rdf] garydgregory commented on pull request #60: Bump jaxb-api from 2.3.0 to 2.3.1

2022-03-04 Thread GitBox


garydgregory commented on pull request #60:
URL: https://github.com/apache/commons-rdf/pull/60#issuecomment-1059245683


   @dependabot rebase


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

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

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




[GitHub] [commons-rdf] garydgregory commented on pull request #58: Bump junit from 4.12 to 4.13.2

2022-03-04 Thread GitBox


garydgregory commented on pull request #58:
URL: https://github.com/apache/commons-rdf/pull/58#issuecomment-1059245835


   @dependabot rebase


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

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

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




[GitHub] [commons-rdf] garydgregory commented on pull request #72: Bump actions/cache from 2.1.4 to 2.1.7

2022-03-04 Thread GitBox


garydgregory commented on pull request #72:
URL: https://github.com/apache/commons-rdf/pull/72#issuecomment-1059245579


   @dependabot rebase


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

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

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




[GitHub] [commons-rdf] garydgregory commented on pull request #73: Bump jsonld-java from 0.11.1 to 0.13.4

2022-03-04 Thread GitBox


garydgregory commented on pull request #73:
URL: https://github.com/apache/commons-rdf/pull/73#issuecomment-1059245479


   @dependabot rebase


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

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

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




[GitHub] [commons-rdf] garydgregory commented on pull request #74: Bump org.apache.servicemix.bundles.xerces from 2.11.0_1 to 2.12.2_1

2022-03-04 Thread GitBox


garydgregory commented on pull request #74:
URL: https://github.com/apache/commons-rdf/pull/74#issuecomment-1059245371


   @dependabot rebase


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

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

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




[GitHub] [commons-rdf] garydgregory commented on pull request #75: Bump maven-pmd-plugin from 3.12.0 to 3.16.0

2022-03-04 Thread GitBox


garydgregory commented on pull request #75:
URL: https://github.com/apache/commons-rdf/pull/75#issuecomment-1059245263


   @dependabot rebase


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

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

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




[GitHub] [commons-rdf] garydgregory commented on pull request #76: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory commented on pull request #76:
URL: https://github.com/apache/commons-rdf/pull/76#issuecomment-1059245106


   @dependabot rebase


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

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

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




[GitHub] [commons-lang] dependabot[bot] opened a new pull request #859: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


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


   Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
   
   Release notes
   Sourced from https://github.com/actions/checkout/releases;>actions/checkout's 
releases.
   
   v3.0.0
   
   Update default runtime to node16
   
   v2.4.0
   
   Convert SSH URLs like org-ORG_ID@github.com: to 
https://github.com/ - https://github-redirect.dependabot.com/actions/checkout/pull/621;>pr
   
   v2.3.5
   Update dependencies
   v2.3.4
   
   https://github-redirect.dependabot.com/actions/checkout/pull/379;>Add 
missing awaits
   https://github-redirect.dependabot.com/actions/checkout/pull/360;>Swap to 
Environment Files
   
   v2.3.3
   
   https://github-redirect.dependabot.com/actions/checkout/pull/345;>Remove 
Unneeded commit information from build logs
   https://github-redirect.dependabot.com/actions/checkout/pull/326;>Add 
Licensed to verify third party dependencies
   
   v2.3.2
   https://github-redirect.dependabot.com/actions/checkout/pull/320;>Add 
Third Party License Information to Dist Files
   v2.3.1
   https://github-redirect.dependabot.com/actions/checkout/pull/284;>Fix 
default branch resolution for .wiki and when using SSH
   v2.3.0
   https://github-redirect.dependabot.com/actions/checkout/pull/278;>Fallback
 to the default branch
   v2.2.0
   https://github-redirect.dependabot.com/actions/checkout/pull/258;>Fetch 
all history for all tags and branches when fetch-depth=0
   v2.1.1
   Changes to support GHES (https://github-redirect.dependabot.com/actions/checkout/pull/236;>here
 and https://github-redirect.dependabot.com/actions/checkout/pull/248;>here)
   v2.1.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/191;>Group 
output
   https://github-redirect.dependabot.com/actions/checkout/pull/199;>Changes 
to support GHES alpha release
   https://github-redirect.dependabot.com/actions/checkout/pull/184;>Persist 
core.sshCommand for submodules
   https://github-redirect.dependabot.com/actions/checkout/pull/163;>Add 
support ssh
   https://github-redirect.dependabot.com/actions/checkout/pull/179;>Convert 
submodule SSH URL to HTTPS, when not using SSH
   https://github-redirect.dependabot.com/actions/checkout/pull/157;>Add 
submodule support
   https://github-redirect.dependabot.com/actions/checkout/pull/144;>Follow 
proxy settings
   https://github-redirect.dependabot.com/actions/checkout/pull/141;>Fix ref 
for pr closed event when a pr is merged
   https://github-redirect.dependabot.com/actions/checkout/pull/128;>Fix 
issue checking detached when git less than 2.22
   
   
   
   
   Changelog
   Sourced from https://github.com/actions/checkout/blob/main/CHANGELOG.md;>actions/checkout's
 changelog.
   
   Changelog
   v2.3.1
   
   https://github-redirect.dependabot.com/actions/checkout/pull/284;>Fix 
default branch resolution for .wiki and when using SSH
   
   v2.3.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/278;>Fallback
 to the default branch
   
   v2.2.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/258;>Fetch 
all history for all tags and branches when fetch-depth=0
   
   v2.1.1
   
   Changes to support GHES (https://github-redirect.dependabot.com/actions/checkout/pull/236;>here
 and https://github-redirect.dependabot.com/actions/checkout/pull/248;>here)
   
   v2.1.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/191;>Group 
output
   https://github-redirect.dependabot.com/actions/checkout/pull/199;>Changes 
to support GHES alpha release
   https://github-redirect.dependabot.com/actions/checkout/pull/184;>Persist 
core.sshCommand for submodules
   https://github-redirect.dependabot.com/actions/checkout/pull/163;>Add 
support ssh
   https://github-redirect.dependabot.com/actions/checkout/pull/179;>Convert 
submodule SSH URL to HTTPS, when not using SSH
   https://github-redirect.dependabot.com/actions/checkout/pull/157;>Add 
submodule support
   https://github-redirect.dependabot.com/actions/checkout/pull/144;>Follow 
proxy settings
   https://github-redirect.dependabot.com/actions/checkout/pull/141;>Fix ref 
for pr closed event when a pr is merged
   https://github-redirect.dependabot.com/actions/checkout/pull/128;>Fix 
issue checking detached when git less than 2.22
   
   v2.0.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/108;>Do not 
pass cred on command line
   https://github-redirect.dependabot.com/actions/checkout/pull/107;>Add 
input persist-credentials
   https://github-redirect.dependabot.com/actions/checkout/pull/104;>Fallback
 to REST API to download repo
   
   v2 (beta)
   
   Improved fetch performance
   
   The default behavior now fetches only the SHA being checked-out
   
   
   Script authenticated git commands
   
   Persists with.token in the local git config
   Enables your scripts to run authenticated git commands
   Post-job 

[GitHub] [commons-codec] dependabot[bot] opened a new pull request #114: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


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


   Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
   
   Release notes
   Sourced from https://github.com/actions/checkout/releases;>actions/checkout's 
releases.
   
   v3.0.0
   
   Update default runtime to node16
   
   v2.4.0
   
   Convert SSH URLs like org-ORG_ID@github.com: to 
https://github.com/ - https://github-redirect.dependabot.com/actions/checkout/pull/621;>pr
   
   v2.3.5
   Update dependencies
   v2.3.4
   
   https://github-redirect.dependabot.com/actions/checkout/pull/379;>Add 
missing awaits
   https://github-redirect.dependabot.com/actions/checkout/pull/360;>Swap to 
Environment Files
   
   v2.3.3
   
   https://github-redirect.dependabot.com/actions/checkout/pull/345;>Remove 
Unneeded commit information from build logs
   https://github-redirect.dependabot.com/actions/checkout/pull/326;>Add 
Licensed to verify third party dependencies
   
   v2.3.2
   https://github-redirect.dependabot.com/actions/checkout/pull/320;>Add 
Third Party License Information to Dist Files
   v2.3.1
   https://github-redirect.dependabot.com/actions/checkout/pull/284;>Fix 
default branch resolution for .wiki and when using SSH
   v2.3.0
   https://github-redirect.dependabot.com/actions/checkout/pull/278;>Fallback
 to the default branch
   v2.2.0
   https://github-redirect.dependabot.com/actions/checkout/pull/258;>Fetch 
all history for all tags and branches when fetch-depth=0
   v2.1.1
   Changes to support GHES (https://github-redirect.dependabot.com/actions/checkout/pull/236;>here
 and https://github-redirect.dependabot.com/actions/checkout/pull/248;>here)
   v2.1.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/191;>Group 
output
   https://github-redirect.dependabot.com/actions/checkout/pull/199;>Changes 
to support GHES alpha release
   https://github-redirect.dependabot.com/actions/checkout/pull/184;>Persist 
core.sshCommand for submodules
   https://github-redirect.dependabot.com/actions/checkout/pull/163;>Add 
support ssh
   https://github-redirect.dependabot.com/actions/checkout/pull/179;>Convert 
submodule SSH URL to HTTPS, when not using SSH
   https://github-redirect.dependabot.com/actions/checkout/pull/157;>Add 
submodule support
   https://github-redirect.dependabot.com/actions/checkout/pull/144;>Follow 
proxy settings
   https://github-redirect.dependabot.com/actions/checkout/pull/141;>Fix ref 
for pr closed event when a pr is merged
   https://github-redirect.dependabot.com/actions/checkout/pull/128;>Fix 
issue checking detached when git less than 2.22
   
   
   
   
   Changelog
   Sourced from https://github.com/actions/checkout/blob/main/CHANGELOG.md;>actions/checkout's
 changelog.
   
   Changelog
   v2.3.1
   
   https://github-redirect.dependabot.com/actions/checkout/pull/284;>Fix 
default branch resolution for .wiki and when using SSH
   
   v2.3.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/278;>Fallback
 to the default branch
   
   v2.2.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/258;>Fetch 
all history for all tags and branches when fetch-depth=0
   
   v2.1.1
   
   Changes to support GHES (https://github-redirect.dependabot.com/actions/checkout/pull/236;>here
 and https://github-redirect.dependabot.com/actions/checkout/pull/248;>here)
   
   v2.1.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/191;>Group 
output
   https://github-redirect.dependabot.com/actions/checkout/pull/199;>Changes 
to support GHES alpha release
   https://github-redirect.dependabot.com/actions/checkout/pull/184;>Persist 
core.sshCommand for submodules
   https://github-redirect.dependabot.com/actions/checkout/pull/163;>Add 
support ssh
   https://github-redirect.dependabot.com/actions/checkout/pull/179;>Convert 
submodule SSH URL to HTTPS, when not using SSH
   https://github-redirect.dependabot.com/actions/checkout/pull/157;>Add 
submodule support
   https://github-redirect.dependabot.com/actions/checkout/pull/144;>Follow 
proxy settings
   https://github-redirect.dependabot.com/actions/checkout/pull/141;>Fix ref 
for pr closed event when a pr is merged
   https://github-redirect.dependabot.com/actions/checkout/pull/128;>Fix 
issue checking detached when git less than 2.22
   
   v2.0.0
   
   https://github-redirect.dependabot.com/actions/checkout/pull/108;>Do not 
pass cred on command line
   https://github-redirect.dependabot.com/actions/checkout/pull/107;>Add 
input persist-credentials
   https://github-redirect.dependabot.com/actions/checkout/pull/104;>Fallback
 to REST API to download repo
   
   v2 (beta)
   
   Improved fetch performance
   
   The default behavior now fetches only the SHA being checked-out
   
   
   Script authenticated git commands
   
   Persists with.token in the local git config
   Enables your scripts to run authenticated git commands
   Post-job 

[jira] [Commented] (DAEMON-437) prunsrv: Better not to redirect stdout/stderr during service installation?

2022-03-04 Thread Gary D. Gregory (Jira)


[ 
https://issues.apache.org/jira/browse/DAEMON-437?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17501368#comment-17501368
 ] 

Gary D. Gregory commented on DAEMON-437:


I do like the idea of one log file. 

> prunsrv: Better not to redirect stdout/stderr during service installation?
> --
>
> Key: DAEMON-437
> URL: https://issues.apache.org/jira/browse/DAEMON-437
> Project: Commons Daemon
>  Issue Type: Bug
>  Components: prunsrv
>Affects Versions: 1.2.4
>Reporter: Rainer Jung
>Priority: Major
> Fix For: 1.2.5
>
>
> I observed the following behavior when using prunsrv:
> I call it with //IS//MyService and more arguments to install a Tomcat 
> service. Especially I use the default LocalSystem user as the user who will 
> run the installed service and the arguments:
>     --StdOutput auto ^
>     --StdError auto ^
> to redirect stdout and stderr to the default files.
> To install the service I use a user with Administrator privileges. Running 
> prunsrv to install the service now already creates the redirected stdout and 
> stderr files, but only writable by Administrator.
> When I start the service after this service installation, it can not write to 
> the redirected stdout and stderr files, because it runs as a lower privileged 
> LocalSystem account.
> Before calling redirectStdStreams() in apps/prunsrv/prunsrv.c, there is 
> already a special case if prunsrv was called with //TS (Run Service as 
> console application):
> 1692 /* In debug mode allways use console */
> 1693 if (lpCmdline->dwCmdIndex != 1)
> 1694 gStdwrap.szStdOutFilename = SO_STDOUTPUT;
> 1695 gStdwrap.szStdErrFilename = SO_STDERROR;
> 1696 }
> I wonder, whether it wouldn't be better to not set the redirection file names 
> for other dwCmdIndex values as well. Here's the list of indexes from the 
> source code:
>   76 L"RS",  /* 2 Run Service */
>   77 L"ES",  /* 3 Execute start */
>   78 L"SS",  /* 4 Stop Service */
>   79 L"US",  /* 5 Update Service parameters */
>   80 L"IS",  /* 6 Install Service */
>   81 L"DS",  /* 7 Delete Service */
>   82 L"?",   /* 8 Help */
>   83 L"VS",  /* 9 Version */
> IMHO 5-9 are candidates, maybe 4 and 3 as well. At least for those I would 
> expect that they were executed on the console and stdout/stderr would also be 
> expected there. But I might not be aware of use cases with other needs.
> The normal prunsrv log file does have the same permission problem. But since 
> it contains log info about what action had been done, I am not so sure, 
> whether one can simply write that to stdout instead. But maybe one could use 
> a different default file name line MyService.manage.2021-12-07.log instead of 
> MyService.2021-12-07.log for the above indexes. Not nice, but I don't have a 
> better idea yet.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[GitHub] [commons-vfs] garydgregory commented on pull request #243: JUnitj v5 more progression

2022-03-04 Thread GitBox


garydgregory commented on pull request #243:
URL: https://github.com/apache/commons-vfs/pull/243#issuecomment-1059216815


   @nhojpatrick Note that the tests are faiing.
   


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

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

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




[GitHub] [commons-vfs] garydgregory merged pull request #246: Bump hadoop.version from 3.3.1 to 3.3.2

2022-03-04 Thread GitBox


garydgregory merged pull request #246:
URL: https://github.com/apache/commons-vfs/pull/246


   


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

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

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




[GitHub] [commons-vfs] garydgregory merged pull request #245: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory merged pull request #245:
URL: https://github.com/apache/commons-vfs/pull/245


   


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

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

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




[GitHub] [commons-parent] garydgregory merged pull request #98: Bump maven-site-plugin from 3.10.0 to 3.11.0

2022-03-04 Thread GitBox


garydgregory merged pull request #98:
URL: https://github.com/apache/commons-parent/pull/98


   


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

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

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




[GitHub] [commons-parent] garydgregory merged pull request #97: Bump versions-maven-plugin from 2.8.1 to 2.9.0

2022-03-04 Thread GitBox


garydgregory merged pull request #97:
URL: https://github.com/apache/commons-parent/pull/97


   


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

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

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




[GitHub] [commons-parent] garydgregory merged pull request #96: Bump maven-javadoc-plugin from 3.3.1 to 3.3.2

2022-03-04 Thread GitBox


garydgregory merged pull request #96:
URL: https://github.com/apache/commons-parent/pull/96


   


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

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

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




[GitHub] [commons-parent] garydgregory merged pull request #95: Bump actions/checkout from 2.4.0 to 3

2022-03-04 Thread GitBox


garydgregory merged pull request #95:
URL: https://github.com/apache/commons-parent/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.

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

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




[GitHub] [commons-csv] garydgregory closed pull request #222: Bump checkstyle from 9.3 to 10.0

2022-03-04 Thread GitBox


garydgregory closed pull request #222:
URL: https://github.com/apache/commons-csv/pull/222


   


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

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

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




[GitHub] [commons-jexl] garydgregory commented on pull request #80: Bump checkstyle from 9.3 to 10.0

2022-03-04 Thread GitBox


garydgregory commented on pull request #80:
URL: https://github.com/apache/commons-jexl/pull/80#issuecomment-1059205690


   Closing: Requires Java 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.

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

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




[GitHub] [commons-jexl] garydgregory closed pull request #80: Bump checkstyle from 9.3 to 10.0

2022-03-04 Thread GitBox


garydgregory closed pull request #80:
URL: https://github.com/apache/commons-jexl/pull/80


   


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

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

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




[GitHub] [commons-jexl] dependabot[bot] commented on pull request #80: Bump checkstyle from 9.3 to 10.0

2022-03-04 Thread GitBox


dependabot[bot] commented on pull request #80:
URL: https://github.com/apache/commons-jexl/pull/80#issuecomment-1059205722


   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


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

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

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




[GitHub] [commons-jexl] garydgregory merged pull request #79: Bump actions/checkout from 2 to 3

2022-03-04 Thread GitBox


garydgregory merged pull request #79:
URL: https://github.com/apache/commons-jexl/pull/79


   


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

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

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




  1   2   >