(commons-daemon) branch master updated: Bump org.apache.commons:commons-parent from 71 to 72 #189

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-daemon.git


The following commit(s) were added to refs/heads/master by this push:
 new e5a9888Bump org.apache.commons:commons-parent from 71 to 72 
#189
e5a9888 is described below

commit e5a9888206d19cdb66fd27d4817d0883d320e402
Author: Gary Gregory 
AuthorDate: Fri Jul 26 20:56:01 2024 -0400

  Bump org.apache.commons:commons-parent from 71 to 72 #189
---
 src/changes/changes.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index da16b56..2b3e95f 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -47,6 +47,9 @@
   
 Remove autogenerated files and rely on autoreconf only.
   
+  
+Bump org.apache.commons:commons-parent from 71 to 72 #189.
+  
 
 
   



(commons-daemon) branch dependabot/maven/org.apache.commons-commons-parent-72 deleted (was 949ee43)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/maven/org.apache.commons-commons-parent-72
in repository https://gitbox.apache.org/repos/asf/commons-daemon.git


 was 949ee43  Bump org.apache.commons:commons-parent from 71 to 72

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-daemon) branch master updated: Bump org.apache.commons:commons-parent from 71 to 72 (#189)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-daemon.git


The following commit(s) were added to refs/heads/master by this push:
 new f7b94e7  Bump org.apache.commons:commons-parent from 71 to 72 (#189)
f7b94e7 is described below

commit f7b94e779db8c6090e19770333ba26a10a931f27
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 26 20:54:53 2024 -0400

Bump org.apache.commons:commons-parent from 71 to 72 (#189)

Bumps 
[org.apache.commons:commons-parent](https://github.com/apache/commons-parent) 
from 71 to 72.
- 
[Changelog](https://github.com/apache/commons-parent/blob/master/RELEASE-NOTES.txt)
- [Commits](https://github.com/apache/commons-parent/commits)

---
updated-dependencies:
- dependency-name: org.apache.commons:commons-parent
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index c744e2b..30bfca6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
   
 org.apache.commons
 commons-parent
-71
+72
   
   4.0.0
   commons-daemon



(commons-vfs) branch master updated: Simplify UriParser #558

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-vfs.git


The following commit(s) were added to refs/heads/master by this push:
 new 5bb72a56 Simplify UriParser #558
5bb72a56 is described below

commit 5bb72a560655294effe94d128d00f948e235a79c
Author: Gary Gregory 
AuthorDate: Fri Jul 26 20:44:38 2024 -0400

Simplify UriParser #558
---
 src/changes/changes.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 544934a4..4815a467 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -197,6 +197,9 @@ The  type attribute can be add,update,fix,remove.
   
 Fix or address PMD warnings UnnecessaryReturn, UnusedLocalVariable, 
UnnecessaryFullyQualifiedName, UnnecessaryImport, and so on.
   
+  
+Simplify UriParser #558.
+  
   
   
 Config option for trailing slash in webdav URI #425.



(commons-vfs) branch master updated: Simplify UriParser (#558)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-vfs.git


The following commit(s) were added to refs/heads/master by this push:
 new 83d815af Simplify UriParser (#558)
83d815af is described below

commit 83d815afad4057234d9f928f6f00701bb7b51e86
Author: Arnout Engelen 
AuthorDate: Sat Jul 27 02:43:24 2024 +0200

Simplify UriParser (#558)

* Simplify UriParser

The reverts https://github.com/apache/commons-vfs/pull/396 and related
changes and implements the same in a simpler way by replacing the
encoded characters already in `fixSeparators`.

This approach has a slightly higher risk at breaking existing behaviour,
but a lower risk of remaining problems in this part of the codebase. All
testcases still succeed.

This PR is intended to replace #543 and #555. It includes the testcases
from #543, adapted to the behaviour before #396.

This reverts commit cb45c9453669eb2570f582f491cb0e06b0e63466.
This reverts commit 5399c766287a06ce002beaed89fa8af5461e15d0.

Co-Authored-By: Anthony Goubard 

* Add benchmark for UriParser

-

Co-authored-by: Anthony Goubard 
---
 commons-vfs2/pom.xml   |  66 ++
 .../apache/commons/vfs2/provider/UriParser.java| 245 ++---
 .../java/org/apache/commons/vfs2/NamingTests.java  |   4 +
 .../commons/vfs2/provider/UriParserBenchmark.java  |  35 +++
 .../commons/vfs2/provider/UriParserTest.java   |  17 ++
 pom.xml|  13 ++
 6 files changed, 203 insertions(+), 177 deletions(-)

diff --git a/commons-vfs2/pom.xml b/commons-vfs2/pom.xml
index 3750a95f..891d8c35 100644
--- a/commons-vfs2/pom.xml
+++ b/commons-vfs2/pom.xml
@@ -140,6 +140,12 @@
   httpcore-nio
   test
 
+
+
+  org.openjdk.jmh
+  jmh-core
+  test
+
   
 
   
@@ -352,6 +358,66 @@
 
   
 
+
+
+  benchmark
+
+  
+true
+org.apache
+  
+
+  
+
+  org.openjdk.jmh
+  jmh-generator-annprocess
+  test
+
+  
+
+  
+
+  
+  
+maven-compiler-plugin
+${commons.compiler.version}
+
+  
+**/*
+  
+
+  
+  
+  
+org.codehaus.mojo
+exec-maven-plugin
+
+  
+benchmark
+test
+
+  exec
+
+
+  test
+  java
+  
+-classpath
+
+org.openjdk.jmh.Main
+-rf
+json
+-rff
+target/jmh-result.json
+${benchmark}
+  
+
+  
+
+  
+
+  
+
   
 
 
diff --git 
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/UriParser.java 
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/UriParser.java
index 22405a88..c3038b0f 100644
--- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/UriParser.java
+++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/UriParser.java
@@ -29,168 +29,6 @@ import org.apache.commons.vfs2.VFS;
  */
 public final class UriParser {
 
-private static class PathNormalizer {
-private final StringBuilder path;
-
-private int cursor;
-private int lastSeparator;
-private int end;
-
-PathNormalizer(final StringBuilder path) {
-this.path = path;
-end = path.length();
-}
-
-private boolean consumeSeparator() {
-final int from = cursor;
-if (readSeparator()) {
-path.delete(from, cursor);
-cursor = from;
-end = path.length();
-return true;
-}
-return false;
-}
-
-private void consumeSeparators() {
-boolean consuming = true;
-while (consuming) {
-consuming = consumeSeparator();
-}
-}
-
-private boolean readDot() {
-if (cursor == end) {
-return false;
-}
-if (path.charAt(cursor) == '.') {
-cursor++;
-return true;
-}
-if (cursor + 2 >= end) {
-return false;
-}
-final String sub = path.substring(cursor, cursor + 3);
-if (sub.equals("%2e") || sub.equals("%2E")) {
-cursor += 3;
-return true;
-}
- 

(commons-beanutils) branch master updated: Bump org.apache.commons:commons-parent from 71 to 72 #264

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git


The following commit(s) were added to refs/heads/master by this push:
 new 0efc7f86 Bump org.apache.commons:commons-parent from 71 to 72 #264
0efc7f86 is described below

commit 0efc7f86b8264fe917b96a8dd313dc4db1e51ee8
Author: Gary Gregory 
AuthorDate: Fri Jul 26 20:38:51 2024 -0400

Bump org.apache.commons:commons-parent from 71 to 72 #264
---
 src/changes/changes.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index a721a357..a0c64968 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -186,7 +186,7 @@
 Bump BC version from 1.9.3 to 1.9.4.
   
   
-Bump org.apache.commons:commons-parent from 50 to 71 #229, #245, #254.
+Bump org.apache.commons:commons-parent from 50 to 72 #229, #245, #254, 
#264.
   
   
 Bump biz.aQute.bndlib from 5.1.0 to 6.4.1 #29, #45, #79, #109, #119, 
#121, #147, #175.



(commons-beanutils) branch master updated: Bump org.apache.commons:commons-parent from 71 to 72 (#264)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git


The following commit(s) were added to refs/heads/master by this push:
 new d063235d Bump org.apache.commons:commons-parent from 71 to 72 (#264)
d063235d is described below

commit d063235dec337cbe1c1c919bd7e5c918514f8187
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 26 20:37:37 2024 -0400

Bump org.apache.commons:commons-parent from 71 to 72 (#264)

Bumps 
[org.apache.commons:commons-parent](https://github.com/apache/commons-parent) 
from 71 to 72.
- 
[Changelog](https://github.com/apache/commons-parent/blob/master/RELEASE-NOTES.txt)
- [Commits](https://github.com/apache/commons-parent/commits)

---
updated-dependencies:
- dependency-name: org.apache.commons:commons-parent
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 4d857571..20335506 100644
--- a/pom.xml
+++ b/pom.xml
@@ -19,7 +19,7 @@
   
 org.apache.commons
 commons-parent
-71
+72
   
   4.0.0
   commons-beanutils2



(commons-validator) branch dependabot/maven/org.apache.commons-commons-parent-72 deleted (was 766b92a1)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/maven/org.apache.commons-commons-parent-72
in repository https://gitbox.apache.org/repos/asf/commons-validator.git


 was 766b92a1 Bump org.apache.commons:commons-parent from 71 to 72

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-beanutils) branch dependabot/maven/org.apache.commons-commons-parent-72 deleted (was e87781c0)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/maven/org.apache.commons-commons-parent-72
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git


 was e87781c0 Bump org.apache.commons:commons-parent from 71 to 72

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-validator) branch master updated: Bump org.apache.commons:commons-parent from 71 to 72 #245

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-validator.git


The following commit(s) were added to refs/heads/master by this push:
 new a312024d Bump org.apache.commons:commons-parent from 71 to 72 #245
a312024d is described below

commit a312024de34a9d7e670c40da6b8bf18869cc3474
Author: Gary Gregory 
AuthorDate: Fri Jul 26 20:36:58 2024 -0400

Bump org.apache.commons:commons-parent from 71 to 72 #245
---
 src/changes/changes.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index a3de3bc9..9be37368 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -69,7 +69,7 @@ The  type attribute can be add,update,fix,remove.
   
   Add IBANValidator.Validator.getIbanLength(). 
   
-  Bump org.apache.commons:commons-parent from 70 to 71 #231.
+  Bump org.apache.commons:commons-parent from 70 to 72 #231, 
#245.
   Bump commons-logging:commons-logging from 1.3.2 to 1.3.3 
#238. 
   
   



(commons-validator) branch master updated (b293679a -> 09a9b43c)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-validator.git


from b293679a Merge pull request #244 from 
apache/dependabot/github_actions/ossf/scorecard-action-2.4.0
 add 766b92a1 Bump org.apache.commons:commons-parent from 71 to 72
 new 09a9b43c Merge pull request #245 from 
apache/dependabot/maven/org.apache.commons-commons-parent-72

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(commons-validator) 01/01: Merge pull request #245 from apache/dependabot/maven/org.apache.commons-commons-parent-72

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-validator.git

commit 09a9b43c616503fa9b5e2122c99c1adcc7b7a4c2
Merge: b293679a 766b92a1
Author: Gary Gregory 
AuthorDate: Fri Jul 26 20:36:19 2024 -0400

Merge pull request #245 from 
apache/dependabot/maven/org.apache.commons-commons-parent-72

Bump org.apache.commons:commons-parent from 71 to 72

 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(commons-validator) 01/01: Merge pull request #244 from apache/dependabot/github_actions/ossf/scorecard-action-2.4.0

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-validator.git

commit b293679a45de6988708dcb93e1337b764928e4eb
Merge: 65bcaae3 1e6a27c3
Author: Gary Gregory 
AuthorDate: Fri Jul 26 19:38:16 2024 -0400

Merge pull request #244 from 
apache/dependabot/github_actions/ossf/scorecard-action-2.4.0

Bump ossf/scorecard-action from 2.3.3 to 2.4.0

 .github/workflows/scorecards-analysis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)




(commons-beanutils) branch dependabot/github_actions/ossf/scorecard-action-2.4.0 deleted (was 09c29c24)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/github_actions/ossf/scorecard-action-2.4.0
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git


 was 09c29c24 Bump ossf/scorecard-action from 2.3.3 to 2.4.0

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-beanutils) branch master updated: Bump ossf/scorecard-action from 2.3.3 to 2.4.0 (#266)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git


The following commit(s) were added to refs/heads/master by this push:
 new 351f786f Bump ossf/scorecard-action from 2.3.3 to 2.4.0 (#266)
351f786f is described below

commit 351f786fbe9bdd1a5ab941c79cf3d71ec6aaa958
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 26 19:39:13 2024 -0400

Bump ossf/scorecard-action from 2.3.3 to 2.4.0 (#266)

Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) 
from 2.3.3 to 2.4.0.
- [Release notes](https://github.com/ossf/scorecard-action/releases)
- [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md)
- 
[Commits](https://github.com/ossf/scorecard-action/compare/dc50aa9510b46c811795eb24b2f1ba02a914e534...62b2cac7ed8198b15735ed49ab1e5cf35480ba46)

---
updated-dependencies:
- dependency-name: ossf/scorecard-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 .github/workflows/scorecards-analysis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/scorecards-analysis.yml 
b/.github/workflows/scorecards-analysis.yml
index c24d7272..3f708c15 100644
--- a/.github/workflows/scorecards-analysis.yml
+++ b/.github/workflows/scorecards-analysis.yml
@@ -45,7 +45,7 @@ jobs:
   persist-credentials: false
 
   - name: "Run analysis"
-uses: ossf/scorecard-action@dc50aa9510b46c811795eb24b2f1ba02a914e534   
 # 2.3.3
+uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46   
 # 2.4.0
 with:
   results_file: results.sarif
   results_format: sarif



(commons-beanutils) branch dependabot/github_actions/github/codeql-action-3.25.15 deleted (was dc8ebeeb)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/github_actions/github/codeql-action-3.25.15
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git


 was dc8ebeeb Bump github/codeql-action from 3.25.13 to 3.25.15

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-beanutils) branch master updated: Bump github/codeql-action from 3.25.13 to 3.25.15 (#265)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git


The following commit(s) were added to refs/heads/master by this push:
 new 045892f9 Bump github/codeql-action from 3.25.13 to 3.25.15 (#265)
045892f9 is described below

commit 045892f90fd2cdc4046704b5ae2abb680bae8baf
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 26 19:39:01 2024 -0400

Bump github/codeql-action from 3.25.13 to 3.25.15 (#265)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 
3.25.13 to 3.25.15.
- [Release notes](https://github.com/github/codeql-action/releases)
- 
[Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- 
[Commits](https://github.com/github/codeql-action/compare/2d790406f505036ef40ecba973cc774a50395aac...afb54ba388a7dca6ecae48f608c4ff05ff4cc77a)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 .github/workflows/scorecards-analysis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/scorecards-analysis.yml 
b/.github/workflows/scorecards-analysis.yml
index be23f070..c24d7272 100644
--- a/.github/workflows/scorecards-analysis.yml
+++ b/.github/workflows/scorecards-analysis.yml
@@ -64,6 +64,6 @@ jobs:
   retention-days: 5
 
   - name: "Upload to code-scanning"
-uses: 
github/codeql-action/upload-sarif@2d790406f505036ef40ecba973cc774a50395aac# 
3.25.13
+uses: 
github/codeql-action/upload-sarif@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a# 
3.25.15
 with:
   sarif_file: results.sarif



(commons-validator) branch master updated (65bcaae3 -> b293679a)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-validator.git


from 65bcaae3 Merge pull request #243 from 
apache/dependabot/github_actions/github/codeql-action-3.25.15
 add 1e6a27c3 Bump ossf/scorecard-action from 2.3.3 to 2.4.0
 new b293679a Merge pull request #244 from 
apache/dependabot/github_actions/ossf/scorecard-action-2.4.0

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/scorecards-analysis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(commons-validator) branch dependabot/github_actions/ossf/scorecard-action-2.4.0 deleted (was 1e6a27c3)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/github_actions/ossf/scorecard-action-2.4.0
in repository https://gitbox.apache.org/repos/asf/commons-validator.git


 was 1e6a27c3 Bump ossf/scorecard-action from 2.3.3 to 2.4.0

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-validator) branch dependabot/github_actions/github/codeql-action-3.25.15 deleted (was 318fca32)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/github_actions/github/codeql-action-3.25.15
in repository https://gitbox.apache.org/repos/asf/commons-validator.git


 was 318fca32 Bump github/codeql-action from 3.25.13 to 3.25.15

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-validator) branch master updated (53351590 -> 65bcaae3)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-validator.git


from 53351590 Normalize comments
 add 318fca32 Bump github/codeql-action from 3.25.13 to 3.25.15
 add 65bcaae3 Merge pull request #243 from 
apache/dependabot/github_actions/github/codeql-action-3.25.15

No new revisions were added by this update.

Summary of changes:
 .github/workflows/codeql-analysis.yml | 6 +++---
 .github/workflows/scorecards-analysis.yml | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)



(commons-vfs) branch master updated: Normalize comments

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-vfs.git


The following commit(s) were added to refs/heads/master by this push:
 new 3456710f Normalize comments
3456710f is described below

commit 3456710f8e05defd37cd924d4e3be8b17d65c436
Author: Gary Gregory 
AuthorDate: Fri Jul 26 18:46:37 2024 -0400

Normalize comments
---
 .../commons/vfs2/provider/sftp/SftpProviderStreamProxyModeTestCase.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/sftp/SftpProviderStreamProxyModeTestCase.java
 
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/sftp/SftpProviderStreamProxyModeTestCase.java
index 42e50ee2..b37b6070 100644
--- 
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/sftp/SftpProviderStreamProxyModeTestCase.java
+++ 
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/sftp/SftpProviderStreamProxyModeTestCase.java
@@ -30,7 +30,7 @@ import com.jcraft.jsch.TestIdentityRepositoryFactory;
 
 public class SftpProviderStreamProxyModeTestCase extends 
AbstractSftpProviderTestCase {
 
-// --- VFS-440: stream proxy test suite
+// VFS-440: stream proxy test suite
 // We override the addBaseTests method so that only
 // one test is run (we just test that the input/output are correctly 
forwarded, and
 // hence if the reading test succeeds/fails the other will also 
succeed/fail)



(commons-validator) branch master updated: Normalize comments

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-validator.git


The following commit(s) were added to refs/heads/master by this push:
 new 53351590 Normalize comments
53351590 is described below

commit 5335159022d750558c4e5a46028cc8467586b05b
Author: Gary Gregory 
AuthorDate: Fri Jul 26 18:46:19 2024 -0400

Normalize comments
---
 .../java/org/apache/commons/validator/routines/UrlValidatorTest.java| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/src/test/java/org/apache/commons/validator/routines/UrlValidatorTest.java 
b/src/test/java/org/apache/commons/validator/routines/UrlValidatorTest.java
index dac53c94..98953311 100644
--- a/src/test/java/org/apache/commons/validator/routines/UrlValidatorTest.java
+++ b/src/test/java/org/apache/commons/validator/routines/UrlValidatorTest.java
@@ -138,7 +138,7 @@ public class UrlValidatorTest {
 
 int[] testPartsIndex = { 0, 0, 0, 0, 0 };
 
-//  Test data for individual url parts 
+// Test data for individual url parts
 private final String[] schemes = { "http", "gopher", "g0-To+.", 
"not_valid" // TODO this will need to be dropped if the ctor validates schemes
 };
 



(commons-lang) 02/02: Remove useless comment prefix and postfix

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git

commit 126b33613999b0e6b2e931a4fdfbc1221ed530e0
Author: Gary Gregory 
AuthorDate: Fri Jul 26 18:44:31 2024 -0400

Remove useless comment prefix and postfix
---
 src/test/java/org/apache/commons/lang3/time/DateUtilsTest.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/test/java/org/apache/commons/lang3/time/DateUtilsTest.java 
b/src/test/java/org/apache/commons/lang3/time/DateUtilsTest.java
index 61c6e80d1..812290832 100644
--- a/src/test/java/org/apache/commons/lang3/time/DateUtilsTest.java
+++ b/src/test/java/org/apache/commons/lang3/time/DateUtilsTest.java
@@ -1606,13 +1606,13 @@ public class DateUtilsTest extends AbstractLangTest {
 assertEquals("2004-10-31 01:02:03.000 -06:00", 
format.format(oct31_01_02_03MDT), "Check 01:02:03.000");
 assertEquals("2004-10-31 01:02:03.004 -06:00", 
format.format(oct31_01_02_03_04MDT), "Check 01:02:03.004");
 
-// --- Demonstrate Problem ---
+// Demonstrate Problem
 final Calendar gval = Calendar.getInstance();
 gval.setTime(new Date(oct31_01MDT.getTime()));
 gval.set(Calendar.MINUTE, gval.get(Calendar.MINUTE)); // set 
minutes to the same value
 assertEquals(gval.getTime().getTime(), oct31_01MDT.getTime() + 
360L, "Demonstrate Problem");
 
-// -- Test Truncate --
+// Test Truncate
 assertEquals(oct31_01_02_03_04MDT, 
DateUtils.truncate(oct31_01_02_03_04MDT, Calendar.MILLISECOND),
 "Truncate Calendar.MILLISECOND");
 
@@ -1631,7 +1631,7 @@ public class DateUtilsTest extends AbstractLangTest {
 assertEquals(oct31MDT, DateUtils.truncate(oct31_01_02_03_04MDT, 
Calendar.DATE),
 "Truncate Calendar.DATE");
 
-// -- Test Round (down) --
+// Test Round (down)
 assertEquals(oct31_01_02_03_04MDT, 
DateUtils.round(oct31_01_02_03_04MDT, Calendar.MILLISECOND),
 "Round Calendar.MILLISECOND");
 



(commons-net) branch master updated: Normalize comments

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-net.git


The following commit(s) were added to refs/heads/master by this push:
 new f50c9440 Normalize comments
f50c9440 is described below

commit f50c944048d3a811b3a30f21ab19a5865c9cf198
Author: Gary Gregory 
AuthorDate: Fri Jul 26 18:45:44 2024 -0400

Normalize comments
---
 src/main/java/org/apache/commons/net/imap/IMAPClient.java | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/net/imap/IMAPClient.java 
b/src/main/java/org/apache/commons/net/imap/IMAPClient.java
index d1d52132..efab52f2 100644
--- a/src/main/java/org/apache/commons/net/imap/IMAPClient.java
+++ b/src/main/java/org/apache/commons/net/imap/IMAPClient.java
@@ -166,7 +166,7 @@ public class IMAPClient extends IMAP {
 UNSEEN
 }
 
-// - commands available in all states
+// commands available in all states
 
 /**
  * The status data items defined in RFC 3501.
@@ -188,7 +188,7 @@ public class IMAPClient extends IMAP {
 
 private static final String DQUOTE_S = "\"";
 
-// - commands available in the not-authenticated state
+// commands available in the not-authenticated state
 // STARTTLS skipped - see IMAPSClient.
 // AUTHENTICATE skipped - see AuthenticatingIMAPClient.
 
@@ -205,7 +205,7 @@ public class IMAPClient extends IMAP {
 return append(mailboxName, null, null);
 }
 
-// - commands available in the authenticated state
+// commands available in the authenticated state
 
 /**
  * Send an APPEND command to the server.
@@ -406,7 +406,7 @@ public class IMAPClient extends IMAP {
 return true;
 }
 
-// - commands available in the selected state
+// commands available in the selected state
 
 /**
  * Send a LOGOUT command to the server. To fully disconnect from the 
server you must call disconnect(). A logout attempt is valid in any state. If 
the



(commons-lang) 01/02: Remove useless comments

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git

commit 5a249d8da9fa7821835818a529ca8cec6801b271
Author: Gary Gregory 
AuthorDate: Fri Jul 26 18:43:36 2024 -0400

Remove useless comments
---
 src/test/java/org/apache/commons/lang3/HashSetvBitSetTest.java| 2 --
 .../java/org/apache/commons/lang3/text/ExtendedMessageFormatTest.java | 4 
 2 files changed, 6 deletions(-)

diff --git a/src/test/java/org/apache/commons/lang3/HashSetvBitSetTest.java 
b/src/test/java/org/apache/commons/lang3/HashSetvBitSetTest.java
index 0d3f25553..d5699ee06 100644
--- a/src/test/java/org/apache/commons/lang3/HashSetvBitSetTest.java
+++ b/src/test/java/org/apache/commons/lang3/HashSetvBitSetTest.java
@@ -46,8 +46,6 @@ public class HashSetvBitSetTest extends AbstractLangTest {
 }
 return result;
 }
-
-// --- utility methods
 private static int[] extractIndices(final HashSet coll) {
 final int[] result = new int[coll.size()];
 int i = 0;
diff --git 
a/src/test/java/org/apache/commons/lang3/text/ExtendedMessageFormatTest.java 
b/src/test/java/org/apache/commons/lang3/text/ExtendedMessageFormatTest.java
index e4127e295..06de86509 100644
--- a/src/test/java/org/apache/commons/lang3/text/ExtendedMessageFormatTest.java
+++ b/src/test/java/org/apache/commons/lang3/text/ExtendedMessageFormatTest.java
@@ -58,8 +58,6 @@ public class ExtendedMessageFormatTest extends 
AbstractLangTest {
 throw new UnsupportedOperationException();
 }
 }
-
-//  Test Format Factories ---
 /**
  * {@link FormatFactory} implementation for lower case format.
  */
@@ -324,8 +322,6 @@ public class ExtendedMessageFormatTest extends 
AbstractLangTest {
 assertEquals(emf.format(new Object[] {"there", 3, "great"}), "Hi 
there, got 3, GREAT!");
 }
 
-//  Test Formats 
-
 /**
  * Test equals() and hashCode().
  */



(commons-lang) branch master updated (7b7de5ffe -> 126b33613)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


from 7b7de5ffe Bump org.apache.commons:commons-parent from 71 to 72 #1253
 new 5a249d8da Remove useless comments
 new 126b33613 Remove useless comment prefix and postfix

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/test/java/org/apache/commons/lang3/HashSetvBitSetTest.java  | 2 --
 .../org/apache/commons/lang3/text/ExtendedMessageFormatTest.java| 4 
 src/test/java/org/apache/commons/lang3/time/DateUtilsTest.java  | 6 +++---
 3 files changed, 3 insertions(+), 9 deletions(-)



(commons-jcs) 01/03: Add Java 22 to the GitHub CI build

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jcs.git

commit 7a98c8bbf74ceb0cea267e3a31ab559a128de15a
Author: Gary Gregory 
AuthorDate: Fri Jul 26 18:41:21 2024 -0400

Add Java 22 to the GitHub CI build
---
 .github/workflows/maven.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index e1dea39d..8d501704 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -28,7 +28,7 @@ jobs:
 strategy:
   matrix:
 os: [ubuntu-latest, windows-latest, macos-latest]
-java: [ 17, 21 ]
+java: [ 17, 21, 22 ]
 experimental: [false]
 include:
   - java: 23-ea



(commons-jcs) branch master updated (4b755cf1 -> d3ea9374)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jcs.git


from 4b755cf1 Merge pull request #267 from 
apache/dependabot/github_actions/github/codeql-action-3.25.14
 new 7a98c8bb Add Java 22 to the GitHub CI build
 new f436a9ad Remove useless comments
 new d3ea9374 Merge branch 'master' of 
https://gitbox.apache.org/repos/asf/commons-jcs

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/maven.yml|  2 +-
 .../commons/jcs/auxiliary/javagroups/JavaGroupsCache.java  | 10 --
 .../jcs/auxiliary/javagroups/JavaGroupsCacheAttributes.java|  2 --
 .../commons/jcs/auxiliary/javagroups/JavaGroupsCache.java  | 10 --
 .../jcs/auxiliary/lateral/javagroups/LateralJGService.java |  2 --
 .../commons/jcs/engine/memory/lru/LHMLRUMemoryCache.java   |  4 
 .../apache/commons/jcs3/auxiliary/disk/AbstractDiskCache.java  |  4 
 .../apache/commons/jcs3/auxiliary/disk/PurgatoryElement.java   |  2 --
 .../engine/memory/AbstractDoubleLinkedListMemoryCache.java |  4 
 .../apache/commons/jcs3/engine/memory/AbstractMemoryCache.java |  2 --
 .../commons/jcs3/engine/memory/lru/LHMLRUMemoryCache.java  |  4 
 .../jcs/auxiliary/lateral/xmlrpc/LateralXMLRPCService.java |  2 --
 12 files changed, 1 insertion(+), 47 deletions(-)



(commons-jcs) 03/03: Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-jcs

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jcs.git

commit d3ea93740f659a32752c604143e4b033d86a9cb4
Merge: f436a9ad 4b755cf1
Author: Gary Gregory 
AuthorDate: Fri Jul 26 18:42:14 2024 -0400

Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-jcs

 .github/workflows/codeql-analysis.yml | 6 +++---
 .github/workflows/scorecards-analysis.yml | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)



(commons-jcs) 02/03: Remove useless comments

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jcs.git

commit f436a9ad3a58eee3bb145cd7b552d7e13858424f
Author: Gary Gregory 
AuthorDate: Fri Jul 26 18:41:31 2024 -0400

Remove useless comments
---
 .../commons/jcs/auxiliary/javagroups/JavaGroupsCache.java  | 10 --
 .../jcs/auxiliary/javagroups/JavaGroupsCacheAttributes.java|  2 --
 .../commons/jcs/auxiliary/javagroups/JavaGroupsCache.java  | 10 --
 .../jcs/auxiliary/lateral/javagroups/LateralJGService.java |  2 --
 .../commons/jcs/engine/memory/lru/LHMLRUMemoryCache.java   |  4 
 .../apache/commons/jcs3/auxiliary/disk/AbstractDiskCache.java  |  4 
 .../apache/commons/jcs3/auxiliary/disk/PurgatoryElement.java   |  2 --
 .../engine/memory/AbstractDoubleLinkedListMemoryCache.java |  4 
 .../apache/commons/jcs3/engine/memory/AbstractMemoryCache.java |  2 --
 .../commons/jcs3/engine/memory/lru/LHMLRUMemoryCache.java  |  4 
 .../jcs/auxiliary/lateral/xmlrpc/LateralXMLRPCService.java |  2 --
 11 files changed, 46 deletions(-)

diff --git 
a/auxiliary-builds/javagroups/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCache.java
 
b/auxiliary-builds/javagroups/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCache.java
index 6980e2d5..70d93130 100644
--- 
a/auxiliary-builds/javagroups/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCache.java
+++ 
b/auxiliary-builds/javagroups/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCache.java
@@ -128,8 +128,6 @@ public class JavaGroupsCache
 }
 }
 
-// --- interface AuxiliaryCache
-
 /**
  * Sends the provided element to all peers (connected to the same channel
  * and region name).
@@ -276,8 +274,6 @@ public class JavaGroupsCache
 return null;
 }
 
-// --- interface ICacheType
-
 /**
  * Gets the cache type (always Lateral).
  *
@@ -288,8 +284,6 @@ public class JavaGroupsCache
 return ICacheType.LATERAL_CACHE;
 }
 
-// --- interface RequestHandler
-
 /**
  * Handles a message from a peer. The message should contain a Request,
  * and depending on the command this will call localUpdate, localRemove,
@@ -342,8 +336,6 @@ public class JavaGroupsCache
 return null;
 }
 
-// --- interface MembershipListener
-
 public void viewAccepted( View view )
 {
 log.info( "View Changed: " + String.valueOf( view ) );
@@ -353,8 +345,6 @@ public class JavaGroupsCache
 
 public void block() { }
 
-// -- inner classes
-
 /**
  * Object for messages, wraps the command type (update, remove, or remove
  * all) and original cache element to distribute.
diff --git 
a/auxiliary-builds/javagroups/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCacheAttributes.java
 
b/auxiliary-builds/javagroups/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCacheAttributes.java
index b59c9047..c2f4389a 100644
--- 
a/auxiliary-builds/javagroups/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCacheAttributes.java
+++ 
b/auxiliary-builds/javagroups/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCacheAttributes.java
@@ -82,8 +82,6 @@ public class JavaGroupsCacheAttributes implements 
AuxiliaryCacheAttributes
 this.getFromPeers = getFromPeers;
 }
 
-// --- AuxiliaryCacheAttributes
-
 /**
  * Accessor for cacheName property.
  */
diff --git 
a/auxiliary-builds/jdk14/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCache.java
 
b/auxiliary-builds/jdk14/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCache.java
index 2994a070..fce44080 100644
--- 
a/auxiliary-builds/jdk14/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCache.java
+++ 
b/auxiliary-builds/jdk14/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCache.java
@@ -128,8 +128,6 @@ public class JavaGroupsCache
 }
 }
 
-// --- interface AuxiliaryCache
-
 /**
  * Sends the provided element to all peers (connected to the same channel
  * and region name).
@@ -285,8 +283,6 @@ public class JavaGroupsCache
 return null;
 }
 
-// --- interface ICacheType
-
 /**
  * Gets the cache type (always Lateral).
  *
@@ -297,8 +293,6 @@ public class JavaGroupsCache
 return ICacheType.LATERAL_CACHE;
 }
 
-// --- interface Requ

(commons-io) branch master updated: Remove useless comment prefix and postfix

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git


The following commit(s) were added to refs/heads/master by this push:
 new 7d5fb8981 Remove useless comment prefix and postfix
7d5fb8981 is described below

commit 7d5fb89811d2e2955111b66eefc0a29c28bb22d4
Author: Gary Gregory 
AuthorDate: Fri Jul 26 18:40:18 2024 -0400

Remove useless comment prefix and postfix
---
 .../java/org/apache/commons/io/input/ReversedLinesFileReader.java | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/io/input/ReversedLinesFileReader.java 
b/src/main/java/org/apache/commons/io/input/ReversedLinesFileReader.java
index cd883af9a..51ffb64ef 100644
--- a/src/main/java/org/apache/commons/io/input/ReversedLinesFileReader.java
+++ b/src/main/java/org/apache/commons/io/input/ReversedLinesFileReader.java
@@ -203,7 +203,7 @@ public class ReversedLinesFileReader implements Closeable {
 break; // skip last few bytes and leave it to the next 
file part
 }
 
-// --- check for newline ---
+// check for newline
 if ((newLineMatchByteCount = getNewLineMatchByteCount(data, 
i)) > 0 /* found newline */) {
 final int lineStart = i + 1;
 final int lineLengthBytes = currentLastBytePos - lineStart 
+ 1;
@@ -219,17 +219,17 @@ public class ReversedLinesFileReader implements Closeable 
{
 break; // found line
 }
 
-// --- move cursor ---
+// move cursor
 i -= byteDecrement;
 
-// --- end of file part handling ---
+// end of file part handling
 if (i < 0) {
 createLeftOver();
 break; // end of file part
 }
 }
 
-// --- last file part handling ---
+// last file part handling
 if (isLastFilePart && leftOver != null) {
 // there will be no line break anymore, this is the first line 
of the file
 line = new String(leftOver, charset);



(commons-fileupload) branch 1.x updated: Remove useless comments

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch 1.x
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git


The following commit(s) were added to refs/heads/1.x by this push:
 new 628a8af5 Remove useless comments
628a8af5 is described below

commit 628a8af510f847b162dcaa1843f0c39cd8b1fa36
Author: Gary Gregory 
AuthorDate: Fri Jul 26 18:38:59 2024 -0400

Remove useless comments
---
 .../org/apache/commons/fileupload/DefaultFileItem.java   |  2 --
 .../commons/fileupload/DefaultFileItemFactory.java   |  4 
 .../org/apache/commons/fileupload/DiskFileUpload.java|  8 
 .../java/org/apache/commons/fileupload/FileItem.java |  4 
 .../java/org/apache/commons/fileupload/FileUpload.java   |  6 --
 .../org/apache/commons/fileupload/FileUploadBase.java| 12 
 .../org/apache/commons/fileupload/MultipartStream.java   |  8 
 .../org/apache/commons/fileupload/disk/DiskFileItem.java | 16 
 .../commons/fileupload/disk/DiskFileItemFactory.java | 10 --
 .../commons/fileupload/portlet/PortletFileUpload.java|  6 --
 .../fileupload/portlet/PortletRequestContext.java|  8 
 .../commons/fileupload/servlet/ServletFileUpload.java|  6 --
 .../fileupload/servlet/ServletRequestContext.java|  6 --
 .../org/apache/commons/fileupload/FileUploadTest.java|  2 --
 14 files changed, 98 deletions(-)

diff --git a/src/main/java/org/apache/commons/fileupload/DefaultFileItem.java 
b/src/main/java/org/apache/commons/fileupload/DefaultFileItem.java
index f7e104bb..17dd4c12 100644
--- a/src/main/java/org/apache/commons/fileupload/DefaultFileItem.java
+++ b/src/main/java/org/apache/commons/fileupload/DefaultFileItem.java
@@ -39,8 +39,6 @@ import org.apache.commons.fileupload.disk.DiskFileItem;
 public class DefaultFileItem
 extends DiskFileItem {
 
-// --- Constructors
-
 /**
  * Constructs a new {@code DefaultFileItem} instance.
  *
diff --git 
a/src/main/java/org/apache/commons/fileupload/DefaultFileItemFactory.java 
b/src/main/java/org/apache/commons/fileupload/DefaultFileItemFactory.java
index 2d1f74f1..69feabbb 100644
--- a/src/main/java/org/apache/commons/fileupload/DefaultFileItemFactory.java
+++ b/src/main/java/org/apache/commons/fileupload/DefaultFileItemFactory.java
@@ -42,8 +42,6 @@ import org.apache.commons.fileupload.disk.DiskFileItemFactory;
 @Deprecated
 public class DefaultFileItemFactory extends DiskFileItemFactory {
 
-// --- Constructors
-
 /**
  * Constructs an unconfigured instance of this class. The resulting factory
  * may be configured by calling the appropriate setter methods.
@@ -71,8 +69,6 @@ public class DefaultFileItemFactory extends 
DiskFileItemFactory {
 super(sizeThreshold, repository);
 }
 
-// - Public Methods
-
 /**
  * Create a new {@link org.apache.commons.fileupload.DefaultFileItem}
  * instance from the supplied parameters and the local factory
diff --git a/src/main/java/org/apache/commons/fileupload/DiskFileUpload.java 
b/src/main/java/org/apache/commons/fileupload/DiskFileUpload.java
index 714c325f..c4a08a55 100644
--- a/src/main/java/org/apache/commons/fileupload/DiskFileUpload.java
+++ b/src/main/java/org/apache/commons/fileupload/DiskFileUpload.java
@@ -42,15 +42,11 @@ import javax.servlet.http.HttpServletRequest;
 public class DiskFileUpload
 extends FileUploadBase {
 
-// --- Data members
-
 /**
  * The factory to use to create new form items.
  */
 private DefaultFileItemFactory fileItemFactory;
 
-// --- Constructors
-
 /**
  * Constructs an instance of this class which uses the default factory to
  * create {@code FileItem} instances.
@@ -78,8 +74,6 @@ public class DiskFileUpload
 this.fileItemFactory = fileItemFactory;
 }
 
-// - Property accessors
-
 /**
  * Returns the factory class used when creating file items.
  *
@@ -167,8 +161,6 @@ public class DiskFileUpload
 fileItemFactory.setRepository(new File(repositoryPath));
 }
 
-// - Public methods
-
 /**
  * Processes an http://www.ietf.org/rfc/rfc1867.txt;>RFC 1867
  * compliant {@code multipart/form-data} stream. If files are stored
diff --git a/src/main/java/org/apache/commons/fileupload/FileItem.java 
b/src/main/java/org/apache/commons/fileupload/FileItem.java
index c2fb4e16..1dd23a65 100644
--- a/src/main/java/org/apache/commons/fileupload/FileItem.java
+++ b/src/main/java/org/apache/comm

(commons-dbcp) branch master updated: Remove useless comments

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-dbcp.git


The following commit(s) were added to refs/heads/master by this push:
 new 0b5ca3c5 Remove useless comments
 new bb89 Merge branch 'master' of 
https://gitbox.apache.org/repos/asf/commons-dbcp.git
0b5ca3c5 is described below

commit 0b5ca3c50716ca136a532f92dc56bd1fb91f0305
Author: Gary Gregory 
AuthorDate: Fri Jul 26 18:34:34 2024 -0400

Remove useless comments
---
 src/main/java/org/apache/commons/dbcp2/PoolingDataSource.java| 1 -
 src/test/java/org/apache/commons/dbcp2/TestAbandonedBasicDataSource.java | 1 -
 src/test/java/org/apache/commons/dbcp2/TestConnectionPool.java   | 1 -
 3 files changed, 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/dbcp2/PoolingDataSource.java 
b/src/main/java/org/apache/commons/dbcp2/PoolingDataSource.java
index 1f7c0aa0..4762107e 100644
--- a/src/main/java/org/apache/commons/dbcp2/PoolingDataSource.java
+++ b/src/main/java/org/apache/commons/dbcp2/PoolingDataSource.java
@@ -164,7 +164,6 @@ public class PoolingDataSource 
implements DataSource, Auto
 throw new UnsupportedOperationException();
 }
 
-// --- DataSource methods -
 
 /**
  * Throws {@link UnsupportedOperationException}.
diff --git 
a/src/test/java/org/apache/commons/dbcp2/TestAbandonedBasicDataSource.java 
b/src/test/java/org/apache/commons/dbcp2/TestAbandonedBasicDataSource.java
index bdaac780..0f6232a4 100644
--- a/src/test/java/org/apache/commons/dbcp2/TestAbandonedBasicDataSource.java
+++ b/src/test/java/org/apache/commons/dbcp2/TestAbandonedBasicDataSource.java
@@ -53,7 +53,6 @@ public class TestAbandonedBasicDataSource extends 
TestBasicDataSource {
 con.setLastUsed(Instant.EPOCH);
 }
 
-// -- Abandoned Test ---
 
 /**
  * Verifies that PreparedStatement executeXxx methods update lastUsed on 
the parent connection
diff --git a/src/test/java/org/apache/commons/dbcp2/TestConnectionPool.java 
b/src/test/java/org/apache/commons/dbcp2/TestConnectionPool.java
index 6376cca8..7f09aab9 100644
--- a/src/test/java/org/apache/commons/dbcp2/TestConnectionPool.java
+++ b/src/test/java/org/apache/commons/dbcp2/TestConnectionPool.java
@@ -232,7 +232,6 @@ public abstract class TestConnectionPool {
 /** Connections opened during the course of a test */
 protected final Stack connectionStack = new Stack<>();
 
-// --- Utility Methods -
 
 protected void assertBackPointers(final Connection conn, final Statement 
statement) throws SQLException {
 assertFalse(conn.isClosed());



(commons-beanutils) branch 1.X updated (496e6bf0 -> 06b33ee4)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 1.X
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git


from 496e6bf0 Use compact array declaration
 new 811a5a40 Adjust inline comment
 new 82d6f5d4 Use valueOf()
 new f862515f Use compact array declaration
 new 4b95675a Remove redundant call to super()
 new 69397525 Remove redundant call to super()
 new 38ce7b50 Remove redundant call to super()
 new f0ee2644 Use compact array declaration
 new 0b0bb39e Remove redundant call to super()
 new 031774eb Remove redundant call to super()
 new f54a878b Use valueOf()
 new 216d54e0 Remove redundant parentheses
 new b0aee36a Remove redundant modifier
 new f9208277 Remove redundant call to super()
 new 6e74cf80 Remove redundant parentheses
 new 5bb66757 Use diamonds
 new 9fbdd001 Add serialVersionUID
 new 29656090 Add @Override
 new 79450817 Add serialVersionUID
 new 9233e783 Add @Override
 new d3ae9374 Remove redundant call to super()
 new ee3ae9c3 Add serialVersionUID
 new 55e4be94 No need to nest
 new fff83e1e Use final
 new e2fa2e7f No need to nest
 new f0d77048 No need to nest
 new 82dc9cb0 No need to nest
 new a6e2d2f7 Remove redundant parentheses
 new ec60bc07 Use diamonds
 new 6efed213 Use valueOf()
 new 4edb5d1b Use valueOf()
 new 13126242 Use valueOf()
 new fca09c14 Use valueOf()
 new 8f69adb8 Use final
 new fe220635 Use valueOf()
 new c96584ff Use valueOf()
 new 071d786a Use diamonds
 new 3ab5a916 Remove redundant parentheses
 new f17ebf15 Remove redundant modifiers
 new 40e4b52f Use diamonds
 new 5ec1c848 Use diamonds
 new 0dbddaa6 Remove redundant parentheses
 new 080588d1 Remove redundant parentheses
 new 5108aedc Add serialVersionUID
 new e52617e8 Add serialVersionUID
 new 5b836b76 Use valueOf()
 new cb6ed2b8 Use compact array declaration
 new a6f5038b Use diamonds
 new 24520686 Add serialVersionUID
 new bd4f9764 Add serialVersionUID
 new ca674814 Add serialVersionUID
 new 9ad5c7bb Remove redundant parentheses
 new bc9bbec8 Add @Override
 new bdd97c7a Add @Override
 new fd886a80 Remove redundant parentheses
 new 06b33ee4 Add comment and generic

The 55 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../apache/commons/beanutils/BasicDynaBean.java|  60 ++--
 .../java/org/apache/commons/beanutils/BeanMap.java |   4 +-
 .../apache/commons/beanutils/BeanUtilsBean.java|  28 +-
 .../org/apache/commons/beanutils/DynaProperty.java |   3 +-
 .../beanutils/MappedPropertyDescriptor.java|  16 +-
 .../org/apache/commons/beanutils/MethodUtils.java  |   2 +-
 .../apache/commons/beanutils/MutableDynaClass.java |  12 +-
 .../commons/beanutils/NestedNullException.java |   3 +-
 .../apache/commons/beanutils/PropertyUtils.java|  14 +-
 .../commons/beanutils/PropertyUtilsBean.java   | 384 -
 .../commons/beanutils/ResultSetDynaClass.java  |   7 +-
 .../commons/beanutils/ResultSetIterator.java   |  18 +-
 .../apache/commons/beanutils/RowSetDynaClass.java  |  10 +-
 .../SuppressPropertiesBeanIntrospector.java|   3 +-
 .../apache/commons/beanutils/WeakFastHashMap.java  | 210 +--
 .../org/apache/commons/beanutils/WrapDynaBean.java |  26 +-
 .../apache/commons/beanutils/WrapDynaClass.java|  30 +-
 .../beanutils/converters/NumberConverter.java  |  46 ++-
 .../beanutils/converters/ShortArrayConverter.java  |  23 +-
 .../beanutils/converters/SqlDateConverter.java |   1 -
 .../beanutils/converters/SqlTimeConverter.java |   1 -
 .../converters/SqlTimestampConverter.java  |   1 -
 .../beanutils/converters/StringArrayConverter.java |  20 +-
 .../beanutils/converters/StringConverter.java  |   1 -
 .../commons/beanutils/converters/URLConverter.java |   1 -
 .../locale/converters/ShortLocaleConverter.java|   2 +-
 .../locale/converters/StringLocaleConverter.java   |  16 +-
 .../commons/beanutils/MappedPropertyTestBean.java  |  10 +-
 .../commons/beanutils/MappedPropertyTestCase.java  |   2 +-
 .../beanutils/MappedPropertyTestInterface.java |   4 +-
 .../commons/beanutils/MethodUtilsTestCase.java |  24 +-
 .../apache/commons/beanutils/NestedTestBean.java   |   2 +-
 .../commons/beanutils/PassTestException.java   |   2 +
 .../commons/beanutils/PropertyUtilsBenchCase.java  |  18 +-
 .../commons/beanutils/PropertyUtilsTestCase.java   | 197 +--
 ...SuppressPropertiesBeanIntrospectorTestCase.java |  11 +-
 .../org/apache/commons/beanutils/TestBean.java |  74 ++--
 .../commons/beanutils/TestBeanPackag

(commons-configuration) branch master updated (9df67327 -> 09f8f226)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-configuration.git


from 9df67327 Bump github/codeql-action from 3.25.13 to 3.25.15 (#452)
 add 09f8f226 Bump org.apache.commons:commons-parent from 71 to 72 (#453)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(commons-configuration) branch master updated: Bump org.apache.commons:commons-parent from 71 to 72 #453

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-configuration.git


The following commit(s) were added to refs/heads/master by this push:
 new d202a017 Bump org.apache.commons:commons-parent from 71 to 72 #453
d202a017 is described below

commit d202a01751850a179745578c49c05fb4718eac5f
Author: Gary Gregory 
AuthorDate: Fri Jul 26 18:03:41 2024 -0400

Bump org.apache.commons:commons-parent from 71 to 72 #453
---
 src/changes/changes.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 52fe52ce..705560c1 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -33,7 +33,7 @@
   
   Add 
PrefixedKeysIterator.toString() to package-private 
PrefixedKeysIterator. 
   
-  Bump org.apache.commons:commons-parent from 70 to 71 #434.
+  Bump org.apache.commons:commons-parent from 70 to 72 #434, 
#453.
   Bump commons-logging:commons-logging from 1.3.2 to 1.3.3 
#442.
   Bump com.fasterxml.jackson.core:jackson-databind from 2.17.1 to 
2.17.2 #447.
   Bump commons-codec:commons-codec from 1.17.0 to 1.17.1 
#449.



(commons-configuration) branch dependabot/maven/org.apache.commons-commons-parent-72 deleted (was 684edbf4)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/maven/org.apache.commons-commons-parent-72
in repository https://gitbox.apache.org/repos/asf/commons-configuration.git


 was 684edbf4 Bump org.apache.commons:commons-parent from 71 to 72

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-lang) branch master updated: Bump org.apache.commons:commons-parent from 71 to 72 #1253

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


The following commit(s) were added to refs/heads/master by this push:
 new 7b7de5ffe Bump org.apache.commons:commons-parent from 71 to 72 #1253
7b7de5ffe is described below

commit 7b7de5ffe162aad0dcb1cf529218dea86f803408
Author: Gary Gregory 
AuthorDate: Fri Jul 26 18:02:32 2024 -0400

Bump org.apache.commons:commons-parent from 71 to 72 #1253
---
 src/changes/changes.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 8f96ce2bc..fc9a001f1 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -62,6 +62,7 @@ The  type attribute can be add,update,fix,remove.
 Add RandomStringUtils.secure().
 Add RandomStringUtils.insecure().
 
+Bump org.apache.commons:commons-parent from 71 to 72 
#1253.
   
   
 



(commons-lang) branch dependabot/maven/org.apache.commons-commons-parent-72 deleted (was 9241a6027)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/maven/org.apache.commons-commons-parent-72
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


 was 9241a6027 Bump org.apache.commons:commons-parent from 71 to 72

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-lang) branch master updated: Bump org.apache.commons:commons-parent from 71 to 72 (#1253)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


The following commit(s) were added to refs/heads/master by this push:
 new 3bcf91d2c Bump org.apache.commons:commons-parent from 71 to 72 (#1253)
3bcf91d2c is described below

commit 3bcf91d2cdf4b55a6877f4c92f5b0d3a043d5042
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 26 18:01:34 2024 -0400

Bump org.apache.commons:commons-parent from 71 to 72 (#1253)

Bumps 
[org.apache.commons:commons-parent](https://github.com/apache/commons-parent) 
from 71 to 72.
- 
[Changelog](https://github.com/apache/commons-parent/blob/master/RELEASE-NOTES.txt)
- [Commits](https://github.com/apache/commons-parent/commits)

---
updated-dependencies:
- dependency-name: org.apache.commons:commons-parent
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index b5a1c4681..606ad0c39 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
   
 org.apache.commons
 commons-parent
-71
+72
   
   4.0.0
   commons-lang3



(commons-exec) branch master updated: Bump org.apache.commons:commons-parent from 71 to 72 #204

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-exec.git


The following commit(s) were added to refs/heads/master by this push:
 new 7b32de54 Bump org.apache.commons:commons-parent from 71 to 72 #204
7b32de54 is described below

commit 7b32de542848931d1c7a93ac162e4b91fb415322
Author: Gary Gregory 
AuthorDate: Fri Jul 26 18:01:00 2024 -0400

Bump org.apache.commons:commons-parent from 71 to 72 #204
---
 src/changes/changes.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 1bbe0a52..2a30ae76 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -34,7 +34,7 @@
 Fix PMD 
EmptyCatchBlock by allowing commented blocks.
 Fix PMD 
EmptyControlStatement by allowing commented blocks.
 
-Bump org.apache.commons:commons-parent from 65 to 71 #174.
+Bump org.apache.commons:commons-parent from 65 to 72 #174, 
#204.
 
 
 



(commons-imaging) branch master updated: Bump org.apache.commons:commons-parent from 71 to 72 #420

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-imaging.git


The following commit(s) were added to refs/heads/master by this push:
 new c203e970 Bump org.apache.commons:commons-parent from 71 to 72 #420
c203e970 is described below

commit c203e97067e7d6e785ccb083460b873be55bf875
Author: Gary Gregory 
AuthorDate: Fri Jul 26 17:59:49 2024 -0400

Bump org.apache.commons:commons-parent from 71 to 72 #420
---
 src/changes/changes.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 15be1cd9..e1a33dbd 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -57,7 +57,7 @@ The  type attribute can be add,update,fix,remove.
   Fix EXIF metadata is discarded when updating offsets 
(wrong calculation).
   Fix ExifRewriterRoundtripTest that was 
disabled.
   
-  Bump 
org.apache.commons:commons-parent from 67 to 69 #382.
+  Bump 
org.apache.commons:commons-parent from 67 to 72 #382, #420.
   Bump 
commons-io:commons-io from 2.16.0 to 2.16.1 #385.
   Bump 
org.codehaus.mojo:animal-sniffer-maven-plugin from 1.23 to 1.24 #412.
   Bump 
org.codehaus.mojo:taglist-maven-plugin from 3.0.0 to 3.1.0 #411.



(commons-exec) branch dependabot/maven/org.apache.commons-commons-parent-72 deleted (was 7dcbbcfe)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/maven/org.apache.commons-commons-parent-72
in repository https://gitbox.apache.org/repos/asf/commons-exec.git


 was 7dcbbcfe Bump org.apache.commons:commons-parent from 71 to 72

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-exec) branch master updated (fdc99183 -> 8ed1bb91)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-exec.git


from fdc99183 Merge pull request #206 from 
apache/dependabot/github_actions/github/codeql-action-3.25.15
 add 7dcbbcfe Bump org.apache.commons:commons-parent from 71 to 72
 add 8ed1bb91 Merge pull request #204 from 
apache/dependabot/maven/org.apache.commons-commons-parent-72

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(commons-jxpath) branch master updated: Bump org.apache.commons:commons-parent from 71 to 72 #167

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jxpath.git


The following commit(s) were added to refs/heads/master by this push:
 new aba597e  Bump org.apache.commons:commons-parent from 71 to 72 #167
aba597e is described below

commit aba597ea0bfdfa2b5c89a4c99366696a0b1a5f07
Author: Gary Gregory 
AuthorDate: Fri Jul 26 17:58:46 2024 -0400

Bump org.apache.commons:commons-parent from 71 to 72 #167
---
 src/changes/changes.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 2ea8f62..c4d244b 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -126,7 +126,7 @@ The  type attribute can be add,update,fix,remove.
 Bump servlet-api from 2.4 to 2.5 #29.
   
   
-Bump commons-parent from 54 to 71 #45, #49, #64, #110, #121, #403.
+Bump commons-parent from 54 to 72 #45, #49, #64, #110, #121, #403, 
#167.
   
   
 Bump JDOM from jdom:jdom 1.0 to org.jdom:jdom 1.1.3.



(commons-imaging) branch dependabot/maven/org.apache.commons-commons-parent-72 deleted (was 10ebe8c7)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/maven/org.apache.commons-commons-parent-72
in repository https://gitbox.apache.org/repos/asf/commons-imaging.git


 was 10ebe8c7 Bump org.apache.commons:commons-parent from 71 to 72

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-imaging) 01/01: Merge pull request #420 from apache/dependabot/maven/org.apache.commons-commons-parent-72

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-imaging.git

commit c928813d57b0289d4df766d2edeb5e775bb3acce
Merge: 55b7856b 10ebe8c7
Author: Gary Gregory 
AuthorDate: Fri Jul 26 17:59:09 2024 -0400

Merge pull request #420 from 
apache/dependabot/maven/org.apache.commons-commons-parent-72

Bump org.apache.commons:commons-parent from 71 to 72

 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(commons-imaging) branch master updated (55b7856b -> c928813d)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-imaging.git


from 55b7856b Merge pull request #419 from 
apache/dependabot/github_actions/ossf/scorecard-action-2.4.0
 add 10ebe8c7 Bump org.apache.commons:commons-parent from 71 to 72
 new c928813d Merge pull request #420 from 
apache/dependabot/maven/org.apache.commons-commons-parent-72

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(commons-jxpath) branch dependabot/maven/org.apache.commons-commons-parent-72 deleted (was 1cf08b7)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/maven/org.apache.commons-commons-parent-72
in repository https://gitbox.apache.org/repos/asf/commons-jxpath.git


 was 1cf08b7  Bump org.apache.commons:commons-parent from 71 to 72

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-jxpath) 01/01: Merge pull request #167 from apache/dependabot/maven/org.apache.commons-commons-parent-72

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jxpath.git

commit 3c96072cb6942e8636ce9da57bf50617289f6602
Merge: 7b246a3 1cf08b7
Author: Gary Gregory 
AuthorDate: Fri Jul 26 17:57:57 2024 -0400

Merge pull request #167 from 
apache/dependabot/maven/org.apache.commons-commons-parent-72

Bump org.apache.commons:commons-parent from 71 to 72

 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(commons-jxpath) branch master updated (7b246a3 -> 3c96072)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jxpath.git


from 7b246a3  Merge pull request #165 from 
apache/dependabot/github_actions/github/codeql-action-3.25.15
 add 1cf08b7  Bump org.apache.commons:commons-parent from 71 to 72
 new 3c96072  Merge pull request #167 from 
apache/dependabot/maven/org.apache.commons-commons-parent-72

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(commons-bcel) branch dependabot/maven/org.apache.commons-commons-parent-72 deleted (was ad3f9521)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/maven/org.apache.commons-commons-parent-72
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git


 was ad3f9521 Bump org.apache.commons:commons-parent from 71 to 72

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-bcel) branch master updated: Bump org.apache.commons:commons-parent from 71 to 72 #336

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git


The following commit(s) were added to refs/heads/master by this push:
 new 2e81d1cb Bump org.apache.commons:commons-parent from 71 to 72 #336
2e81d1cb is described below

commit 2e81d1cb277a2d599562880f79c5021b3a39f1ce
Author: Gary Gregory 
AuthorDate: Fri Jul 26 17:57:25 2024 -0400

Bump org.apache.commons:commons-parent from 71 to 72 #336
---
 src/changes/changes.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index d1b6d924..bf0a839e 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -91,7 +91,7 @@ The  type attribute can be add,update,fix,remove.
   Bump tests from org.assertj:assertj-core 3.25.3 to 3.26.3 
#322, #332.
   Bump tests from org.jetbrains.kotlin:kotlin-stdlib 1.9.23 
to 2.0.0 #309, #318. 
   Bump tests from org.apache.commons:commons-collections4 4.4 to 
4.5.0-M2.
-  Bump org.apache.commons:commons-parent from 69 to 71.
+  Bump org.apache.commons:commons-parent from 69 to 72 #336.
   Bump org.codehaus.mojo:taglist-maven-plugin from 3.0.0 to 3.1.0 
#331. 
 
 



(commons-bcel) branch master updated: Bump org.apache.commons:commons-parent from 71 to 72 (#336)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git


The following commit(s) were added to refs/heads/master by this push:
 new 16c5 Bump org.apache.commons:commons-parent from 71 to 72 (#336)
16c5 is described below

commit 16c5bf56371f2ece350f7fd2d9a3a8d22210
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 26 17:56:54 2024 -0400

Bump org.apache.commons:commons-parent from 71 to 72 (#336)

Bumps 
[org.apache.commons:commons-parent](https://github.com/apache/commons-parent) 
from 71 to 72.
- 
[Changelog](https://github.com/apache/commons-parent/blob/master/RELEASE-NOTES.txt)
- [Commits](https://github.com/apache/commons-parent/commits)

---
updated-dependencies:
- dependency-name: org.apache.commons:commons-parent
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 50007555..7dc677e1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,7 +27,7 @@
   
 org.apache.commons
 commons-parent
-71
+72
   
 
   org.apache.bcel



(commons-fileupload) branch master updated: Workaround broken Maven profile

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git


The following commit(s) were added to refs/heads/master by this push:
 new a86aa96a Workaround broken Maven profile
a86aa96a is described below

commit a86aa96ac5ea760c12fd9beec3154905c5e1bb70
Author: Gary Gregory 
AuthorDate: Fri Jul 26 17:54:25 2024 -0400

Workaround broken Maven profile
---
 pom.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pom.xml b/pom.xml
index 3f338e4c..cd21220a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -259,6 +259,8 @@
 true
 true
 
https://jakarta.ee/specifications/platform/9.1/apidocs/
+
+
 
 
 2.0.0-M1



(commons-parent) branch master updated: Remove broken profile

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-parent.git


The following commit(s) were added to refs/heads/master by this push:
 new 1c0f661  Remove broken profile
1c0f661 is described below

commit 1c0f661ad9383beb7e1d752a47ebbb5b4a1b8bca
Author: Gary Gregory 
AuthorDate: Fri Jul 26 17:52:36 2024 -0400

Remove broken profile

Breaks with:

Error:  Failed to execute goal
org.apache.maven.plugins:maven-javadoc-plugin:3.7.0:javadoc
(default-cli) on project commons-fileupload2-jakarta-servlet6: An error
has occurred in Javadoc report generation:
Error:  Exit code: 1
Error:  javadoc: warning - You have specified to generate frames, by
using the --frames option.
Error:  The default is currently to not generate frames and the support
for
Error:  frames will be removed in a future release.
Error:  To suppress this warning, remove the --frames option and avoid
the use of frames.
Error: [ERROR] javadoc: error - Error fetching URL:
https://jakarta.ee/specifications/platform/10/apidocs/
Error:  Command line was: /usr/lib/jvm/temurin-11-jdk-amd64/bin/javadoc
@options @packages
Error:
Error:  Refer to the generated Javadoc files in

'/home/runner/work/commons-fileupload/commons-fileupload/commons-fileupload2-jakarta-servlet6/target/site/apidocs'
dir.
Error:  -> [Help 1]

Using Java 11

Apache Maven 3.8.8 (4c87b05d9aedce574290d1acc98575ed5eb6cd39)
Maven home: /usr/share/apache-maven-3.8.8
Java version: 11.0.23, vendor: Eclipse Adoptium, runtime:
/usr/lib/jvm/temurin-11-jdk-amd64
Default locale: en, platform encoding: UTF-8
OS name: "linux", version: "6.5.0-1024-azure", arch: "amd64", family:
"unix"

See on GitHub CI failure like

https://github.com/apache/commons-fileupload/actions/runs/10117990274/job/27984018336
---
 src/changes/changes.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index eaf525f..ecc7316 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -64,6 +64,8 @@ The  type attribute can be add,update,fix,remove.
 Bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.21.2 to 
0.22.0 #453.
 Bump commons.pmd-impl.version from 7.3.0 to 7.4.0 #456.
 Bump org.apache.bcel:bcel from 6.9.0 to 6.10.0 #454.
+
+Remove broken Maven profile for Java 11.
   
   
 



(commons-parent) branch master updated: Remove broken profile

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-parent.git


The following commit(s) were added to refs/heads/master by this push:
 new ad74982  Remove broken profile
ad74982 is described below

commit ad749823ea1cae454bd4db1c873e48f732cb881b
Author: Gary Gregory 
AuthorDate: Fri Jul 26 17:51:35 2024 -0400

Remove broken profile

Breaks with:

Error:  Failed to execute goal
org.apache.maven.plugins:maven-javadoc-plugin:3.7.0:javadoc
(default-cli) on project commons-fileupload2-jakarta-servlet6: An error
has occurred in Javadoc report generation:
Error:  Exit code: 1
Error:  javadoc: warning - You have specified to generate frames, by
using the --frames option.
Error:  The default is currently to not generate frames and the support
for
Error:  frames will be removed in a future release.
Error:  To suppress this warning, remove the --frames option and avoid
the use of frames.
Error: [ERROR] javadoc: error - Error fetching URL:
https://jakarta.ee/specifications/platform/10/apidocs/
Error:  Command line was: /usr/lib/jvm/temurin-11-jdk-amd64/bin/javadoc
@options @packages
Error:
Error:  Refer to the generated Javadoc files in

'/home/runner/work/commons-fileupload/commons-fileupload/commons-fileupload2-jakarta-servlet6/target/site/apidocs'
dir.
Error:  -> [Help 1]

Using Java 11

Apache Maven 3.8.8 (4c87b05d9aedce574290d1acc98575ed5eb6cd39)
Maven home: /usr/share/apache-maven-3.8.8
Java version: 11.0.23, vendor: Eclipse Adoptium, runtime:
/usr/lib/jvm/temurin-11-jdk-amd64
Default locale: en, platform encoding: UTF-8
OS name: "linux", version: "6.5.0-1024-azure", arch: "amd64", family:
"unix"

See on GitHub CI failure like

https://github.com/apache/commons-fileupload/actions/runs/10117990274/job/27984018336
---
 pom.xml | 10 --
 1 file changed, 10 deletions(-)

diff --git a/pom.xml b/pom.xml
index 18029a5..fb76751 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1839,16 +1839,6 @@

  
 
-
-  
-  java-11
-  
-11
-  
-  
---frames
-  
-
 
  
   java-11-up



(commons-fileupload) branch master updated: Pick up maven-javadoc-plugin version from parent

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git


The following commit(s) were added to refs/heads/master by this push:
 new e7979e27 Pick up maven-javadoc-plugin version from parent
e7979e27 is described below

commit e7979e273f7770bf01424f804eec8b3c610485d8
Author: Gary Gregory 
AuthorDate: Fri Jul 26 17:45:54 2024 -0400

Pick up maven-javadoc-plugin version from parent
---
 pom.xml | 2 --
 1 file changed, 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index a2ce7425..3f338e4c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -259,7 +259,6 @@
 true
 true
 
https://jakarta.ee/specifications/platform/9.1/apidocs/
-3.7.0
 
 
 2.0.0-M1
@@ -362,7 +361,6 @@
   
 org.apache.maven.plugins
 maven-javadoc-plugin
-3.8.0
 
   
 



(commons-fileupload) branch master updated: Bump org.apache.commons:commons-parent from 71 to 72 (#336)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git


The following commit(s) were added to refs/heads/master by this push:
 new 269ffb19 Bump org.apache.commons:commons-parent from 71 to 72 (#336)
269ffb19 is described below

commit 269ffb19614fe4f2f9f676ea9b7432bc592ad6ee
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 26 17:44:22 2024 -0400

Bump org.apache.commons:commons-parent from 71 to 72 (#336)

Bumps 
[org.apache.commons:commons-parent](https://github.com/apache/commons-parent) 
from 71 to 72.
- 
[Changelog](https://github.com/apache/commons-parent/blob/master/RELEASE-NOTES.txt)
- [Commits](https://github.com/apache/commons-parent/commits)

---
updated-dependencies:
- dependency-name: org.apache.commons:commons-parent
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 56884144..a2ce7425 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,7 +21,7 @@
   
 org.apache.commons
 commons-parent
-71
+72
   
 
   commons-fileupload2



(commons-fileupload) branch dependabot/maven/org.apache.commons-commons-parent-72 deleted (was 33531423)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/maven/org.apache.commons-commons-parent-72
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git


 was 33531423 Bump org.apache.commons:commons-parent from 71 to 72

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-fileupload) branch master updated: Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.7.0 to 3.8.0 #335

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git


The following commit(s) were added to refs/heads/master by this push:
 new 0d68013f Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.7.0 
to 3.8.0 #335
0d68013f is described below

commit 0d68013f68ff3d0516dc405c5ae3e26096f0d8c3
Author: Gary Gregory 
AuthorDate: Fri Jul 26 17:43:56 2024 -0400

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.7.0 to 3.8.0 #335
---
 src/changes/changes.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 48976e09..cee79dba 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -50,7 +50,7 @@ The  type attribute can be add,update,fix,remove.
   
   Handle multipart/related Requests without 
content-disposition header.
   
-  Bump org.apache.commons:commons-parent from 66 to 71 #283, 
#294.
+  Bump org.apache.commons:commons-parent from 66 to 72 #283, #294, 
#335.
   Bump commons-io:commons-io from 2.16.0 to 2.16.1 #297.
   Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.3 to 3.7.0 
#319.
   Bump org.codehaus.mojo:taglist-maven-plugin from 3.0.0 to 3.1.0 
#327.



(commons-fileupload) branch dependabot/maven/org.apache.maven.plugins-maven-javadoc-plugin-3.8.0 deleted (was b4dccc4c)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/maven/org.apache.maven.plugins-maven-javadoc-plugin-3.8.0
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git


 was b4dccc4c Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.7.0 
to 3.8.0

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-fileupload) branch master updated: Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.7.0 to 3.8.0 (#335)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git


The following commit(s) were added to refs/heads/master by this push:
 new 20d4f2bd Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.7.0 
to 3.8.0 (#335)
20d4f2bd is described below

commit 20d4f2bdf483818488bf53dd45579fce4f3d4697
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 26 17:43:19 2024 -0400

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.7.0 to 3.8.0 
(#335)

Bumps 
[org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin)
 from 3.7.0 to 3.8.0.
- [Release notes](https://github.com/apache/maven-javadoc-plugin/releases)
- 
[Commits](https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.7.0...maven-javadoc-plugin-3.8.0)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-javadoc-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 1e9fe459..56884144 100644
--- a/pom.xml
+++ b/pom.xml
@@ -362,7 +362,7 @@
   
 org.apache.maven.plugins
 maven-javadoc-plugin
-3.7.0
+3.8.0
 
   
 



(commons-text) branch master updated: Bump org.apache.commons:commons-parent from 71 to 72 #571

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-text.git


The following commit(s) were added to refs/heads/master by this push:
 new df595cd4 Bump org.apache.commons:commons-parent from 71 to 72 #571
df595cd4 is described below

commit df595cd483b237ea70f09264263715bdd2f50b0e
Author: Gary Gregory 
AuthorDate: Fri Jul 26 17:42:48 2024 -0400

Bump org.apache.commons:commons-parent from 71 to 72 #571
---
 src/changes/changes.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index a3825d3a..5b66cd94 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -67,7 +67,7 @@ The  type attribute can be add,update,fix,remove.
 Bump tests on 
Java >= 22 org.graalvm.*:* from 24.0.0 to 24.0.1.
 Bump 
commons.bytebuddy.version from 1.14.13 to 1.14.18 #538, #548, #553, 
#565.
 Bump SpotBugs 
from 4.8.3 to 4.8.5.
-Bump 
org.apache.commons:commons-parent from 69 to 71 #542, #557.
+Bump 
org.apache.commons:commons-parent from 69 to 72 #542, #557, #571.
 Bump 
org.assertj:assertj-core from 3.25.3 to 3.26.3 #554, #566.
 Bump 
org.codehaus.mojo:taglist-maven-plugin from 3.0.0 to 3.1.0 #564.
 Bump org.apache.commons:commons-rng-simple from 1.5 to 1.6 
#568.



(commons-text) branch master updated: Bump org.apache.commons:commons-parent from 71 to 72 (#571)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-text.git


The following commit(s) were added to refs/heads/master by this push:
 new 04fdaf0e Bump org.apache.commons:commons-parent from 71 to 72 (#571)
04fdaf0e is described below

commit 04fdaf0ee90771beb3bca9e4a86bbd5dd5a8f2bd
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 26 17:42:13 2024 -0400

Bump org.apache.commons:commons-parent from 71 to 72 (#571)

Bumps 
[org.apache.commons:commons-parent](https://github.com/apache/commons-parent) 
from 71 to 72.
- 
[Changelog](https://github.com/apache/commons-parent/blob/master/RELEASE-NOTES.txt)
- [Commits](https://github.com/apache/commons-parent/commits)

---
updated-dependencies:
- dependency-name: org.apache.commons:commons-parent
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index de6dfa0e..c4419435 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.commons
 commons-parent
-71
+72
   
   commons-text
   1.12.1-SNAPSHOT



(commons-email) branch master updated: Bump org.apache.commons:commons-parent from 71 to 72 #271

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-email.git


The following commit(s) were added to refs/heads/master by this push:
 new e4b03d8  Bump org.apache.commons:commons-parent from 71 to 72 #271
e4b03d8 is described below

commit e4b03d899a8fe7c896f4d5715d16b10ea3ee6ad5
Author: Gary Gregory 
AuthorDate: Fri Jul 26 17:41:51 2024 -0400

Bump org.apache.commons:commons-parent from 71 to 72 #271
---
 src/changes/changes.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 12c6ad1..ab5c763 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -34,7 +34,7 @@
   Bump 
org.slf4j:slf4j-jdk14 from 2.0.9 to 2.0.13 #238.
   Bump 
com.github.davidmoten:subethasmtp from 6.0.7 to 7.1.1 #252.
   Bump 
org.mockito:mockito-core from 5.8.0 to 5.12.0 #222, #251.
-  Bump 
commons-parent from 65 to 71 #233.
+  Bump 
commons-parent from 65 to 72 #233, #271.
   Bump 
commons-io:commons-io from 2.15.1 to 2.16.1 #231, #236.
 
 



(commons-email) branch master updated (ceef740 -> 149793f)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-email.git


from ceef740  Merge pull request #270 from 
apache/dependabot/github_actions/ossf/scorecard-action-2.4.0
 add 1f18661  Bump org.apache.commons:commons-parent from 71 to 72
 new 149793f  Merge pull request #271 from 
apache/dependabot/maven/org.apache.commons-commons-parent-72

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(commons-email) 01/01: Merge pull request #271 from apache/dependabot/maven/org.apache.commons-commons-parent-72

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-email.git

commit 149793f18e0c9d593b84a9ba50ac7b7828927400
Merge: ceef740 1f18661
Author: Gary Gregory 
AuthorDate: Fri Jul 26 17:41:12 2024 -0400

Merge pull request #271 from 
apache/dependabot/maven/org.apache.commons-commons-parent-72

Bump org.apache.commons:commons-parent from 71 to 72

 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(commons-text) branch dependabot/github_actions/github/codeql-action-3.25.15 deleted (was cecf0a27)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/github_actions/github/codeql-action-3.25.15
in repository https://gitbox.apache.org/repos/asf/commons-text.git


 was cecf0a27 Bump github/codeql-action from 3.25.13 to 3.25.15

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-text) branch master updated: Bump github/codeql-action from 3.25.13 to 3.25.15 (#573)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-text.git


The following commit(s) were added to refs/heads/master by this push:
 new ef8cf5cd Bump github/codeql-action from 3.25.13 to 3.25.15 (#573)
ef8cf5cd is described below

commit ef8cf5cd5e4695255d23ad9196ec50310e16341a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 26 16:47:41 2024 -0400

Bump github/codeql-action from 3.25.13 to 3.25.15 (#573)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 
3.25.13 to 3.25.15.
- [Release notes](https://github.com/github/codeql-action/releases)
- 
[Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- 
[Commits](https://github.com/github/codeql-action/compare/2d790406f505036ef40ecba973cc774a50395aac...afb54ba388a7dca6ecae48f608c4ff05ff4cc77a)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 .github/workflows/codeql-analysis.yml | 6 +++---
 .github/workflows/scorecards-analysis.yml | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/codeql-analysis.yml 
b/.github/workflows/codeql-analysis.yml
index 0c42b7bb..ef7a39ed 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -57,7 +57,7 @@ jobs:
 
 # Initializes the CodeQL tools for scanning.
 - name: Initialize CodeQL
-  uses: github/codeql-action/init@2d790406f505036ef40ecba973cc774a50395aac 
   # 3.25.13
+  uses: github/codeql-action/init@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a 
   # 3.25.15
   with:
 languages: ${{ matrix.language }}
 # If you wish to specify custom queries, you can do so here or in a 
config file.
@@ -68,7 +68,7 @@ jobs:
 # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).
 # If this step fails, then you should remove it and run the build manually 
(see below)
 - name: Autobuild
-  uses: 
github/codeql-action/autobuild@2d790406f505036ef40ecba973cc774a50395aac# 
3.25.13
+  uses: 
github/codeql-action/autobuild@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a# 
3.25.15
 
 # ℹ️ Command-line programs to run using the OS shell.
 #  https://git.io/JvXDl
@@ -82,4 +82,4 @@ jobs:
 #   make release
 
 - name: Perform CodeQL Analysis
-  uses: 
github/codeql-action/analyze@2d790406f505036ef40ecba973cc774a50395aac# 
3.25.13
+  uses: 
github/codeql-action/analyze@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a# 
3.25.15
diff --git a/.github/workflows/scorecards-analysis.yml 
b/.github/workflows/scorecards-analysis.yml
index 098d9151..b7e50232 100644
--- a/.github/workflows/scorecards-analysis.yml
+++ b/.github/workflows/scorecards-analysis.yml
@@ -64,6 +64,6 @@ jobs:
   retention-days: 5
 
   - name: "Upload to code-scanning"
-uses: 
github/codeql-action/upload-sarif@2d790406f505036ef40ecba973cc774a50395aac# 
3.25.13
+uses: 
github/codeql-action/upload-sarif@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a# 
3.25.15
 with:
   sarif_file: results.sarif



(commons-text) branch dependabot/github_actions/ossf/scorecard-action-2.4.0 deleted (was f5ab826b)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/github_actions/ossf/scorecard-action-2.4.0
in repository https://gitbox.apache.org/repos/asf/commons-text.git


 was f5ab826b Bump ossf/scorecard-action from 2.3.3 to 2.4.0

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-text) branch master updated: Bump ossf/scorecard-action from 2.3.3 to 2.4.0 (#572)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-text.git


The following commit(s) were added to refs/heads/master by this push:
 new e3c7980d Bump ossf/scorecard-action from 2.3.3 to 2.4.0 (#572)
e3c7980d is described below

commit e3c7980de2f231ac4080aed23aef74543bdfeb43
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 26 16:47:27 2024 -0400

Bump ossf/scorecard-action from 2.3.3 to 2.4.0 (#572)

Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) 
from 2.3.3 to 2.4.0.
- [Release notes](https://github.com/ossf/scorecard-action/releases)
- [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md)
- 
[Commits](https://github.com/ossf/scorecard-action/compare/dc50aa9510b46c811795eb24b2f1ba02a914e534...62b2cac7ed8198b15735ed49ab1e5cf35480ba46)

---
updated-dependencies:
- dependency-name: ossf/scorecard-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 .github/workflows/scorecards-analysis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/scorecards-analysis.yml 
b/.github/workflows/scorecards-analysis.yml
index 5954d572..098d9151 100644
--- a/.github/workflows/scorecards-analysis.yml
+++ b/.github/workflows/scorecards-analysis.yml
@@ -45,7 +45,7 @@ jobs:
   persist-credentials: false
 
   - name: "Run analysis"
-uses: ossf/scorecard-action@dc50aa9510b46c811795eb24b2f1ba02a914e534   
 # 2.3.3
+uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46   
 # 2.4.0
 with:
   results_file: results.sarif
   results_format: sarif



(commons-email) branch dependabot/github_actions/ossf/scorecard-action-2.4.0 deleted (was 1713c68)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/github_actions/ossf/scorecard-action-2.4.0
in repository https://gitbox.apache.org/repos/asf/commons-email.git


 was 1713c68  Bump ossf/scorecard-action from 2.3.3 to 2.4.0

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-email) 01/01: Merge pull request #270 from apache/dependabot/github_actions/ossf/scorecard-action-2.4.0

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-email.git

commit ceef740f38422f2c6aa52c14fd2a221565061274
Merge: 0937378 1713c68
Author: Gary Gregory 
AuthorDate: Fri Jul 26 16:35:39 2024 -0400

Merge pull request #270 from 
apache/dependabot/github_actions/ossf/scorecard-action-2.4.0

Bump ossf/scorecard-action from 2.3.3 to 2.4.0

 .github/workflows/scorecards-analysis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)




(commons-email) branch master updated (0937378 -> ceef740)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-email.git


from 0937378  Merge pull request #269 from 
apache/dependabot/github_actions/github/codeql-action-3.25.15
 add 1713c68  Bump ossf/scorecard-action from 2.3.3 to 2.4.0
 new ceef740  Merge pull request #270 from 
apache/dependabot/github_actions/ossf/scorecard-action-2.4.0

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/scorecards-analysis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(commons-email) branch dependabot/github_actions/github/codeql-action-3.25.15 deleted (was ccdfa22)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/github_actions/github/codeql-action-3.25.15
in repository https://gitbox.apache.org/repos/asf/commons-email.git


 was ccdfa22  Bump github/codeql-action from 3.25.13 to 3.25.15

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-email) 01/01: Merge pull request #269 from apache/dependabot/github_actions/github/codeql-action-3.25.15

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-email.git

commit 093737862ab6c01ce4e31f1dc760ba2854fc7642
Merge: 47da88d ccdfa22
Author: Gary Gregory 
AuthorDate: Fri Jul 26 16:35:21 2024 -0400

Merge pull request #269 from 
apache/dependabot/github_actions/github/codeql-action-3.25.15

Bump github/codeql-action from 3.25.13 to 3.25.15

 .github/workflows/codeql-analysis.yml | 6 +++---
 .github/workflows/scorecards-analysis.yml | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)



(commons-email) branch master updated (47da88d -> 0937378)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-email.git


from 47da88d  Add Java 22 to the GitHub CI build
 add ccdfa22  Bump github/codeql-action from 3.25.13 to 3.25.15
 new 0937378  Merge pull request #269 from 
apache/dependabot/github_actions/github/codeql-action-3.25.15

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/codeql-analysis.yml | 6 +++---
 .github/workflows/scorecards-analysis.yml | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)



(commons-bcel) branch dependabot/github_actions/github/codeql-action-3.25.15 deleted (was 8fb1e9c4)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/github_actions/github/codeql-action-3.25.15
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git


 was 8fb1e9c4 Bump github/codeql-action from 3.25.13 to 3.25.15

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-bcel) branch dependabot/github_actions/ossf/scorecard-action-2.4.0 deleted (was 82b54ba2)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/github_actions/ossf/scorecard-action-2.4.0
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git


 was 82b54ba2 Bump ossf/scorecard-action from 2.3.3 to 2.4.0

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-bcel) branch master updated: Bump ossf/scorecard-action from 2.3.3 to 2.4.0 (#337)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git


The following commit(s) were added to refs/heads/master by this push:
 new 8db939bd Bump ossf/scorecard-action from 2.3.3 to 2.4.0 (#337)
8db939bd is described below

commit 8db939bd9036b32f21fa55b434e076ea5d404954
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 26 15:58:51 2024 -0400

Bump ossf/scorecard-action from 2.3.3 to 2.4.0 (#337)

Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) 
from 2.3.3 to 2.4.0.
- [Release notes](https://github.com/ossf/scorecard-action/releases)
- [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md)
- 
[Commits](https://github.com/ossf/scorecard-action/compare/dc50aa9510b46c811795eb24b2f1ba02a914e534...62b2cac7ed8198b15735ed49ab1e5cf35480ba46)

---
updated-dependencies:
- dependency-name: ossf/scorecard-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 .github/workflows/scorecards-analysis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/scorecards-analysis.yml 
b/.github/workflows/scorecards-analysis.yml
index b21884eb..0244738b 100644
--- a/.github/workflows/scorecards-analysis.yml
+++ b/.github/workflows/scorecards-analysis.yml
@@ -45,7 +45,7 @@ jobs:
   persist-credentials: false
 
   - name: "Run analysis"
-uses: ossf/scorecard-action@dc50aa9510b46c811795eb24b2f1ba02a914e534   
 # 2.3.3
+uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46   
 # 2.4.0
 with:
   results_file: results.sarif
   results_format: sarif



(commons-bcel) branch master updated: Bump github/codeql-action from 3.25.13 to 3.25.15 (#338)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git


The following commit(s) were added to refs/heads/master by this push:
 new 45fe2028 Bump github/codeql-action from 3.25.13 to 3.25.15 (#338)
45fe2028 is described below

commit 45fe20281570e237a54dc5c6fde976cf9aefc106
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 26 15:59:02 2024 -0400

Bump github/codeql-action from 3.25.13 to 3.25.15 (#338)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 
3.25.13 to 3.25.15.
- [Release notes](https://github.com/github/codeql-action/releases)
- 
[Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- 
[Commits](https://github.com/github/codeql-action/compare/2d790406f505036ef40ecba973cc774a50395aac...afb54ba388a7dca6ecae48f608c4ff05ff4cc77a)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 .github/workflows/codeql-analysis.yml | 6 +++---
 .github/workflows/scorecards-analysis.yml | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/codeql-analysis.yml 
b/.github/workflows/codeql-analysis.yml
index 098e157e..c4cca453 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -57,7 +57,7 @@ jobs:
 
 # Initializes the CodeQL tools for scanning.
 - name: Initialize CodeQL
-  uses: github/codeql-action/init@2d790406f505036ef40ecba973cc774a50395aac 
# v3.25.13
+  uses: github/codeql-action/init@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a 
# v3.25.15
   with:
 languages: ${{ matrix.language }}
 # If you wish to specify custom queries, you can do so here or in a 
config file.
@@ -68,7 +68,7 @@ jobs:
 # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).
 # If this step fails, then you should remove it and run the build manually 
(see below)
 - name: Autobuild
-  uses: 
github/codeql-action/autobuild@2d790406f505036ef40ecba973cc774a50395aac # 
v3.25.13
+  uses: 
github/codeql-action/autobuild@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a # 
v3.25.15
 
 # ℹ️ Command-line programs to run using the OS shell.
 #  https://git.io/JvXDl
@@ -82,4 +82,4 @@ jobs:
 #   make release
 
 - name: Perform CodeQL Analysis
-  uses: 
github/codeql-action/analyze@2d790406f505036ef40ecba973cc774a50395aac # v3.25.13
+  uses: 
github/codeql-action/analyze@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a # v3.25.15
diff --git a/.github/workflows/scorecards-analysis.yml 
b/.github/workflows/scorecards-analysis.yml
index 0244738b..79fbb8c1 100644
--- a/.github/workflows/scorecards-analysis.yml
+++ b/.github/workflows/scorecards-analysis.yml
@@ -64,6 +64,6 @@ jobs:
   retention-days: 5
 
   - name: "Upload to code-scanning"
-uses: 
github/codeql-action/upload-sarif@2d790406f505036ef40ecba973cc774a50395aac# 
3.25.13
+uses: 
github/codeql-action/upload-sarif@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a# 
3.25.15
 with:
   sarif_file: results.sarif



(commons-rdf) 01/01: Merge pull request #246 from apache/dependabot/github_actions/github/codeql-action-3.25.15

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-rdf.git

commit 4bae7eb2d4202ced712b8b923dc15d75791a61e9
Merge: ebb4d3e1 96f69624
Author: Gary Gregory 
AuthorDate: Fri Jul 26 15:25:27 2024 -0400

Merge pull request #246 from 
apache/dependabot/github_actions/github/codeql-action-3.25.15

Bump github/codeql-action from 3.25.13 to 3.25.15

 .github/workflows/codeql-analysis.yml | 6 +++---
 .github/workflows/scorecards-analysis.yml | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)




(commons-rdf) branch dependabot/github_actions/github/codeql-action-3.25.15 deleted (was 96f69624)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/github_actions/github/codeql-action-3.25.15
in repository https://gitbox.apache.org/repos/asf/commons-rdf.git


 was 96f69624 Bump github/codeql-action from 3.25.13 to 3.25.15

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-rdf) branch master updated (ebb4d3e1 -> 4bae7eb2)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-rdf.git


from ebb4d3e1 Merge pull request #245 from 
apache/dependabot/github_actions/ossf/scorecard-action-2.4.0
 add 96f69624 Bump github/codeql-action from 3.25.13 to 3.25.15
 new 4bae7eb2 Merge pull request #246 from 
apache/dependabot/github_actions/github/codeql-action-3.25.15

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/codeql-analysis.yml | 6 +++---
 .github/workflows/scorecards-analysis.yml | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)



(commons-rdf) branch dependabot/github_actions/ossf/scorecard-action-2.4.0 deleted (was 6dd2c718)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/github_actions/ossf/scorecard-action-2.4.0
in repository https://gitbox.apache.org/repos/asf/commons-rdf.git


 was 6dd2c718 Bump ossf/scorecard-action from 2.3.3 to 2.4.0

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-rdf) 01/01: Merge pull request #245 from apache/dependabot/github_actions/ossf/scorecard-action-2.4.0

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-rdf.git

commit ebb4d3e1193e0754fac2d6c367b17ea05661643d
Merge: 0d5560c0 6dd2c718
Author: Gary Gregory 
AuthorDate: Fri Jul 26 15:25:11 2024 -0400

Merge pull request #245 from 
apache/dependabot/github_actions/ossf/scorecard-action-2.4.0

Bump ossf/scorecard-action from 2.3.3 to 2.4.0

 .github/workflows/scorecards-analysis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(commons-rdf) branch master updated (0d5560c0 -> ebb4d3e1)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-rdf.git


from 0d5560c0 Merge pull request #244 from 
apache/dependabot/github_actions/github/codeql-action-3.25.13
 add 6dd2c718 Bump ossf/scorecard-action from 2.3.3 to 2.4.0
 new ebb4d3e1 Merge pull request #245 from 
apache/dependabot/github_actions/ossf/scorecard-action-2.4.0

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/scorecards-analysis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(commons-fileupload) branch dependabot/github_actions/github/codeql-action-3.25.15 deleted (was 730f5e4a)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/github_actions/github/codeql-action-3.25.15
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git


 was 730f5e4a Bump github/codeql-action from 3.25.13 to 3.25.15

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-fileupload) branch master updated: Bump github/codeql-action from 3.25.13 to 3.25.15 (#333)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git


The following commit(s) were added to refs/heads/master by this push:
 new b1547e7a Bump github/codeql-action from 3.25.13 to 3.25.15 (#333)
b1547e7a is described below

commit b1547e7ac306299dd3b2a6295bc9f321931c7bca
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 26 14:34:12 2024 -0400

Bump github/codeql-action from 3.25.13 to 3.25.15 (#333)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 
3.25.13 to 3.25.15.
- [Release notes](https://github.com/github/codeql-action/releases)
- 
[Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- 
[Commits](https://github.com/github/codeql-action/compare/2d790406f505036ef40ecba973cc774a50395aac...afb54ba388a7dca6ecae48f608c4ff05ff4cc77a)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 .github/workflows/codeql-analysis.yml | 6 +++---
 .github/workflows/scorecards-analysis.yml | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/codeql-analysis.yml 
b/.github/workflows/codeql-analysis.yml
index 0c42b7bb..ef7a39ed 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -57,7 +57,7 @@ jobs:
 
 # Initializes the CodeQL tools for scanning.
 - name: Initialize CodeQL
-  uses: github/codeql-action/init@2d790406f505036ef40ecba973cc774a50395aac 
   # 3.25.13
+  uses: github/codeql-action/init@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a 
   # 3.25.15
   with:
 languages: ${{ matrix.language }}
 # If you wish to specify custom queries, you can do so here or in a 
config file.
@@ -68,7 +68,7 @@ jobs:
 # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).
 # If this step fails, then you should remove it and run the build manually 
(see below)
 - name: Autobuild
-  uses: 
github/codeql-action/autobuild@2d790406f505036ef40ecba973cc774a50395aac# 
3.25.13
+  uses: 
github/codeql-action/autobuild@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a# 
3.25.15
 
 # ℹ️ Command-line programs to run using the OS shell.
 #  https://git.io/JvXDl
@@ -82,4 +82,4 @@ jobs:
 #   make release
 
 - name: Perform CodeQL Analysis
-  uses: 
github/codeql-action/analyze@2d790406f505036ef40ecba973cc774a50395aac# 
3.25.13
+  uses: 
github/codeql-action/analyze@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a# 
3.25.15
diff --git a/.github/workflows/scorecards-analysis.yml 
b/.github/workflows/scorecards-analysis.yml
index 098d9151..b7e50232 100644
--- a/.github/workflows/scorecards-analysis.yml
+++ b/.github/workflows/scorecards-analysis.yml
@@ -64,6 +64,6 @@ jobs:
   retention-days: 5
 
   - name: "Upload to code-scanning"
-uses: 
github/codeql-action/upload-sarif@2d790406f505036ef40ecba973cc774a50395aac# 
3.25.13
+uses: 
github/codeql-action/upload-sarif@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a# 
3.25.15
 with:
   sarif_file: results.sarif



(commons-fileupload) branch dependabot/github_actions/ossf/scorecard-action-2.4.0 deleted (was 1c261a54)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/github_actions/ossf/scorecard-action-2.4.0
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git


 was 1c261a54 Bump ossf/scorecard-action from 2.3.3 to 2.4.0

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-fileupload) branch master updated: Bump ossf/scorecard-action from 2.3.3 to 2.4.0 (#334)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git


The following commit(s) were added to refs/heads/master by this push:
 new 3fb2bc1e Bump ossf/scorecard-action from 2.3.3 to 2.4.0 (#334)
3fb2bc1e is described below

commit 3fb2bc1e58c46d60a69b0dfaa634ad76fcdadd1b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 26 14:33:52 2024 -0400

Bump ossf/scorecard-action from 2.3.3 to 2.4.0 (#334)

Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) 
from 2.3.3 to 2.4.0.
- [Release notes](https://github.com/ossf/scorecard-action/releases)
- [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md)
- 
[Commits](https://github.com/ossf/scorecard-action/compare/dc50aa9510b46c811795eb24b2f1ba02a914e534...62b2cac7ed8198b15735ed49ab1e5cf35480ba46)

---
updated-dependencies:
- dependency-name: ossf/scorecard-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 .github/workflows/scorecards-analysis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/scorecards-analysis.yml 
b/.github/workflows/scorecards-analysis.yml
index 5954d572..098d9151 100644
--- a/.github/workflows/scorecards-analysis.yml
+++ b/.github/workflows/scorecards-analysis.yml
@@ -45,7 +45,7 @@ jobs:
   persist-credentials: false
 
   - name: "Run analysis"
-uses: ossf/scorecard-action@dc50aa9510b46c811795eb24b2f1ba02a914e534   
 # 2.3.3
+uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46   
 # 2.4.0
 with:
   results_file: results.sarif
   results_format: sarif



(commons-jxpath) branch master updated (926ec89 -> 7b246a3)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jxpath.git


from 926ec89  Merge pull request #166 from 
apache/dependabot/github_actions/ossf/scorecard-action-2.4.0
 add 713c05a  Bump github/codeql-action from 3.25.13 to 3.25.15
 new 7b246a3  Merge pull request #165 from 
apache/dependabot/github_actions/github/codeql-action-3.25.15

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/codeql-analysis.yml | 6 +++---
 .github/workflows/scorecards-analysis.yml | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)



(commons-jxpath) 01/01: Merge pull request #165 from apache/dependabot/github_actions/github/codeql-action-3.25.15

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jxpath.git

commit 7b246a35caa2a98cb107a150373c636d3a829429
Merge: 926ec89 713c05a
Author: Gary Gregory 
AuthorDate: Fri Jul 26 14:16:56 2024 -0400

Merge pull request #165 from 
apache/dependabot/github_actions/github/codeql-action-3.25.15

Bump github/codeql-action from 3.25.13 to 3.25.15

 .github/workflows/codeql-analysis.yml | 6 +++---
 .github/workflows/scorecards-analysis.yml | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)




(commons-jxpath) branch dependabot/github_actions/ossf/scorecard-action-2.4.0 deleted (was 61e1efc)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/github_actions/ossf/scorecard-action-2.4.0
in repository https://gitbox.apache.org/repos/asf/commons-jxpath.git


 was 61e1efc  Bump ossf/scorecard-action from 2.3.3 to 2.4.0

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-jxpath) 01/01: Merge pull request #166 from apache/dependabot/github_actions/ossf/scorecard-action-2.4.0

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jxpath.git

commit 926ec892b25f95c326cf7ab384946502445adb25
Merge: eacb494 61e1efc
Author: Gary Gregory 
AuthorDate: Fri Jul 26 14:16:44 2024 -0400

Merge pull request #166 from 
apache/dependabot/github_actions/ossf/scorecard-action-2.4.0

Bump ossf/scorecard-action from 2.3.3 to 2.4.0

 .github/workflows/scorecards-analysis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(commons-jxpath) branch master updated (eacb494 -> 926ec89)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jxpath.git


from eacb494  Merge pull request #164 from 
apache/dependabot/github_actions/github/codeql-action-3.25.13
 add 61e1efc  Bump ossf/scorecard-action from 2.3.3 to 2.4.0
 new 926ec89  Merge pull request #166 from 
apache/dependabot/github_actions/ossf/scorecard-action-2.4.0

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/scorecards-analysis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(commons-exec) branch dependabot/github_actions/github/codeql-action-3.25.15 deleted (was e911b0d1)

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/github_actions/github/codeql-action-3.25.15
in repository https://gitbox.apache.org/repos/asf/commons-exec.git


 was e911b0d1 Bump github/codeql-action from 3.25.13 to 3.25.15

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(commons-exec) 01/01: Merge pull request #206 from apache/dependabot/github_actions/github/codeql-action-3.25.15

2024-07-26 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-exec.git

commit fdc99183a6f83c81a5135bd127625096b339e9cd
Merge: dfa3ecdd e911b0d1
Author: Gary Gregory 
AuthorDate: Fri Jul 26 14:15:45 2024 -0400

Merge pull request #206 from 
apache/dependabot/github_actions/github/codeql-action-3.25.15

Bump github/codeql-action from 3.25.13 to 3.25.15

 .github/workflows/codeql-analysis.yml | 6 +++---
 .github/workflows/scorecards-analysis.yml | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)




  1   2   3   4   5   6   7   8   9   10   >