(commons-cli) branch master updated: Add missing test

2024-04-08 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-cli.git


The following commit(s) were added to refs/heads/master by this push:
 new c883390  Add missing test
c883390 is described below

commit c88339084264401004cc2535738d7472e344e253
Author: Gary Gregory 
AuthorDate: Mon Apr 8 07:58:43 2024 -0400

Add missing test
---
 .../cli/UnrecognizedOptionExceptionTest.java   | 34 ++
 1 file changed, 34 insertions(+)

diff --git 
a/src/test/java/org/apache/commons/cli/UnrecognizedOptionExceptionTest.java 
b/src/test/java/org/apache/commons/cli/UnrecognizedOptionExceptionTest.java
new file mode 100644
index 000..85f7b8b
--- /dev/null
+++ b/src/test/java/org/apache/commons/cli/UnrecognizedOptionExceptionTest.java
@@ -0,0 +1,34 @@
+/*
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+ */
+package org.apache.commons.cli;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+import org.junit.jupiter.api.Test;
+
+/**
+ * Tests {@link UnrecognizedOptionException}.
+ */
+public class UnrecognizedOptionExceptionTest {
+
+@Test
+public void testConstructor() {
+assertEquals("a", new UnrecognizedOptionException("a").getMessage());
+assertEquals("a", new UnrecognizedOptionException("a", 
"b").getMessage());
+assertEquals("b", new UnrecognizedOptionException("a", 
"b").getOption());
+}
+}



(commons-cli) branch master updated: Add missing test

2024-04-08 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-cli.git


The following commit(s) were added to refs/heads/master by this push:
 new 53af98d  Add missing test
53af98d is described below

commit 53af98d998fbec8822a4ef08df6ad670ed707814
Author: Gary Gregory 
AuthorDate: Mon Apr 8 08:05:58 2024 -0400

Add missing test
---
 ...ptionTest.java => AlreadySelectedExceptionTest.java} | 17 -
 .../commons/cli/UnrecognizedOptionExceptionTest.java|  1 +
 2 files changed, 13 insertions(+), 5 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/cli/UnrecognizedOptionExceptionTest.java 
b/src/test/java/org/apache/commons/cli/AlreadySelectedExceptionTest.java
similarity index 57%
copy from 
src/test/java/org/apache/commons/cli/UnrecognizedOptionExceptionTest.java
copy to src/test/java/org/apache/commons/cli/AlreadySelectedExceptionTest.java
index 85f7b8b..289b62f 100644
--- a/src/test/java/org/apache/commons/cli/UnrecognizedOptionExceptionTest.java
+++ b/src/test/java/org/apache/commons/cli/AlreadySelectedExceptionTest.java
@@ -14,21 +14,28 @@
   See the License for the specific language governing permissions and
   limitations under the License.
  */
+
 package org.apache.commons.cli;
 
 import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertNotNull;
+import static org.junit.jupiter.api.Assertions.assertNull;
 
 import org.junit.jupiter.api.Test;
 
 /**
- * Tests {@link UnrecognizedOptionException}.
+ * Tests {@link AlreadySelectedException}.
  */
-public class UnrecognizedOptionExceptionTest {
+public class AlreadySelectedExceptionTest {
 
 @Test
 public void testConstructor() {
-assertEquals("a", new UnrecognizedOptionException("a").getMessage());
-assertEquals("a", new UnrecognizedOptionException("a", 
"b").getMessage());
-assertEquals("b", new UnrecognizedOptionException("a", 
"b").getOption());
+assertEquals("a", new AlreadySelectedException("a").getMessage());
+assertNull(new AlreadySelectedException("a").getOption());
+final Option option = new Option("a", "d");
+final OptionGroup group = new OptionGroup();
+assertNotNull(new AlreadySelectedException(group, 
option).getMessage());
+assertEquals(option, new AlreadySelectedException(group, 
option).getOption());
+assertEquals(group, new AlreadySelectedException(group, 
option).getOptionGroup());
 }
 }
diff --git 
a/src/test/java/org/apache/commons/cli/UnrecognizedOptionExceptionTest.java 
b/src/test/java/org/apache/commons/cli/UnrecognizedOptionExceptionTest.java
index 85f7b8b..53a32d0 100644
--- a/src/test/java/org/apache/commons/cli/UnrecognizedOptionExceptionTest.java
+++ b/src/test/java/org/apache/commons/cli/UnrecognizedOptionExceptionTest.java
@@ -14,6 +14,7 @@
   See the License for the specific language governing permissions and
   limitations under the License.
  */
+
 package org.apache.commons.cli;
 
 import static org.junit.jupiter.api.Assertions.assertEquals;



(commons-cli) branch master updated: Add missing test

2024-04-08 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-cli.git


The following commit(s) were added to refs/heads/master by this push:
 new f4ab6c9  Add missing test
f4ab6c9 is described below

commit f4ab6c9dbe062e558dff98ae68c3bc7f5da06372
Author: Gary Gregory 
AuthorDate: Mon Apr 8 08:18:07 2024 -0400

Add missing test
---
 .../org/apache/commons/cli/ParseException.java |  2 ++
 .../org/apache/commons/cli/ParseExceptionTest.java | 40 ++
 2 files changed, 42 insertions(+)

diff --git a/src/main/java/org/apache/commons/cli/ParseException.java 
b/src/main/java/org/apache/commons/cli/ParseException.java
index 2af1614..b2f5dbf 100644
--- a/src/main/java/org/apache/commons/cli/ParseException.java
+++ b/src/main/java/org/apache/commons/cli/ParseException.java
@@ -49,6 +49,7 @@ public class ParseException extends Exception {
 }
 return new ParseException(e);
 }
+
 /**
  * Constructs a new {@code ParseException} with the specified detail 
message.
  *
@@ -60,6 +61,7 @@ public class ParseException extends Exception {
 
 /**
  * Constructs a new {@code ParseException} wrapping the specified 
exception.
+ *
  * @param e the Exception to wrap.
  */
 public ParseException(final Throwable e) {
diff --git a/src/test/java/org/apache/commons/cli/ParseExceptionTest.java 
b/src/test/java/org/apache/commons/cli/ParseExceptionTest.java
new file mode 100644
index 000..293f624
--- /dev/null
+++ b/src/test/java/org/apache/commons/cli/ParseExceptionTest.java
@@ -0,0 +1,40 @@
+/*
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+ */
+
+package org.apache.commons.cli;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+import java.io.IOException;
+
+import org.junit.jupiter.api.Test;
+
+/**
+ * Tests {@link ParseException}.
+ */
+public class ParseExceptionTest {
+
+@Test
+public void testConstructor() {
+assertEquals("a", new ParseException("a").getMessage());
+final Throwable t = new IOException();
+assertEquals(t, new ParseException(t).getCause());
+assertEquals(t, ParseException.wrap(t).getCause());
+final ParseException pe = new ParseException("A");
+assertEquals(pe, ParseException.wrap(pe));
+}
+}



(commons-cli) 02/03: Whitespace

2024-04-08 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-cli.git

commit 8fa4b05a0797a8b5930d40151e0be24f99ae4cb2
Author: Gary Gregory 
AuthorDate: Mon Apr 8 08:25:30 2024 -0400

Whitespace
---
 src/main/java/org/apache/commons/cli/Parser.java | 34 +---
 1 file changed, 1 insertion(+), 33 deletions(-)

diff --git a/src/main/java/org/apache/commons/cli/Parser.java 
b/src/main/java/org/apache/commons/cli/Parser.java
index 0aeaaee..a8f052d 100644
--- a/src/main/java/org/apache/commons/cli/Parser.java
+++ b/src/main/java/org/apache/commons/cli/Parser.java
@@ -147,32 +147,23 @@ public abstract class Parser implements CommandLineParser 
{
 for (final Option opt : options.helpOptions()) {
 opt.clearValues();
 }
-
 // clear the data from the groups
 for (final OptionGroup group : options.getOptionGroups()) {
 group.setSelected(null);
 }
-
 // initialize members
 setOptions(options);
-
 cmd = CommandLine.builder().build();
-
 boolean eatTheRest = false;
-
 final List tokenList = Arrays.asList(flatten(getOptions(), 
arguments == null ? new String[0] : arguments, stopAtNonOption));
-
 final ListIterator iterator = tokenList.listIterator();
-
 // process each flattened token
 while (iterator.hasNext()) {
 final String token = iterator.next();
-
 // the value is the double-dash
 if ("--".equals(token)) {
 eatTheRest = true;
 }
-
 // the value is a single dash
 else if ("-".equals(token)) {
 if (stopAtNonOption) {
@@ -181,7 +172,6 @@ public abstract class Parser implements CommandLineParser {
 cmd.addArg(token);
 }
 }
-
 // the value is an option
 else if (token.startsWith("-")) {
 if (stopAtNonOption && !getOptions().hasOption(token)) {
@@ -191,21 +181,17 @@ public abstract class Parser implements CommandLineParser 
{
 processOption(token, iterator);
 }
 }
-
 // the value is an argument
 else {
 cmd.addArg(token);
-
 if (stopAtNonOption) {
 eatTheRest = true;
 }
 }
-
 // eat the remaining tokens
 if (eatTheRest) {
 while (iterator.hasNext()) {
 final String str = iterator.next();
-
 // ensure only one double-dash is added
 if (!"--".equals(str)) {
 cmd.addArg(str);
@@ -213,10 +199,8 @@ public abstract class Parser implements CommandLineParser {
 }
 }
 }
-
 processProperties(properties);
 checkRequiredOptions();
-
 return cmd;
 }
 
@@ -233,13 +217,11 @@ public abstract class Parser implements CommandLineParser 
{
 // loop until an option is found
 while (iter.hasNext()) {
 final String str = iter.next();
-
 // found an Option, not an argument
 if (getOptions().hasOption(str) && str.startsWith("-")) {
 iter.previous();
 break;
 }
-
 // found a value
 try {
 
opt.addValueForProcessing(Util.stripLeadingAndTrailingQuotes(str));
@@ -248,7 +230,6 @@ public abstract class Parser implements CommandLineParser {
 break;
 }
 }
-
 if (opt.getValues() == null && !opt.hasOptionalArg()) {
 throw new MissingArgumentException(opt);
 }
@@ -265,23 +246,18 @@ public abstract class Parser implements CommandLineParser 
{
  */
 protected void processOption(final String arg, final ListIterator 
iter) throws ParseException {
 final boolean hasOption = getOptions().hasOption(arg);
-
 // if there is no option throw an UnrecognizedOptionException
 if (!hasOption) {
 throw new UnrecognizedOptionException("Unrecognized option: " + 
arg, arg);
 }
-
 // get the option represented by arg
 final Option opt = (Option) getOptions().getOption(arg).clone();
-
 // update the required options and groups
 updateRequiredOptions(opt);
-
 // if the option takes an argument value
 if (opt.hasArg()) {
 processArgs(opt, iter);
 }
-
 // set the option on the command line
 cmd.addOption(opt);
 }
@@ -296,23 +272,18 @@ public abstract class Parser implements CommandLineParser 
{
 if (properties == null) {
 return;
 }
-
 for (final Enumeration e = properties.propertyNames(); 
e.hasMoreElements();) {
 final Str

(commons-cli) 03/03: Add missing test branch

2024-04-08 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-cli.git

commit 71e5b08fe9299fa3a8450b11a12d7f62ca0cd46c
Author: Gary Gregory 
AuthorDate: Mon Apr 8 08:25:43 2024 -0400

Add missing test branch
---
 src/test/java/org/apache/commons/cli/CommandLineTest.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/test/java/org/apache/commons/cli/CommandLineTest.java 
b/src/test/java/org/apache/commons/cli/CommandLineTest.java
index d1ce424..861e736 100644
--- a/src/test/java/org/apache/commons/cli/CommandLineTest.java
+++ b/src/test/java/org/apache/commons/cli/CommandLineTest.java
@@ -135,6 +135,7 @@ public class CommandLineTest {
 assertNotNull(cmd.getOptions());
 assertEquals(0, cmd.getOptions().length);
 
+cmd.addOption(null);
 cmd.addOption(new Option("a", null));
 cmd.addOption(new Option("b", null));
 cmd.addOption(new Option("c", null));
@@ -151,6 +152,7 @@ public class CommandLineTest {
 cmd.addOption(new Option("a", null));
 cmd.addOption(new Option("b", null));
 cmd.addOption(new Option("c", null));
+cmd.addOption(null);
 
 assertEquals(3, cmd.getOptions().length);
 }



(commons-cli) branch master updated (f4ab6c9 -> 71e5b08)

2024-04-08 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-cli.git


from f4ab6c9  Add missing test
 new 33b552b  Better local name
 new 8fa4b05  Whitespace
 new 71e5b08  Add missing test branch

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:
 src/main/java/org/apache/commons/cli/Parser.java   | 52 +-
 .../org/apache/commons/cli/CommandLineTest.java|  2 +
 2 files changed, 12 insertions(+), 42 deletions(-)



(commons-cli) 01/03: Better local name

2024-04-08 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-cli.git

commit 33b552b2110b8ff651bf3f6b30550e12734225e7
Author: Gary Gregory 
AuthorDate: Mon Apr 8 08:22:45 2024 -0400

Better local name
---
 src/main/java/org/apache/commons/cli/Parser.java | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/main/java/org/apache/commons/cli/Parser.java 
b/src/main/java/org/apache/commons/cli/Parser.java
index c76e68c..0aeaaee 100644
--- a/src/main/java/org/apache/commons/cli/Parser.java
+++ b/src/main/java/org/apache/commons/cli/Parser.java
@@ -166,35 +166,35 @@ public abstract class Parser implements CommandLineParser 
{
 
 // process each flattened token
 while (iterator.hasNext()) {
-final String t = iterator.next();
+final String token = iterator.next();
 
 // the value is the double-dash
-if ("--".equals(t)) {
+if ("--".equals(token)) {
 eatTheRest = true;
 }
 
 // the value is a single dash
-else if ("-".equals(t)) {
+else if ("-".equals(token)) {
 if (stopAtNonOption) {
 eatTheRest = true;
 } else {
-cmd.addArg(t);
+cmd.addArg(token);
 }
 }
 
 // the value is an option
-else if (t.startsWith("-")) {
-if (stopAtNonOption && !getOptions().hasOption(t)) {
+else if (token.startsWith("-")) {
+if (stopAtNonOption && !getOptions().hasOption(token)) {
 eatTheRest = true;
-cmd.addArg(t);
+cmd.addArg(token);
 } else {
-processOption(t, iterator);
+processOption(token, iterator);
 }
 }
 
 // the value is an argument
 else {
-cmd.addArg(t);
+cmd.addArg(token);
 
 if (stopAtNonOption) {
 eatTheRest = true;



(commons-cli) branch master updated: Add missing API test

2024-04-08 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-cli.git


The following commit(s) were added to refs/heads/master by this push:
 new c4bd586  Add missing API test
c4bd586 is described below

commit c4bd586d9c72d544e5a73889c7a280e47ecf711f
Author: Gary Gregory 
AuthorDate: Mon Apr 8 08:31:46 2024 -0400

Add missing API test
---
 src/test/java/org/apache/commons/cli/bug/BugsTest.java | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/src/test/java/org/apache/commons/cli/bug/BugsTest.java 
b/src/test/java/org/apache/commons/cli/bug/BugsTest.java
index 28f08c8..9c2ef36 100644
--- a/src/test/java/org/apache/commons/cli/bug/BugsTest.java
+++ b/src/test/java/org/apache/commons/cli/bug/BugsTest.java
@@ -126,14 +126,15 @@ public class BugsTest {
 @Test
 public void test11680() throws Exception {
 final Options options = new Options();
-options.addOption("f", true, "foobar");
-options.addOption("m", true, "missing");
+final Option optionF = options.addOption("f", true, 
"foobar").getOption("f");
+final Option optionM = options.addOption("m", true, 
"missing").getOption("m");
 final String[] args = {"-f", "foo"};
-
 final CommandLineParser parser = new PosixParser();
-
 final CommandLine cmd = parser.parse(options, args);
-
+// 1.5.0 API:
+cmd.getOptionValue(optionF, "default f");
+cmd.getOptionValue(optionM, "default m");
+// Original API:
 cmd.getOptionValue("f", "default f");
 cmd.getOptionValue("m", "default m");
 //



(commons-cli) branch master updated: Add missing API test

2024-04-08 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-cli.git


The following commit(s) were added to refs/heads/master by this push:
 new b87725f  Add missing API test
b87725f is described below

commit b87725fb1325f33afc37deddefa0e56474db9af5
Author: Gary Gregory 
AuthorDate: Mon Apr 8 08:32:39 2024 -0400

Add missing API test
---
 src/test/java/org/apache/commons/cli/bug/BugsTest.java | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/cli/bug/BugsTest.java 
b/src/test/java/org/apache/commons/cli/bug/BugsTest.java
index 9c2ef36..c8c2aa9 100644
--- a/src/test/java/org/apache/commons/cli/bug/BugsTest.java
+++ b/src/test/java/org/apache/commons/cli/bug/BugsTest.java
@@ -128,9 +128,12 @@ public class BugsTest {
 final Options options = new Options();
 final Option optionF = options.addOption("f", true, 
"foobar").getOption("f");
 final Option optionM = options.addOption("m", true, 
"missing").getOption("m");
-final String[] args = {"-f", "foo"};
+final String[] args = { "-f", "foo" };
 final CommandLineParser parser = new PosixParser();
 final CommandLine cmd = parser.parse(options, args);
+// 1.7.0 API:
+cmd.getOptionValue(optionF, () -> "default f");
+cmd.getOptionValue(optionM, () -> "default m");
 // 1.5.0 API:
 cmd.getOptionValue(optionF, "default f");
 cmd.getOptionValue(optionM, "default m");



(commons-cli) 01/12: Add missing test for the deprecated handler

2024-04-08 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-cli.git

commit d4610ab06b464b9ac1d74b1d595dd80455c0c0ec
Author: Gary Gregory 
AuthorDate: Mon Apr 8 08:50:26 2024 -0400

Add missing test for the deprecated handler
---
 src/test/java/org/apache/commons/cli/CommandLineTest.java | 14 ++
 1 file changed, 14 insertions(+)

diff --git a/src/test/java/org/apache/commons/cli/CommandLineTest.java 
b/src/test/java/org/apache/commons/cli/CommandLineTest.java
index 861e736..49f146e 100644
--- a/src/test/java/org/apache/commons/cli/CommandLineTest.java
+++ b/src/test/java/org/apache/commons/cli/CommandLineTest.java
@@ -83,6 +83,20 @@ public class CommandLineTest {
 assertNull(handler.get());
 }
 
+@Test
+public void testDeprecatedDefaultOption() {
+final CommandLine.Builder builder = new CommandLine.Builder();
+builder.addArg("foo").addArg("bar");
+final Option opt = Option.builder().option("T").deprecated().build();
+builder.addOption(opt);
+final AtomicReference handler = new AtomicReference<>();
+final CommandLine cmd = builder.build();
+cmd.getOptionValue(opt.getOpt());
+handler.set(null);
+cmd.getOptionValue("Nope");
+assertNull(handler.get());
+}
+
 @Test
 public void testGetOptionProperties() throws Exception {
 final String[] args = {"-Dparam1=value1", "-Dparam2=value2", 
"-Dparam3", "-Dparam4=value4", "-D", "--property", "foo=bar"};



(commons-cli) 09/12: Add missing test branch

2024-04-08 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-cli.git

commit 7be99b5144e2a3b615e70cefa09f80232d799451
Author: Gary Gregory 
AuthorDate: Mon Apr 8 09:06:58 2024 -0400

Add missing test branch
---
 src/test/java/org/apache/commons/cli/UtilTest.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/test/java/org/apache/commons/cli/UtilTest.java 
b/src/test/java/org/apache/commons/cli/UtilTest.java
index beb57a5..8f24ff1 100644
--- a/src/test/java/org/apache/commons/cli/UtilTest.java
+++ b/src/test/java/org/apache/commons/cli/UtilTest.java
@@ -23,8 +23,11 @@ import static org.junit.jupiter.api.Assertions.assertNull;
 import org.junit.jupiter.api.Test;
 
 public class UtilTest {
+
 @Test
 public void testStripLeadingAndTrailingQuotes() {
+assertNull(Util.stripLeadingAndTrailingQuotes(null));
+assertEquals("", Util.stripLeadingAndTrailingQuotes(""));
 assertEquals("foo", Util.stripLeadingAndTrailingQuotes("\"foo\""));
 assertEquals("foo \"bar\"", Util.stripLeadingAndTrailingQuotes("foo 
\"bar\""));
 assertEquals("\"foo\" bar", 
Util.stripLeadingAndTrailingQuotes("\"foo\" bar"));



(commons-cli) 06/12: Add missing test

2024-04-08 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-cli.git

commit 9d09134743d794becb496f01c39b121e6e0fd40a
Author: Gary Gregory 
AuthorDate: Mon Apr 8 08:57:13 2024 -0400

Add missing test
---
 src/test/java/org/apache/commons/cli/OptionTest.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/test/java/org/apache/commons/cli/OptionTest.java 
b/src/test/java/org/apache/commons/cli/OptionTest.java
index a2328c7..e496c8b 100644
--- a/src/test/java/org/apache/commons/cli/OptionTest.java
+++ b/src/test/java/org/apache/commons/cli/OptionTest.java
@@ -108,6 +108,7 @@ public class OptionTest {
 public void testAddValue() {
 final Option option = new Option("f", null);
 assertThrows(UnsupportedOperationException.class, () -> 
option.addValue(""));
+assertThrows(IllegalArgumentException.class, () -> 
option.addValueForProcessing(""));
 }
 
 @Test



(commons-cli) 03/12: Add missing API test

2024-04-08 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-cli.git

commit 248a6cf0fe4437a6ac9daba89c40640027bc1c76
Author: Gary Gregory 
AuthorDate: Mon Apr 8 08:52:05 2024 -0400

Add missing API test
---
 src/test/java/org/apache/commons/cli/bug/BugsTest.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/test/java/org/apache/commons/cli/bug/BugsTest.java 
b/src/test/java/org/apache/commons/cli/bug/BugsTest.java
index c8c2aa9..b4dd49f 100644
--- a/src/test/java/org/apache/commons/cli/bug/BugsTest.java
+++ b/src/test/java/org/apache/commons/cli/bug/BugsTest.java
@@ -134,6 +134,9 @@ public class BugsTest {
 // 1.7.0 API:
 cmd.getOptionValue(optionF, () -> "default f");
 cmd.getOptionValue(optionM, () -> "default m");
+// 1.7.0 API:
+cmd.getOptionValue('f', () -> "default f");
+cmd.getOptionValue('m', () -> "default m");
 // 1.5.0 API:
 cmd.getOptionValue(optionF, "default f");
 cmd.getOptionValue(optionM, "default m");



(commons-cli) 08/12: Make default constructor private

2024-04-08 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-cli.git

commit 9aee5d941a9fe3177e3619870d05c404d1cef4ea
Author: Gary Gregory 
AuthorDate: Mon Apr 8 09:05:08 2024 -0400

Make default constructor private
---
 src/main/java/org/apache/commons/cli/Util.java | 4 
 1 file changed, 4 insertions(+)

diff --git a/src/main/java/org/apache/commons/cli/Util.java 
b/src/main/java/org/apache/commons/cli/Util.java
index f43b8c7..caf25bc 100644
--- a/src/main/java/org/apache/commons/cli/Util.java
+++ b/src/main/java/org/apache/commons/cli/Util.java
@@ -72,4 +72,8 @@ final class Util {
 }
 return str;
 }
+
+private Util() {
+// no instances
+}
 }



(commons-cli) 11/12: Use assertThrows()

2024-04-08 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-cli.git

commit 76c70a057583e3d9d5208c479b6cd04120c68105
Author: Gary Gregory 
AuthorDate: Mon Apr 8 09:11:54 2024 -0400

Use assertThrows()
---
 .../java/org/apache/commons/cli/HelpFormatterTest.java   | 16 +++-
 1 file changed, 3 insertions(+), 13 deletions(-)

diff --git a/src/test/java/org/apache/commons/cli/HelpFormatterTest.java 
b/src/test/java/org/apache/commons/cli/HelpFormatterTest.java
index 97242a4..d23f943 100644
--- a/src/test/java/org/apache/commons/cli/HelpFormatterTest.java
+++ b/src/test/java/org/apache/commons/cli/HelpFormatterTest.java
@@ -19,6 +19,7 @@ package org.apache.commons.cli;
 
 import static org.junit.jupiter.api.Assertions.assertEquals;
 import static org.junit.jupiter.api.Assertions.assertNull;
+import static org.junit.jupiter.api.Assertions.assertThrows;
 import static org.junit.jupiter.api.Assertions.fail;
 
 import java.io.ByteArrayOutputStream;
@@ -349,19 +350,8 @@ public class HelpFormatterTest {
 @Test
 public void testPrintHelpWithEmptySyntax() {
 final HelpFormatter formatter = new HelpFormatter();
-try {
-formatter.printHelp(null, new Options());
-fail("null command line syntax should be rejected");
-} catch (final IllegalArgumentException e) {
-// expected
-}
-
-try {
-formatter.printHelp("", new Options());
-fail("empty command line syntax should be rejected");
-} catch (final IllegalArgumentException e) {
-// expected
-}
+assertThrows(IllegalArgumentException.class, () -> 
formatter.printHelp(null, new Options()), "null command line syntax should be 
rejected");
+assertThrows(IllegalArgumentException.class, () -> 
formatter.printHelp("", new Options()), "null command line syntax should be 
rejected");
 }
 
 @Test



(commons-cli) 12/12: Add missing test branch

2024-04-08 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-cli.git

commit 9ff24a036f06f34c7490017dabd7ac918985c559
Author: Gary Gregory 
AuthorDate: Mon Apr 8 09:13:04 2024 -0400

Add missing test branch
---
 src/test/java/org/apache/commons/cli/HelpFormatterTest.java | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/cli/HelpFormatterTest.java 
b/src/test/java/org/apache/commons/cli/HelpFormatterTest.java
index d23f943..563aea8 100644
--- a/src/test/java/org/apache/commons/cli/HelpFormatterTest.java
+++ b/src/test/java/org/apache/commons/cli/HelpFormatterTest.java
@@ -351,7 +351,10 @@ public class HelpFormatterTest {
 public void testPrintHelpWithEmptySyntax() {
 final HelpFormatter formatter = new HelpFormatter();
 assertThrows(IllegalArgumentException.class, () -> 
formatter.printHelp(null, new Options()), "null command line syntax should be 
rejected");
-assertThrows(IllegalArgumentException.class, () -> 
formatter.printHelp("", new Options()), "null command line syntax should be 
rejected");
+assertThrows(IllegalArgumentException.class, () -> 
formatter.printHelp(null, new Options(), true), "null command line syntax 
should be rejected");
+assertThrows(IllegalArgumentException.class, () -> 
formatter.printHelp(null, new Options(), false), "null command line syntax 
should be rejected");
+assertThrows(IllegalArgumentException.class, () -> 
formatter.printHelp("", new Options(), true), "null command line syntax should 
be rejected");
+assertThrows(IllegalArgumentException.class, () -> 
formatter.printHelp("", new Options(), false), "null command line syntax should 
be rejected");
 }
 
 @Test



(commons-cli) 02/12: Add missing test

2024-04-08 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-cli.git

commit 58b98b46cc1d3412195c48e3caaa863141b4979e
Author: Gary Gregory 
AuthorDate: Mon Apr 8 08:50:41 2024 -0400

Add missing test
---
 src/test/java/org/apache/commons/cli/OptionTest.java | 18 ++
 1 file changed, 18 insertions(+)

diff --git a/src/test/java/org/apache/commons/cli/OptionTest.java 
b/src/test/java/org/apache/commons/cli/OptionTest.java
index d56fd7e..61f47cd 100644
--- a/src/test/java/org/apache/commons/cli/OptionTest.java
+++ b/src/test/java/org/apache/commons/cli/OptionTest.java
@@ -295,4 +295,22 @@ public class OptionTest {
 assertEquals("myfile.txt", clone.getValue());
 assertEquals(DefaultOption.class, clone.getClass());
 }
+
+@Test
+public void testTypeClass() {
+final Option option = new Option("f", null);
+assertEquals(String.class, option.getType());
+option.setType(CharSequence.class);
+assertEquals(CharSequence.class, option.getType());
+}
+
+@Test
+public void testTypeObject() {
+final Option option = new Option("f", null);
+assertEquals(String.class, option.getType());
+@SuppressWarnings("cast")
+final Object type = (Object) CharSequence.class; // Do NOT remove cast
+option.setType(type);
+assertEquals(CharSequence.class, option.getType());
+}
 }



(commons-cli) 04/12: Clean up exception message

2024-04-08 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-cli.git

commit 2028b84219d2171f2758cee765305c74a2d2037a
Author: Gary Gregory 
AuthorDate: Mon Apr 8 08:53:53 2024 -0400

Clean up exception message
---
 src/main/java/org/apache/commons/cli/Option.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/cli/Option.java 
b/src/main/java/org/apache/commons/cli/Option.java
index 593a418..f403052 100644
--- a/src/main/java/org/apache/commons/cli/Option.java
+++ b/src/main/java/org/apache/commons/cli/Option.java
@@ -494,7 +494,7 @@ public class Option implements Cloneable, Serializable {
 @Deprecated
 public boolean addValue(final String value) {
 throw new UnsupportedOperationException(
-"The addValue method is not intended for client use. " + 
"Subclasses should use the addValueForProcessing method instead. ");
+"The addValue method is not intended for client use. 
Subclasses should use the addValueForProcessing method instead.");
 }
 
 /**



(commons-cli) 05/12: Add missing API test

2024-04-08 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-cli.git

commit 4fde00ce02011854dc500a51bdfd54d3b6c5b18c
Author: Gary Gregory 
AuthorDate: Mon Apr 8 08:55:51 2024 -0400

Add missing API test
---
 src/test/java/org/apache/commons/cli/OptionTest.java | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/src/test/java/org/apache/commons/cli/OptionTest.java 
b/src/test/java/org/apache/commons/cli/OptionTest.java
index 61f47cd..a2328c7 100644
--- a/src/test/java/org/apache/commons/cli/OptionTest.java
+++ b/src/test/java/org/apache/commons/cli/OptionTest.java
@@ -104,6 +104,12 @@ public class OptionTest {
 return (Option) ois.readObject();
 }
 
+@Test
+public void testAddValue() {
+final Option option = new Option("f", null);
+assertThrows(UnsupportedOperationException.class, () -> 
option.addValue(""));
+}
+
 @Test
 public void testBuilderInsufficientParams1() {
 assertThrows(IllegalArgumentException.class, () -> 
Option.builder().desc("desc").build());



(commons-cli) 10/12: Javadoc

2024-04-08 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-cli.git

commit db8c8281d3a540f385c65bbc82cddab971ffb8db
Author: Gary Gregory 
AuthorDate: Mon Apr 8 09:09:49 2024 -0400

Javadoc
---
 .../java/org/apache/commons/cli/HelpFormatter.java | 24 +++---
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/src/main/java/org/apache/commons/cli/HelpFormatter.java 
b/src/main/java/org/apache/commons/cli/HelpFormatter.java
index e445e1e..4979583 100644
--- a/src/main/java/org/apache/commons/cli/HelpFormatter.java
+++ b/src/main/java/org/apache/commons/cli/HelpFormatter.java
@@ -313,7 +313,7 @@ public class HelpFormatter {
 }
 
 /**
- * Return a String of padding of length {@code len}.
+ * Creates a String of padding of length {@code len}.
  *
  * @param len The length of the String of padding to create.
  *
@@ -459,7 +459,7 @@ public class HelpFormatter {
 }
 
 /**
- * Print the help for {@code options} with the specified command line 
syntax. This method prints help information
+ * Prints the help for {@code options} with the specified command line 
syntax. This method prints help information
  * to System.out.
  *
  * @param width the number of characters to be displayed on each line
@@ -473,7 +473,7 @@ public class HelpFormatter {
 }
 
 /**
- * Print the help for {@code options} with the specified command line 
syntax. This method prints help information
+ * Prints the help for {@code options} with the specified command line 
syntax. This method prints help information
  * to System.out.
  *
  * @param width the number of characters to be displayed on each line
@@ -491,7 +491,7 @@ public class HelpFormatter {
 }
 
 /**
- * Print the help for {@code options} with the specified command line 
syntax.
+ * Prints the help for {@code options} with the specified command line 
syntax.
  *
  * @param pw the writer to which the help will be written
  * @param width the number of characters to be displayed on each line
@@ -510,7 +510,7 @@ public class HelpFormatter {
 }
 
 /**
- * Print the help for {@code options} with the specified command line 
syntax.
+ * Prints the help for {@code options} with the specified command line 
syntax.
  *
  * @param pw the writer to which the help will be written
  * @param width the number of characters to be displayed on each line
@@ -544,7 +544,7 @@ public class HelpFormatter {
 }
 
 /**
- * Print the help for {@code options} with the specified command line 
syntax. This method prints help information
+ * Prints the help for {@code options} with the specified command line 
syntax. This method prints help information
  * to System.out.
  *
  * @param cmdLineSyntax the syntax for this application
@@ -555,7 +555,7 @@ public class HelpFormatter {
 }
 
 /**
- * Print the help for {@code options} with the specified command line 
syntax. This method prints help information
+ * Prints the help for {@code options} with the specified command line 
syntax. This method prints help information
  * to System.out.
  *
  * @param cmdLineSyntax the syntax for this application
@@ -567,7 +567,7 @@ public class HelpFormatter {
 }
 
 /**
- * Print the help for {@code options} with the specified command line 
syntax. This method prints help information
+ * Prints the help for {@code options} with the specified command line 
syntax. This method prints help information
  * to System.out.
  *
  * @param cmdLineSyntax the syntax for this application
@@ -580,7 +580,7 @@ public class HelpFormatter {
 }
 
 /**
- * Print the help for {@code options} with the specified command line 
syntax. This method prints help information
+ * Prints the help for {@code options} with the specified command line 
syntax. This method prints help information
  * to System.out.
  *
  * @param cmdLineSyntax the syntax for this application
@@ -594,7 +594,7 @@ public class HelpFormatter {
 }
 
 /**
- * Print the help for the specified Options to the specified writer, using 
the specified width, left padding and
+ * Prints the help for the specified Options to the specified writer, 
using the specified width, left padding and
  * description padding.
  *
  * @param pw The printWriter to write the help to
@@ -610,7 +610,7 @@ public class HelpFormatter {
 }
 
 /**
- * Print the cmdLineSyntax to the specified writer, using the specified 
width.
+ * Prints the cmdLineSyntax to the specified writer, using the specified 
width.
  *
  * @param pw The printWriter to write the help to
  * @param width The number of characters per line for the usage statement.
@@ -670,7 +670,7 @@ public class HelpForm

(commons-cli) branch master updated (b87725f -> 9ff24a0)

2024-04-08 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-cli.git


from b87725f  Add missing API test
 new d4610ab  Add missing test for the deprecated handler
 new 58b98b4  Add missing test
 new 248a6cf  Add missing API test
 new 2028b84  Clean up exception message
 new 4fde00c  Add missing API test
 new 9d09134  Add missing test
 new ee0f911  Add missing API test
 new 9aee5d9  Make default constructor private
 new 7be99b5  Add missing test branch
 new db8c828  Javadoc
 new 76c70a0  Use assertThrows()
 new 9ff24a0  Add missing test branch

The 12 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:
 .../java/org/apache/commons/cli/HelpFormatter.java | 24 ++---
 src/main/java/org/apache/commons/cli/Option.java   |  2 +-
 src/main/java/org/apache/commons/cli/Util.java |  4 +++
 .../org/apache/commons/cli/CommandLineTest.java| 14 
 .../org/apache/commons/cli/HelpFormatterTest.java  | 19 ---
 .../java/org/apache/commons/cli/OptionTest.java| 39 ++
 src/test/java/org/apache/commons/cli/UtilTest.java |  3 ++
 .../java/org/apache/commons/cli/bug/BugsTest.java  |  3 ++
 8 files changed, 82 insertions(+), 26 deletions(-)



(commons-cli) 07/12: Add missing API test

2024-04-08 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-cli.git

commit ee0f9111babdf079aea6441cdf28b7c41223192a
Author: Gary Gregory 
AuthorDate: Mon Apr 8 09:00:20 2024 -0400

Add missing API test
---
 src/test/java/org/apache/commons/cli/OptionTest.java | 14 ++
 1 file changed, 14 insertions(+)

diff --git a/src/test/java/org/apache/commons/cli/OptionTest.java 
b/src/test/java/org/apache/commons/cli/OptionTest.java
index e496c8b..fe7caac 100644
--- a/src/test/java/org/apache/commons/cli/OptionTest.java
+++ b/src/test/java/org/apache/commons/cli/OptionTest.java
@@ -220,6 +220,20 @@ public class OptionTest {
 assertEquals(2, b.getValues().length);
 }
 
+@Test
+public void testEquals() {
+final Option option1a = new Option("1", null);
+final Option option1b = new Option("1", null);
+final Option option2 = new Option("2", null);
+assertEquals(option1a, option1a);
+assertEquals(option1a, option1b);
+assertEquals(option1b, option1a);
+assertNotEquals(option1a, option2);
+assertNotEquals(option1b, option2);
+assertNotEquals(option2, option1a);
+assertNotEquals(option2, "");
+}
+
 @Test
 public void testGetValue() {
 final Option option = new Option("f", null);



(commons-cli) branch master updated (9ff24a0 -> 473889d)

2024-04-08 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-cli.git


from 9ff24a0  Add missing test branch
 new 1fb2e67  Set HelpFormatter print stream
 new 473889d  Fail build on low JaCoCo coverage

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:
 pom.xml|  8 
 .../java/org/apache/commons/cli/HelpFormatter.java | 46 +-
 .../org/apache/commons/cli/HelpFormatterTest.java  |  1 -
 .../java/org/apache/commons/cli/bug/BugsTest.java  | 33 +---
 4 files changed, 62 insertions(+), 26 deletions(-)



(commons-cli) 02/02: Fail build on low JaCoCo coverage

2024-04-08 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-cli.git

commit 473889d8801bf5e0b44a0c2b29d3e93e604a4dc8
Author: Gary Gregory 
AuthorDate: Mon Apr 8 09:36:06 2024 -0400

Fail build on low JaCoCo coverage
---
 pom.xml | 8 
 1 file changed, 8 insertions(+)

diff --git a/pom.xml b/pom.xml
index 06ab783..2e817cf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -90,6 +90,14 @@
 utf-8
 true
 false
+
+true
+1.00
+0.97
+0.97
+0.94
+0.85
+0.97
   
 
   



(commons-cli) 01/02: Set HelpFormatter print stream

2024-04-08 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-cli.git

commit 1fb2e6743648344626f0cf9b9c5b3327f8727128
Author: Gary Gregory 
AuthorDate: Mon Apr 8 09:30:55 2024 -0400

Set HelpFormatter print stream

Avoid System.setOut() hack
---
 .../java/org/apache/commons/cli/HelpFormatter.java | 46 +-
 .../org/apache/commons/cli/HelpFormatterTest.java  |  1 -
 .../java/org/apache/commons/cli/bug/BugsTest.java  | 33 +---
 3 files changed, 54 insertions(+), 26 deletions(-)

diff --git a/src/main/java/org/apache/commons/cli/HelpFormatter.java 
b/src/main/java/org/apache/commons/cli/HelpFormatter.java
index 4979583..272f089 100644
--- a/src/main/java/org/apache/commons/cli/HelpFormatter.java
+++ b/src/main/java/org/apache/commons/cli/HelpFormatter.java
@@ -19,6 +19,7 @@ package org.apache.commons.cli;
 
 import java.io.BufferedReader;
 import java.io.IOException;
+import java.io.PrintStream;
 import java.io.PrintWriter;
 import java.io.Serializable;
 import java.io.StringReader;
@@ -29,6 +30,7 @@ import java.util.Collections;
 import java.util.Comparator;
 import java.util.Iterator;
 import java.util.List;
+import java.util.Objects;
 import java.util.function.Supplier;
 
 /**
@@ -78,9 +80,25 @@ public class HelpFormatter {
  */
 private boolean showDeprecated;
 
+/**
+ * The output PrintStream, defaults to {@link System#out}.
+ */
+private PrintStream printStream = System.out;
+
 @Override
 public HelpFormatter get() {
-return new HelpFormatter(showDeprecated);
+return new HelpFormatter(showDeprecated, printStream);
+}
+
+/**
+ * Sets the output PrintStream, defaults to {@link System#out}.
+ *
+ * @param printStream the output PrintStream, not null.
+ * @return this.
+ */
+public Builder setPrintStream(final PrintStream printStream) {
+this.printStream = Objects.requireNonNull(printStream, 
"printStream");
+return this;
 }
 
 /**
@@ -100,6 +118,7 @@ public class HelpFormatter {
  * This class implements the {@code Comparator} interface for comparing 
Options.
  */
 private static final class OptionComparator implements Comparator, 
Serializable {
+
 /** The serial version UID. */
 private static final long serialVersionUID = 5305467873966684014L;
 
@@ -232,6 +251,11 @@ public class HelpFormatter {
  */
 private final boolean showDeprecated;
 
+/**
+ * Where to print help.
+ */
+private final PrintStream printStream;
+
 /**
  * The separator displayed between the long option and its value.
  */
@@ -241,16 +265,18 @@ public class HelpFormatter {
  * Constructs a new instance.
  */
 public HelpFormatter() {
-this.showDeprecated = false;
+this(false, System.out);
 }
 
 /**
  * Constructs a new instance.
+ * @param printStream TODO
  */
-private HelpFormatter(final boolean showDeprecated) {
+private HelpFormatter(final boolean showDeprecated, final PrintStream 
printStream) {
 // TODO All other instance HelpFormatter instance variables.
 // Make HelpFormatter immutable for 2.0
 this.showDeprecated = showDeprecated;
+this.printStream = printStream;
 }
 
 /**
@@ -460,7 +486,7 @@ public class HelpFormatter {
 
 /**
  * Prints the help for {@code options} with the specified command line 
syntax. This method prints help information
- * to System.out.
+ * to  {@link System#out}  by default.
  *
  * @param width the number of characters to be displayed on each line
  * @param cmdLineSyntax the syntax for this application
@@ -474,7 +500,7 @@ public class HelpFormatter {
 
 /**
  * Prints the help for {@code options} with the specified command line 
syntax. This method prints help information
- * to System.out.
+ * to {@link System#out} by default.
  *
  * @param width the number of characters to be displayed on each line
  * @param cmdLineSyntax the syntax for this application
@@ -485,7 +511,7 @@ public class HelpFormatter {
  */
 public void printHelp(final int width, final String cmdLineSyntax, final 
String header, final Options options, final String footer,
 final boolean autoUsage) {
-final PrintWriter pw = new PrintWriter(System.out);
+final PrintWriter pw = new PrintWriter(printStream);
 printHelp(pw, width, cmdLineSyntax, header, options, getLeftPadding(), 
getDescPadding(), footer, autoUsage);
 pw.flush();
 }
@@ -545,7 +571,7 @@ public class HelpFormatter {
 
 /**
  * Prints the help for {@code options} with the specified command line 
syntax. This method prints help information
- * to System.out.
+

(commons-cli) 02/02: Fail-fase on null input

2024-04-08 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-cli.git

commit 613e86252b1e6add149f6cabec13d2415725d32f
Author: Gary Gregory 
AuthorDate: Mon Apr 8 12:08:30 2024 -0400

Fail-fase on null input

Javadoc
---
 src/main/java/org/apache/commons/cli/TypeHandler.java | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/cli/TypeHandler.java 
b/src/main/java/org/apache/commons/cli/TypeHandler.java
index 86a7da7..3ec9a51 100644
--- a/src/main/java/org/apache/commons/cli/TypeHandler.java
+++ b/src/main/java/org/apache/commons/cli/TypeHandler.java
@@ -26,6 +26,7 @@ import java.nio.file.Path;
 import java.util.Date;
 import java.util.HashMap;
 import java.util.Map;
+import java.util.Objects;
 
 /**
  * TypeHandler will handle the pluggable conversion and verification of Option 
types. It handles the mapping of classes to bot converters and verifiers. It
@@ -258,11 +259,11 @@ public class TypeHandler {
  * For each entry, that Class' type must match the Converter's first type.
  * 
  *
- * @param converterMap The converter map.
+ * @param converterMap The converter map, not null.
  * @since 1.7.0
  */
 public TypeHandler(final Map, Converter> 
converterMap) {
-this.converterMap = converterMap;
+this.converterMap = Objects.requireNonNull(converterMap, 
"converterMap");
 }
 
 /**



(commons-cli) 01/02: Javadoc

2024-04-08 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-cli.git

commit 1cc98753dcfc02258b7daf9829ddfc7849b6decf
Author: Gary Gregory 
AuthorDate: Mon Apr 8 10:41:56 2024 -0400

Javadoc
---
 src/main/java/org/apache/commons/cli/TypeHandler.java | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/cli/TypeHandler.java 
b/src/main/java/org/apache/commons/cli/TypeHandler.java
index c2c5147..86a7da7 100644
--- a/src/main/java/org/apache/commons/cli/TypeHandler.java
+++ b/src/main/java/org/apache/commons/cli/TypeHandler.java
@@ -240,7 +240,7 @@ public class TypeHandler {
 /**
  * Map of Class to Converter.
  * 
- * The Class type parameter matches the Converter's first generic type.
+ * For each entry, that Class' type must match the Converter's first type.
  * 
  */
 private final Map, Converter> 
converterMap;
@@ -254,6 +254,9 @@ public class TypeHandler {
 
 /**
  * Constructs a default initialized instance.
+ * 
+ * For each entry, that Class' type must match the Converter's first type.
+ * 
  *
  * @param converterMap The converter map.
  * @since 1.7.0



(commons-cli) branch master updated (473889d -> 613e862)

2024-04-08 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-cli.git


from 473889d  Fail build on low JaCoCo coverage
 new 1cc9875  Javadoc
 new 613e862  Fail-fase on null input

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/main/java/org/apache/commons/cli/TypeHandler.java | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)



svn commit: r68369 - /dev/commons/io/2.16.1-RC2/ /dev/commons/io/2.16.1-RC2/binaries/ /dev/commons/io/2.16.1-RC2/source/ /release/commons/io/ /release/commons/io/binaries/ /release/commons/io/source/

2024-04-08 Thread ggregory
Author: ggregory
Date: Mon Apr  8 16:53:26 2024
New Revision: 68369

Log:
Publish commons-io 2.16.1 Release

Added:
release/commons/io/RELEASE-NOTES.txt
  - copied unchanged from r68368, 
dev/commons/io/2.16.1-RC2/RELEASE-NOTES.txt
release/commons/io/binaries/commons-io-2.16.1-bin.tar.gz
  - copied unchanged from r68368, 
dev/commons/io/2.16.1-RC2/binaries/commons-io-2.16.1-bin.tar.gz
release/commons/io/binaries/commons-io-2.16.1-bin.tar.gz.asc
  - copied unchanged from r68368, 
dev/commons/io/2.16.1-RC2/binaries/commons-io-2.16.1-bin.tar.gz.asc
release/commons/io/binaries/commons-io-2.16.1-bin.tar.gz.sha512
  - copied unchanged from r68368, 
dev/commons/io/2.16.1-RC2/binaries/commons-io-2.16.1-bin.tar.gz.sha512
release/commons/io/binaries/commons-io-2.16.1-bin.zip
  - copied unchanged from r68368, 
dev/commons/io/2.16.1-RC2/binaries/commons-io-2.16.1-bin.zip
release/commons/io/binaries/commons-io-2.16.1-bin.zip.asc
  - copied unchanged from r68368, 
dev/commons/io/2.16.1-RC2/binaries/commons-io-2.16.1-bin.zip.asc
release/commons/io/binaries/commons-io-2.16.1-bin.zip.sha512
  - copied unchanged from r68368, 
dev/commons/io/2.16.1-RC2/binaries/commons-io-2.16.1-bin.zip.sha512
release/commons/io/source/commons-io-2.16.1-src.tar.gz
  - copied unchanged from r68368, 
dev/commons/io/2.16.1-RC2/source/commons-io-2.16.1-src.tar.gz
release/commons/io/source/commons-io-2.16.1-src.tar.gz.asc
  - copied unchanged from r68368, 
dev/commons/io/2.16.1-RC2/source/commons-io-2.16.1-src.tar.gz.asc
release/commons/io/source/commons-io-2.16.1-src.tar.gz.sha512
  - copied unchanged from r68368, 
dev/commons/io/2.16.1-RC2/source/commons-io-2.16.1-src.tar.gz.sha512
release/commons/io/source/commons-io-2.16.1-src.zip
  - copied unchanged from r68368, 
dev/commons/io/2.16.1-RC2/source/commons-io-2.16.1-src.zip
release/commons/io/source/commons-io-2.16.1-src.zip.asc
  - copied unchanged from r68368, 
dev/commons/io/2.16.1-RC2/source/commons-io-2.16.1-src.zip.asc
release/commons/io/source/commons-io-2.16.1-src.zip.sha512
  - copied unchanged from r68368, 
dev/commons/io/2.16.1-RC2/source/commons-io-2.16.1-src.zip.sha512
Removed:
dev/commons/io/2.16.1-RC2/RELEASE-NOTES.txt
dev/commons/io/2.16.1-RC2/binaries/commons-io-2.16.1-bin.tar.gz
dev/commons/io/2.16.1-RC2/binaries/commons-io-2.16.1-bin.tar.gz.asc
dev/commons/io/2.16.1-RC2/binaries/commons-io-2.16.1-bin.tar.gz.sha512
dev/commons/io/2.16.1-RC2/binaries/commons-io-2.16.1-bin.zip
dev/commons/io/2.16.1-RC2/binaries/commons-io-2.16.1-bin.zip.asc
dev/commons/io/2.16.1-RC2/binaries/commons-io-2.16.1-bin.zip.sha512
dev/commons/io/2.16.1-RC2/source/commons-io-2.16.1-src.tar.gz
dev/commons/io/2.16.1-RC2/source/commons-io-2.16.1-src.tar.gz.asc
dev/commons/io/2.16.1-RC2/source/commons-io-2.16.1-src.tar.gz.sha512
dev/commons/io/2.16.1-RC2/source/commons-io-2.16.1-src.zip
dev/commons/io/2.16.1-RC2/source/commons-io-2.16.1-src.zip.asc
dev/commons/io/2.16.1-RC2/source/commons-io-2.16.1-src.zip.sha512



svn commit: r68370 - /release/commons/io/README.html

2024-04-08 Thread ggregory
Author: ggregory
Date: Mon Apr  8 16:53:46 2024
New Revision: 68370

Log:
Bump version from 2.16.0 to 2.16.1

Modified:
release/commons/io/README.html

Modified: release/commons/io/README.html
==
--- release/commons/io/README.html (original)
+++ release/commons/io/README.html Mon Apr  8 16:53:46 2024
@@ -1,4 +1,4 @@
-Apache Commons-IO 2.16.0
+Apache Commons-IO 2.16.1
 
 This is the 2.10.0 release of commons-io. It is available in both binary 
and source distributions.
 




svn commit: r68371 - in /release/commons/io: binaries/ source/

2024-04-08 Thread ggregory
Author: ggregory
Date: Mon Apr  8 16:54:09 2024
New Revision: 68371

Log:
Drop previous release 2.16.0

Removed:
release/commons/io/binaries/commons-io-2.16.0-bin.tar.gz
release/commons/io/binaries/commons-io-2.16.0-bin.tar.gz.asc
release/commons/io/binaries/commons-io-2.16.0-bin.tar.gz.sha512
release/commons/io/binaries/commons-io-2.16.0-bin.zip
release/commons/io/binaries/commons-io-2.16.0-bin.zip.asc
release/commons/io/binaries/commons-io-2.16.0-bin.zip.sha512
release/commons/io/source/commons-io-2.16.0-src.tar.gz
release/commons/io/source/commons-io-2.16.0-src.tar.gz.asc
release/commons/io/source/commons-io-2.16.0-src.tar.gz.sha512
release/commons/io/source/commons-io-2.16.0-src.zip
release/commons/io/source/commons-io-2.16.0-src.zip.asc
release/commons/io/source/commons-io-2.16.0-src.zip.sha512



Nexus: Promotion Completed

2024-04-08 Thread Nexus Repository Manager
Message from: https://repository.apache.orgDescription:Release Apache Commons IO 2.16.1
Deployer properties:"userAgent" = "Apache-Maven/3.9.6 (Java 17.0.10; Mac OS X 14.4.1)""userId" = "ggregory""ip" = "98.180.73.170"Details:The following artifacts have been promoted to the "Releases" [id=releases] repository/commons-io/commons-io/2.16.1/commons-io-2.16.1-tests.jar(SHA1: d1ada7fa25694641a37ccfe23927d32a9ee3849f)/commons-io/commons-io/2.16.1/commons-io-2.16.1-cyclonedx.json.asc(SHA1: 87f97de00ef7d91277d01d9cac44ce8fc9ee42f2)/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom(SHA1: 553d6f69e338060a231755afe0ebf99d14b45da6)/commons-io/commons-io/2.16.1/commons-io-2.16.1.spdx.json.asc(SHA1: 0b7d634560272dd06987da4bc267fd1b077a0704)/commons-io/commons-io/2.16.1/commons-io-2.16.1.spdx.json(SHA1: f7e8c809211754b45df8042e591ef69c177bdcdf)/commons-io/commons-io/2.16.1/commons-io-2.16.1-test-sources.jar.asc(SHA1: a310400214c9c7b109713aca58853acefbb50082)/commons-io/commons-io/2.16.1/commons-io-2.16.1-cyclonedx.xml.asc(SHA1: b4895d38515615772e633627253552616a167458)/commons-io/commons-io/2.16.1/commons-io-2.16.1-cyclonedx.xml(SHA1: f23ef2580465fd423a9f959ff21d44ec4f25f1a3)/commons-io/commons-io/2.16.1/commons-io-2.16.1-javadoc.jar(SHA1: f78cbef5cbb122392b041ef0b9e6aa09520c8e65)/commons-io/commons-io/2.16.1/commons-io-2.16.1-tests.jar.asc(SHA1: 5a2f2df04836b92335c02e54fff07ab977646a65)/commons-io/commons-io/2.16.1/commons-io-2.16.1-sources.jar(SHA1: e0dbaef3c79b647e9c510b40a8366b6765cff249)/commons-io/commons-io/2.16.1/commons-io-2.16.1.pom.asc(SHA1: 08c480ab6da570bd2d97c3dd1a8e0a13d6067758)/commons-io/commons-io/2.16.1/commons-io-2.16.1-cyclonedx.json(SHA1: 4245cbde612d358c2988ddfd46d88808cfaf3b54)/commons-io/commons-io/2.16.1/commons-io-2.16.1-javadoc.jar.asc(SHA1: b4cef815c78a9649f7622570a4abbd9c3634a092)/commons-io/commons-io/2.16.1/commons-io-2.16.1-test-sources.jar(SHA1: 4ddd8eab701c9863893ab1dcd8e938370e6e0700)/commons-io/commons-io/2.16.1/commons-io-2.16.1.jar.asc(SHA1: eefc28e16f5b765d6b91bf3eb1cca9542ff20edd)/commons-io/commons-io/2.16.1/commons-io-2.16.1-sources.jar.asc(SHA1: 254adeb80319a7f3450eca47ea82cc9d15069df0)/commons-io/commons-io/2.16.1/commons-io-2.16.1.jar(SHA1: 377d592e740dc77124e0901291dbfaa6810a200e)Action performed by Gary D. Gregory (ggregory)

(commons-io) annotated tag rel/commons-io-2.16.1 created (now 95cd415a1)

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

ggregory pushed a change to annotated tag rel/commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-io.git


  at 95cd415a1 (tag)
 tagging 290d72eda9152d1e11b79d48453908ff3f6b9897 (commit)
 replaces commons-io-2.16.1-RC1
  by Gary Gregory
  on Mon Apr 8 16:55:23 2024 +

- Log -
Create release tag for Apache Commons IO release 2.16.1.
-BEGIN PGP SIGNATURE-

iQEzBAABCAAdFiEELbTx7w+nYezE6pNchv3H4qESYssFAmYUIXwACgkQhv3H4qES
YsueuggAjs5C1svnGWAwYxN3qVz60Qa93hJv6Mt6InCzaDsOxyRFkHQ5U+pQgMJO
i2sfwvQhkzB34M7AcZW5qSpzNeZNpdi1WSBi/4wSx3JafxF1jtZcd0AvUuCsYbDo
nyFhw14M4fTEK/Gd/yuQ0rD4qPNBqobdHxZprxKCu/Ci0cZCjOLZe4nUO2dvzee/
MnuORUZ3I3CDSIfjxmENOqtgu7Xwb/R1Wa/cIUtJraX2oVbjBhKJxVIPzfkUWxyR
d6csHbjp1NarpEHaEgPXwwFI6jcyenyfR3AmTkGS6sF9VOvTkaye9jX4LHFf5DxI
Ue80EfH/sd1GkApsCMbSm0Zy7N5Owg==
=O5Vp
-END PGP SIGNATURE-
---

No new revisions were added by this update.



svn commit: r1916865 - /commons/cms-site/trunk/conf/component_releases.properties

2024-04-08 Thread ggregory
Author: ggregory
Date: Mon Apr  8 16:56:36 2024
New Revision: 1916865

URL: http://svn.apache.org/viewvc?rev=1916865&view=rev
Log:
Document releasing Apache Commons IO 2.16.1.

Modified:
commons/cms-site/trunk/conf/component_releases.properties

Modified: commons/cms-site/trunk/conf/component_releases.properties
URL: 
http://svn.apache.org/viewvc/commons/cms-site/trunk/conf/component_releases.properties?rev=1916865&r1=1916864&r2=1916865&view=diff
==
--- commons/cms-site/trunk/conf/component_releases.properties (original)
+++ commons/cms-site/trunk/conf/component_releases.properties Mon Apr  8 
16:56:36 2024
@@ -41,8 +41,8 @@ geometryVersion=1.0
 geometryReleased=2021-08-21
 imagingVersion=1.0.0-alpha4
 imagingReleased=2024-04-02
-ioVersion=2.16.0
-ioReleased=2024-03-28
+ioVersion=2.16.1
+ioReleased=2024-04-08
 jciVersion=1.1
 jciReleased=2013-10-14
 jcsVersion=3.2




(commons-io) 01/02: Bump to next development version

2024-04-08 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

commit dbc4ec6ae444a184bc89dea12792687c5af7aef2
Author: Gary Gregory 
AuthorDate: Mon Apr 8 16:56:55 2024 +

Bump to next development version
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 37b2226bb..6947d25d7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
   4.0.0
   commons-io
   commons-io
-  2.16.1
+  2.16.2-SNAPSHOT
   Apache Commons IO
 
   2002
@@ -128,7 +128,7 @@ file comparators, endian transformation classes, and much 
more.
 2.16.0
 2.16.1
 2.16.2
-
2024-04-04T20:10:16Z
+
2024-04-08T16:56:47Z
 (requires Java 8)
 IO
 12310477



(commons-io) 02/02: Merge branch 'release'

2024-04-08 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

commit e751e2f8c34a4913f612fc42ced100b37abe2a4a
Merge: b77b5071c dbc4ec6ae
Author: Gary Gregory 
AuthorDate: Mon Apr 8 16:56:56 2024 +

Merge branch 'release'

 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)



(commons-io) branch master updated (b77b5071c -> e751e2f8c)

2024-04-08 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-io.git


from b77b5071c Bump codecov/codecov-action from 4.1.1 to 4.2.0 (#610)
 add 6d36827cd Prepare for the next release candidate
 add 1a824eca1 Merge branch 'master' into release
 add 290d72eda Merge branch 'master' into release
 new dbc4ec6ae Bump to next development version
 new e751e2f8c Merge branch 'release'

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:
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)



(commons-io) branch release updated (290d72eda -> dbc4ec6ae)

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

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


from 290d72eda Merge branch 'master' into release
 add dbc4ec6ae Bump to next development version

No new revisions were added by this update.

Summary of changes:
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)



svn commit: r68372 - /dev/commons/io/2.16.1-RC2/

2024-04-08 Thread ggregory
Author: ggregory
Date: Mon Apr  8 16:57:17 2024
New Revision: 68372

Log:
Apache Commons IO 2.16.1-RC2

Removed:
dev/commons/io/2.16.1-RC2/



(commons-io) branch master updated: Add a section for the next release

2024-04-08 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 eae89f51f Add a section for the next release
eae89f51f is described below

commit eae89f51fe08ae1a161fc397af85ff82b5cd6cea
Author: Gary Gregory 
AuthorDate: Mon Apr 8 12:59:10 2024 -0400

Add a section for the next release
---
 src/changes/changes.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 1317b1ca1..eacfce72e 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -46,6 +46,10 @@ The  type attribute can be add,update,fix,remove.
 Apache Commons IO Release Notes
   
   
+
+  
+  
+
 
   
   Reimplement FileSystemUtils using NIO.



(commons-compress) branch dependabot/maven/commons-io-commons-io-2.16.0 deleted (was e4a0beec6)

2024-04-08 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/commons-io-commons-io-2.16.0
in repository https://gitbox.apache.org/repos/asf/commons-compress.git


 was e4a0beec6 Bump commons-io:commons-io from 2.15.1 to 2.16.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-compress) branch dependabot/maven/commons-io-commons-io-2.16.1 created (now 5eb8bc4ec)

2024-04-08 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-compress.git


  at 5eb8bc4ec Bump commons-io:commons-io from 2.15.1 to 2.16.1

No new revisions were added by this update.



(commons-bcel) branch dependabot/maven/commons-io-commons-io-2.16.1 created (now e1e5703a)

2024-04-08 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git


  at e1e5703a Bump commons-io:commons-io from 2.16.0 to 2.16.1

No new revisions were added by this update.



(commons-cli) branch dependabot/maven/commons-io-commons-io-2.16.1 created (now a70d249)

2024-04-08 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-cli.git


  at a70d249  Bump commons-io:commons-io from 2.16.0 to 2.16.1

No new revisions were added by this update.



(commons-codec) branch dependabot/maven/commons-io-commons-io-2.16.1 created (now cd72cdff)

2024-04-08 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-codec.git


  at cd72cdff Bump commons-io:commons-io from 2.16.0 to 2.16.1

No new revisions were added by this update.



(commons-collections) branch dependabot/maven/commons-io-commons-io-2.16.1 created (now f15fd9008)

2024-04-08 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-collections.git


  at f15fd9008 Bump commons-io:commons-io from 2.16.0 to 2.16.1

No new revisions were added by this update.



(commons-configuration) branch dependabot/maven/commons-io-commons-io-2.16.1 created (now 0b88e138)

2024-04-08 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-configuration.git


  at 0b88e138 Bump commons-io:commons-io from 2.16.0 to 2.16.1

No new revisions were added by this update.



(commons-crypto) branch dependabot/maven/commons-io-commons-io-2.16.1 created (now cdd6c013)

2024-04-08 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git


  at cdd6c013 Bump commons-io:commons-io from 2.16.0 to 2.16.1

No new revisions were added by this update.



(commons-cli) branch master updated: Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#258)

2024-04-08 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-cli.git


The following commit(s) were added to refs/heads/master by this push:
 new 04ad89b  Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#258)
04ad89b is described below

commit 04ad89b95ce10dcc975822b03f645853ee8b6037
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 8 13:17:35 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#258)

Bumps commons-io:commons-io from 2.16.0 to 2.16.1.

---
updated-dependencies:
- dependency-name: commons-io:commons-io
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

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 2e817cf..bf6bac7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -65,7 +65,7 @@
 
   commons-io
   commons-io
-  2.16.0
+  2.16.1
   test
 
   



(commons-cli) branch dependabot/maven/commons-io-commons-io-2.16.1 deleted (was a70d249)

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

ggregory pushed a change to branch dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-cli.git


 was a70d249  Bump commons-io:commons-io from 2.16.0 to 2.16.1

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-csv) branch dependabot/maven/commons-io-commons-io-2.16.1 created (now c29ffcd4)

2024-04-08 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-csv.git


  at c29ffcd4 Bump commons-io:commons-io from 2.16.0 to 2.16.1

No new revisions were added by this update.



(commons-cli) branch master updated: Bump tests commons-io:commons-io from 2.16.0 to 2.16.1 #258

2024-04-08 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-cli.git


The following commit(s) were added to refs/heads/master by this push:
 new 8cb2272  Bump tests commons-io:commons-io from 2.16.0 to 2.16.1 #258
8cb2272 is described below

commit 8cb227255f10945b286ba6377a751ae2857ce540
Author: Gary Gregory 
AuthorDate: Mon Apr 8 13:18:44 2024 -0400

Bump tests commons-io:commons-io from 2.16.0 to 2.16.1 #258
---
 src/changes/changes.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 4998ebb..bd8f5b4 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -40,6 +40,7 @@
   
   Bump 
commons-parent from 64 to 69 #256.
   Update 
the tests to JUnit 5 #238.
+  Bump tests commons-io:commons-io from 2.16.0 to 2.16.1 #258.
 
 
   



(commons-compress) branch master updated: Bump commons-io:commons-io from 2.15.1 to 2.16.1 (#514)

2024-04-08 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-compress.git


The following commit(s) were added to refs/heads/master by this push:
 new a642762a6 Bump commons-io:commons-io from 2.15.1 to 2.16.1 (#514)
a642762a6 is described below

commit a642762a6d11c7ce020f1e50d9170d5018539585
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 8 13:18:51 2024 -0400

Bump commons-io:commons-io from 2.15.1 to 2.16.1 (#514)

Bumps commons-io:commons-io from 2.15.1 to 2.16.1.

---
updated-dependencies:
- dependency-name: commons-io:commons-io
  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 4e4160088..4fd656045 100644
--- a/pom.xml
+++ b/pom.xml
@@ -209,7 +209,7 @@ Brotli, Zstandard and ar, cpio, jar, tar, zip, dump, 7z, 
arj.
 
   commons-io
   commons-io
-  2.15.1
+  2.16.1
 
 
   org.apache.commons



(commons-compress) branch dependabot/maven/commons-io-commons-io-2.16.1 deleted (was 5eb8bc4ec)

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

ggregory pushed a change to branch dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-compress.git


 was 5eb8bc4ec Bump commons-io:commons-io from 2.15.1 to 2.16.1

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-compress) branch master updated: Bump commons-io:commons-io from 2.15.1 to 2.16.1 #514

2024-04-08 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-compress.git


The following commit(s) were added to refs/heads/master by this push:
 new 1b9360a2f Bump commons-io:commons-io from 2.15.1 to 2.16.1 #514
1b9360a2f is described below

commit 1b9360a2f574f12076a6c80e89602fb742fa4752
Author: Gary Gregory 
AuthorDate: Mon Apr 8 13:19:37 2024 -0400

Bump commons-io:commons-io from 2.15.1 to 2.16.1 #514
---
 src/changes/changes.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 8bcd06db9..ae87af4e7 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -54,6 +54,7 @@ The  type attribute can be add,update,fix,remove.
   Bump org.apache.commons:commons-parent from 66 to 69 #495, 
#508.
   Bump org.ow2.asm:asm from 9.6 to 9.7 #504.
   Bump com.github.luben:zstd-jni from 1.5.5-11 to 1.5.6-2 
#510.
+  Bump commons-io:commons-io from 2.15.1 to 2.16.1 #514.
 
 
   



(commons-codec) branch master updated: Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#265)

2024-04-08 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-codec.git


The following commit(s) were added to refs/heads/master by this push:
 new a3445794 Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#265)
a3445794 is described below

commit a3445794f08eb13d11c138fd63534cdcdf99bb39
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 8 13:19:46 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#265)

Bumps commons-io:commons-io from 2.16.0 to 2.16.1.

---
updated-dependencies:
- dependency-name: commons-io:commons-io
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

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 1f37e153..7360f3d2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -65,7 +65,7 @@ limitations under the License.
 
   commons-io
   commons-io
-  2.16.0
+  2.16.1
   test
 
 



(commons-collections) branch master updated: Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#475)

2024-04-08 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-collections.git


The following commit(s) were added to refs/heads/master by this push:
 new 068461964 Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#475)
068461964 is described below

commit 068461964912cc311ff5d2baa135f463f57afa03
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 8 13:20:24 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#475)

Bumps commons-io:commons-io from 2.16.0 to 2.16.1.

---
updated-dependencies:
- dependency-name: commons-io:commons-io
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

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 e6bff24b4..fa20e7748 100644
--- a/pom.xml
+++ b/pom.xml
@@ -79,7 +79,7 @@
 
   commons-io
   commons-io
-  2.16.0
+  2.16.1
   test
 
 



(commons-collections) branch dependabot/maven/commons-io-commons-io-2.16.1 deleted (was f15fd9008)

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

ggregory pushed a change to branch dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-collections.git


 was f15fd9008 Bump commons-io:commons-io from 2.16.0 to 2.16.1

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-codec) branch dependabot/maven/commons-io-commons-io-2.16.1 deleted (was cd72cdff)

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

ggregory pushed a change to branch dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-codec.git


 was cd72cdff Bump commons-io:commons-io from 2.16.0 to 2.16.1

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-codec) branch master updated: Bump commons-io:commons-io from 2.16.0 to 2.16.1 #265

2024-04-08 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-codec.git


The following commit(s) were added to refs/heads/master by this push:
 new 171677c2 Bump commons-io:commons-io from 2.16.0 to 2.16.1 #265
171677c2 is described below

commit 171677c214d139e1100228a0522eaeedf06e1c97
Author: Gary Gregory 
AuthorDate: Mon Apr 8 13:20:17 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 #265
---
 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 9dcdecb6..e06a9b4c 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -49,7 +49,7 @@ The  type attribute can be add,update,fix,remove.
   
   
   Bump org.apache.commons:commons-parent from 
66 to 69 #250, #261.
-  Bump commons-io:commons-io from 2.15.1 to 
2.16.0 #258.
+  Bump commons-io:commons-io from 2.15.1 to 
2.16.1 #258, #265.
 
 
   



(commons-collections) branch master updated: Bump tests commons-io:commons-io from 2.16.0 to 2.16.1 #475

2024-04-08 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-collections.git


The following commit(s) were added to refs/heads/master by this push:
 new de7c51e30 Bump tests commons-io:commons-io from 2.16.0 to 2.16.1 #475
de7c51e30 is described below

commit de7c51e3093fad1a56318f7612952b9c2d1fa3f2
Author: Gary Gregory 
AuthorDate: Mon Apr 8 13:21:14 2024 -0400

Bump tests commons-io:commons-io from 2.16.0 to 2.16.1 #475
---
 src/changes/changes.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 6164c338e..bfd18c3aa 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -26,6 +26,7 @@
  
  
  Bump 
org.apache.commons:commons-parent from 67 to 69 #473.
+ Bump tests 
commons-io:commons-io from 2.16.0 to 2.16.1 #475 .
   
   
 



(commons-configuration) branch master updated: Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#400)

2024-04-08 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 70fd557a Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#400)
70fd557a is described below

commit 70fd557a8d70f6625197688e241cbce0ea0b82a9
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 8 13:21:20 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#400)

Bumps commons-io:commons-io from 2.16.0 to 2.16.1.

---
updated-dependencies:
- dependency-name: commons-io:commons-io
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

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 777a449e..56f7f3fb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -249,7 +249,7 @@
 
   commons-io
   commons-io
-  2.16.0
+  2.16.1
   test
 
 



(commons-configuration) branch dependabot/maven/commons-io-commons-io-2.16.1 deleted (was 0b88e138)

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

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


 was 0b88e138 Bump commons-io:commons-io from 2.16.0 to 2.16.1

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-configuration) branch master updated: Bump commons-io:commons-io from 2.16.0 to 2.16.1 #400

2024-04-08 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 b17b8e90 Bump commons-io:commons-io from 2.16.0 to 2.16.1 #400
b17b8e90 is described below

commit b17b8e9075bc1e562172688d06ee66ce8ee5017a
Author: Gary Gregory 
AuthorDate: Mon Apr 8 13:21:54 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 #400
---
 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 b27454e1..0a3686b9 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -31,7 +31,7 @@
   Methods should not be empty #393.
   
   Bump 
commons-logging:commons-logging from 1.3.0 to 1.3.1 #390.
-  Bump 
commons-io:commons-io from 2.15.1 to 2.16.0 #394.
+  Bump 
commons-io:commons-io from 2.15.1 to 2.16.1 #394, #400.
   Bump 
org.apache.commons:commons-parent from 67 to 69 #396.
 
 



(commons-crypto) branch master updated: Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#325)

2024-04-08 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-crypto.git


The following commit(s) were added to refs/heads/master by this push:
 new 30e6bbda Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#325)
30e6bbda is described below

commit 30e6bbdaa3766ce912de06b5f13303fc0b4a5ce8
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 8 13:21:59 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#325)

Bumps commons-io:commons-io from 2.16.0 to 2.16.1.

---
updated-dependencies:
- dependency-name: commons-io:commons-io
  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>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 570e147b..561c19ca 100644
--- a/pom.xml
+++ b/pom.xml
@@ -642,7 +642,7 @@ The following provides more details on the included 
cryptographic software:
 
   commons-io
   commons-io
-  2.16.0
+  2.16.1
 
 
 



(commons-crypto) branch master updated: Bump commons-io:commons-io from 2.16.0 to 2.16.1 #325

2024-04-08 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-crypto.git


The following commit(s) were added to refs/heads/master by this push:
 new 37d47b79 Bump commons-io:commons-io from 2.16.0 to 2.16.1 #325
37d47b79 is described below

commit 37d47b798169691c2a2786393dd87aa70f6b8dca
Author: Gary Gregory 
AuthorDate: Mon Apr 8 13:22:36 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 #325
---
 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 36b19b64..237a3bc8 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -104,7 +104,7 @@
   Bump net.java.dev.jna:jna from 5.13.0 to 5.14.0 
#287.
   Bump org.codehaus.mojo:exec-maven-plugin from 3.1.1 to 
3.2.0 #303.
   Bump jakarta.xml.bind:jakarta.xml.bind-api from 4.0.1 to 4.0.2 
#311.
-  Bump commons-io:commons-io from 2.15.1 to 2.16.0 
#321.
+  Bump commons-io:commons-io from 2.15.1 to 2.16.1 #321, 
#325.
   
   Added support for 
OpenSSL 3.0, 3.1, 3.2
   Implement 
OpenSSL_version_num for JNA



(commons-crypto) branch dependabot/maven/commons-io-commons-io-2.16.1 deleted (was cdd6c013)

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

ggregory pushed a change to branch dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git


 was cdd6c013 Bump commons-io:commons-io from 2.16.0 to 2.16.1

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 dependabot/maven/commons-io-commons-io-2.16.1 created (now 815ab5cb)

2024-04-08 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git


  at 815ab5cb Bump commons-io:commons-io from 2.16.0 to 2.16.1

No new revisions were added by this update.



(commons-email) branch dependabot/maven/commons-io-commons-io-2.16.1 created (now 81d31d6)

2024-04-08 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-email.git


  at 81d31d6  Bump commons-io:commons-io from 2.16.0 to 2.16.1

No new revisions were added by this update.



(commons-csv) 01/01: Merge pull request #413 from apache/dependabot/maven/commons-io-commons-io-2.16.1

2024-04-08 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-csv.git

commit e9da8653a7151c16961758ecfd94f95236ac82aa
Merge: b9270998 c29ffcd4
Author: Gary Gregory 
AuthorDate: Mon Apr 8 13:24:12 2024 -0400

Merge pull request #413 from 
apache/dependabot/maven/commons-io-commons-io-2.16.1

Bump commons-io:commons-io from 2.16.0 to 2.16.1

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



(commons-csv) branch dependabot/maven/commons-io-commons-io-2.16.1 deleted (was c29ffcd4)

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

ggregory pushed a change to branch dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-csv.git


 was c29ffcd4 Bump commons-io:commons-io from 2.16.0 to 2.16.1

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-net) branch dependabot/maven/commons-io-commons-io-2.16.1 created (now 27680d1d)

2024-04-08 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-net.git


  at 27680d1d Bump commons-io:commons-io from 2.16.0 to 2.16.1

No new revisions were added by this update.



(commons-imaging) branch dependabot/maven/commons-io-commons-io-2.16.1 created (now eb97c779)

2024-04-08 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-imaging.git


  at eb97c779 Bump commons-io:commons-io from 2.16.0 to 2.16.1

No new revisions were added by this update.



(commons-csv) branch master updated: Bump commons-io:commons-io from 2.16.0 to 2.16.1 #413

2024-04-08 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-csv.git


The following commit(s) were added to refs/heads/master by this push:
 new 834540e7 Bump commons-io:commons-io from 2.16.0 to 2.16.1 #413
834540e7 is described below

commit 834540e7a50c1aaf4af86e6ed67a03437052fe2b
Author: Gary Gregory 
AuthorDate: Mon Apr 8 13:24:41 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 #413
---
 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 5459700c..d99727fb 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -58,7 +58,7 @@
   Support unusual Excel use cases: Add support for trailing data after 
the closing quote, and EOF without a final closing quote #303.
   MongoDB CSV empty first column parsing fix #412.
   
-  Bump 
commons-io:commons-io: from 2.11.0 to 2.16.0 #408.
+  Bump 
commons-io:commons-io: from 2.11.0 to 2.16.1 #408, #413.
   Bump commons-parent from 57 to 69 #410.
   Bump h2 from 
2.1.214 to 2.2.224 #333, #349, #359.
   Bump 
commons-lang3 from 3.12.0 to 3.14.0.



(commons-csv) branch master updated (b9270998 -> e9da8653)

2024-04-08 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-csv.git


from b9270998 Fix Javadoc warning
 add c29ffcd4 Bump commons-io:commons-io from 2.16.0 to 2.16.1
 new e9da8653 Merge pull request #413 from 
apache/dependabot/maven/commons-io-commons-io-2.16.1

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-release-plugin) branch dependabot/maven/commons-io-commons-io-2.16.1 created (now 2b6d914)

2024-04-08 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-release-plugin.git


  at 2b6d914  Bump commons-io:commons-io from 2.16.0 to 2.16.1

No new revisions were added by this update.



(commons-scxml) branch dependabot/maven/commons-io-commons-io-2.16.1 created (now f84ddaaf)

2024-04-08 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-scxml.git


  at f84ddaaf Bump commons-io:commons-io from 2.16.0 to 2.16.1

No new revisions were added by this update.



(commons-text) branch dependabot/maven/commons-io-commons-io-2.16.1 created (now 760e64fa)

2024-04-08 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-text.git


  at 760e64fa Bump commons-io:commons-io from 2.16.0 to 2.16.1

No new revisions were added by this update.



(commons-bcel) branch master updated: Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#300)

2024-04-08 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 1fe6337b Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#300)
1fe6337b is described below

commit 1fe6337b91274817339883b7092a26beed08db22
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 8 13:27:08 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#300)

Bumps commons-io:commons-io from 2.16.0 to 2.16.1.

---
updated-dependencies:
- dependency-name: commons-io:commons-io
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

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

diff --git a/pom.xml b/pom.xml
index f8eb033e..b891d661 100644
--- a/pom.xml
+++ b/pom.xml
@@ -371,7 +371,7 @@
 
   commons-io
   commons-io
-  2.16.0
+  2.16.1
   test
 
 
@@ -463,7 +463,7 @@
 
   commons-io
   commons-io
-  2.16.0
+  2.16.1
   test
 
 



(commons-bcel) branch master updated: Bump commons-io:commons-io from 2.16.0 to 2.16.1 #300

2024-04-08 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 19c959a5 Bump commons-io:commons-io from 2.16.0 to 2.16.1 #300
19c959a5 is described below

commit 19c959a5db7f64588c045457142c219886a4cdc6
Author: Gary Gregory 
AuthorDate: Mon Apr 8 13:27:43 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 #300
---
 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 c51bfac3..62de36c9 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -102,7 +102,7 @@ The  type attribute can be add,update,fix,remove.
   
   Bump org.apache.commons:commons-parent from 66 to 69 #283, 
#297.
   Bump org.jetbrains.kotlin:kotlin-stdlib from 1.9.22 to 
1.9.23 #284.
-  Bump commons-io:commons-io from 2.15.1 to 2.16.0 
#295.
+  Bump commons-io:commons-io from 2.15.1 to 2.16.1 #295, 
#300.
 
 
   



(commons-email) branch master updated (6a570c5 -> 7966780)

2024-04-08 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 6a570c5  Merge pull request #235 from 
apache/dependabot/github_actions/github/codeql-action-3.24.10
 add 81d31d6  Bump commons-io:commons-io from 2.16.0 to 2.16.1
 add 7966780  Merge pull request #236 from 
apache/dependabot/maven/commons-io-commons-io-2.16.1

No new revisions were added by this update.

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



(commons-email) branch dependabot/maven/commons-io-commons-io-2.16.1 deleted (was 81d31d6)

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

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


 was 81d31d6  Bump commons-io:commons-io from 2.16.0 to 2.16.1

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/maven/commons-io-commons-io-2.16.1 deleted (was e1e5703a)

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

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


 was e1e5703a Bump commons-io:commons-io from 2.16.0 to 2.16.1

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) branch master updated: Bump commons-io:commons-io from 2.16.0 to 2.16.1 #236

2024-04-08 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 e3c8675  Bump commons-io:commons-io from 2.16.0 to 2.16.1 #236
e3c8675 is described below

commit e3c8675d80fba5257cad043d610a293522a92cd1
Author: Gary Gregory 
AuthorDate: Mon Apr 8 13:28:24 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 #236
---
 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 b1fa817..c2ac434 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -33,7 +33,7 @@
   Bump 
com.github.davidmoten:subethasmtp from 6.0.7 to 7.0.2.
   Bump 
org.mockito:mockito-core from 5.8.0 to 5.11.0 #222.
   Bump 
commons-parent from 65 to 67.
-  Bump 
commons-io:commons-io from 2.15.1 to 2.16.0 #231.
+  Bump 
commons-io:commons-io from 2.15.1 to 2.16.1 #231, #236.
 
 
   



(commons-fileupload) branch master updated: Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#297)

2024-04-08 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 1533afde Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#297)
1533afde is described below

commit 1533afdecbefb01fa90dceab1d0bab20e4670dc5
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 8 13:28:31 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#297)

Bumps commons-io:commons-io from 2.16.0 to 2.16.1.

---
updated-dependencies:
- dependency-name: commons-io:commons-io
  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>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 386ae2f9..1588c2a8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -249,7 +249,7 @@
 !javax.portlet,*
 javax.portlet
 2.5
-2.16.0
+2.16.1
 3.14.0
 true
 true



(commons-fileupload) branch dependabot/maven/commons-io-commons-io-2.16.1 deleted (was 815ab5cb)

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

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


 was 815ab5cb Bump commons-io:commons-io from 2.16.0 to 2.16.1

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 commons-io:commons-io from 2.16.0 to 2.16.1 #297

2024-04-08 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 04e493b6 Bump commons-io:commons-io from 2.16.0 to 2.16.1 #297
04e493b6 is described below

commit 04e493b6e9d38ec67dd431473e9aa9861df89347
Author: Gary Gregory 
AuthorDate: Mon Apr 8 13:29:10 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 #297
---
 src/changes/changes.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 6eebbfbe..ca9024ee 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -49,6 +49,7 @@ The  type attribute can be add,update,fix,remove.
   
   
   Bump org.apache.commons:commons-parent from 66 to 67 #283.
+  Bump commons-io:commons-io from 2.16.0 to 2.16.1 #297.
 
 
   



(commons-net) branch master updated (b1b99012 -> a43449e1)

2024-04-08 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-net.git


from b1b99012 Merge pull request #239 from 
apache/dependabot/github_actions/codecov/codecov-action-4.2.0
 add 27680d1d Bump commons-io:commons-io from 2.16.0 to 2.16.1
 new a43449e1 Merge pull request #240 from 
apache/dependabot/maven/commons-io-commons-io-2.16.1

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-net) branch master updated: Bump commons-io:commons-io from 2.16.0 to 2.16.1 #240

2024-04-08 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 28958bfd Bump commons-io:commons-io from 2.16.0 to 2.16.1 #240
28958bfd is described below

commit 28958bfdf844f03572aa290b2227e2b1b61d345b
Author: Gary Gregory 
AuthorDate: Mon Apr 8 13:29:50 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 #240
---
 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 479b2cd5..42fc5ea4 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -79,7 +79,7 @@ The  type attribute can be add,update,fix,remove.
   Bump 
commons-parent from 62 to 69 #238.
   Bump 
org.codehaus.mojo:exec-maven-plugin from 3.1.0 to 3.2.0, #221.
   Bump 
commons-lang3 from 3.13.0 to 3.14.0.
-  Bump 
commons-io from 2.15.0 to 2.16.0 #236.
+  Bump 
commons-io from 2.15.0 to 2.16.1 #236, #240.
 
 
   



(commons-imaging) branch dependabot/maven/commons-io-commons-io-2.16.1 deleted (was eb97c779)

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

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


 was eb97c779 Bump commons-io:commons-io from 2.16.0 to 2.16.1

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-net) 01/01: Merge pull request #240 from apache/dependabot/maven/commons-io-commons-io-2.16.1

2024-04-08 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

commit a43449e1be31566dd35c7bec14dc1d48703fc670
Merge: b1b99012 27680d1d
Author: Gary Gregory 
AuthorDate: Mon Apr 8 13:29:18 2024 -0400

Merge pull request #240 from 
apache/dependabot/maven/commons-io-commons-io-2.16.1

Bump commons-io:commons-io from 2.16.0 to 2.16.1

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



(commons-net) branch dependabot/maven/commons-io-commons-io-2.16.1 deleted (was 27680d1d)

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

ggregory pushed a change to branch dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-net.git


 was 27680d1d Bump commons-io:commons-io from 2.16.0 to 2.16.1

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) branch master updated: Bump commons-io:commons-io from 2.16.0 to 2.16.1 #385

2024-04-08 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 79e606a6 Bump commons-io:commons-io from 2.16.0 to 2.16.1 #385
79e606a6 is described below

commit 79e606a63cb5eb42c321f9ddb7e2da5707c3e652
Author: Gary Gregory 
AuthorDate: Mon Apr 8 13:30:34 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 #385
---
 src/changes/changes.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index b9a1ccf9..fd65bb36 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -50,6 +50,7 @@ The  type attribute can be add,update,fix,remove.
   
   
   Bump 
org.apache.commons:commons-parent from 67 to 69 #382.
+  Bump 
commons-io:commons-io from 2.16.0 to 2.16.1 #385.
 
 
   



(commons-imaging) branch master updated (a990da73 -> d73c3fd5)

2024-04-08 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 a990da73 [IMAGING-332]: Add changelog after the release so users can 
find about it later
 add eb97c779 Bump commons-io:commons-io from 2.16.0 to 2.16.1
 new d73c3fd5 Merge pull request #385 from 
apache/dependabot/maven/commons-io-commons-io-2.16.1

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-release-plugin) branch master updated: Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#260)

2024-04-08 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-release-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new 17e70ed  Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#260)
17e70ed is described below

commit 17e70ed6263bb0193fd4978d0a9cdf7fb24e6c73
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 8 13:30:42 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#260)

Bumps commons-io:commons-io from 2.16.0 to 2.16.1.

---
updated-dependencies:
- dependency-name: commons-io:commons-io
  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>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 89d14ae..b928fdc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -154,7 +154,7 @@
 
   commons-io
   commons-io
-  2.16.0
+  2.16.1
 
 
   org.apache.maven



(commons-imaging) 01/01: Merge pull request #385 from apache/dependabot/maven/commons-io-commons-io-2.16.1

2024-04-08 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 d73c3fd5e1a6dea1d1d516936c8a1f196593fa22
Merge: a990da73 eb97c779
Author: Gary Gregory 
AuthorDate: Mon Apr 8 13:30:01 2024 -0400

Merge pull request #385 from 
apache/dependabot/maven/commons-io-commons-io-2.16.1

Bump commons-io:commons-io from 2.16.0 to 2.16.1

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



(commons-release-plugin) branch dependabot/maven/commons-io-commons-io-2.16.1 deleted (was 2b6d914)

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

ggregory pushed a change to branch dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-release-plugin.git


 was 2b6d914  Bump commons-io:commons-io from 2.16.0 to 2.16.1

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-release-plugin) branch master updated: Bump commons-io:commons-io from 2.16.0 to 2.16.1 #260

2024-04-08 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-release-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new 37ae0bb  Bump commons-io:commons-io from 2.16.0 to 2.16.1 #260
37ae0bb is described below

commit 37ae0bb8075e66fa04d25e9670e61ee030ab02d4
Author: Gary Gregory 
AuthorDate: Mon Apr 8 13:31:14 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 #260
---
 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 2e65705..ab1f624 100755
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -31,7 +31,7 @@
   Bump 
org.apache.maven.plugin-tools:maven-plugin-tools-ant from 3.9.0 to 
3.10.1.
   Bump 
org.apache.commons:commons-parent 58 to 69 #257.
   Bump 
org.apache.commons:commons-compress 1.23.0 to 1.26.1.
-  Bump 
commons-io:commons-io from 2.13.0 to 2.16.0 #253.
+  Bump 
commons-io:commons-io from 2.13.0 to 2.16.1 #253, #260.
   Bump 
maven.plugin.version from 3.10.1 to 3.12.0 #258.
   Bump 
org.apache.maven.plugins:maven-pmd-plugin from 3.20.0 to 3.21.2 #220.
   Bump 
maven.dependency.version from 3.9.5 to 3.9.6 #218.



(commons-text) branch master updated: Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#527)

2024-04-08 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 18da2212 Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#527)
18da2212 is described below

commit 18da2212dc4e7e357c28f34faf1125d7a7bddafd
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 8 13:31:24 2024 -0400

Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#527)

Bumps commons-io:commons-io from 2.16.0 to 2.16.1.

---
updated-dependencies:
- dependency-name: commons-io:commons-io
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

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 07de5c11..2c06d26d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -110,7 +110,7 @@
 
   commons-io
   commons-io
-  2.16.0
+  2.16.1
   test
 
 



(commons-text) branch dependabot/maven/commons-io-commons-io-2.16.1 deleted (was 760e64fa)

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

ggregory pushed a change to branch dependabot/maven/commons-io-commons-io-2.16.1
in repository https://gitbox.apache.org/repos/asf/commons-text.git


 was 760e64fa Bump commons-io:commons-io from 2.16.0 to 2.16.1

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



  1   2   >