[commons-jexl] 01/02: JEXL: Java 8 and formatting
This is an automated email from the ASF dual-hosted git repository. henrib pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jexl.git commit d5adda773a5df0decdcffb3d4419b8d428849e2b Author: henrib AuthorDate: Thu Nov 5 11:18:10 2020 +0100 JEXL: Java 8 and formatting --- .../jexl3/internal/introspection/ClassMap.java | 45 +- .../commons/jexl3/introspection/JexlUberspect.java | 96 ++ 2 files changed, 71 insertions(+), 70 deletions(-) diff --git a/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassMap.java b/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassMap.java index 43b9f02..002366f 100644 --- a/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassMap.java +++ b/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassMap.java @@ -39,6 +39,7 @@ import java.util.concurrent.ConcurrentMap; * * Originally taken from the Velocity tree so we can be self-sufficient. * + * * @see MethodKey * @since 1.0 */ @@ -46,6 +47,7 @@ final class ClassMap { /** * A method that returns itself used as a marker for cache miss, * allows the underlying cache map to be strongly typed. + * * @return itself as a method */ public static Method cacheMiss() { @@ -57,7 +59,9 @@ final class ClassMap { } } -/** The cache miss marker method. */ +/** + * The cache miss marker method. + */ private static final Method CACHE_MISS = cacheMiss(); /** * This is the cache to store and look up the method information. @@ -73,11 +77,11 @@ final class ClassMap { * * Uses ConcurrentMap since 3.0, marginally faster than 2.1 under contention. */ -private final ConcurrentMap byKey = new ConcurrentHashMap(); +private final ConcurrentMap byKey = new ConcurrentHashMap<>(); /** * Keep track of all methods with the same name; this is not modified after creation. */ -private final Map byName = new HashMap(); +private final Map byName = new HashMap<>(); /** * Cache of fields. */ @@ -86,9 +90,9 @@ final class ClassMap { /** * Standard constructor. * - * @param aClass the class to deconstruct. + * @param aClass the class to deconstruct. * @param permissions the permissions to apply during introspection - * @param logthe logger. + * @param log the logger. */ @SuppressWarnings("LeakingThisInConstructor") ClassMap(Class aClass, Permissions permissions, Log log) { @@ -97,7 +101,7 @@ final class ClassMap { // eagerly cache public fields Field[] fields = aClass.getFields(); if (fields.length > 0) { -Map cache = new HashMap(); +Map cache = new HashMap<>(); for (Field field : fields) { if (permissions.allow(field)) { cache.put(field.getName(), field); @@ -111,6 +115,7 @@ final class ClassMap { /** * Find a Field using its name. + * * @param fname the field name * @return A Field object representing the field to invoke or null. */ @@ -120,6 +125,7 @@ final class ClassMap { /** * Gets the field names cached by this map. + * * @return the array of field names */ String[] getFieldNames() { @@ -128,6 +134,7 @@ final class ClassMap { /** * Gets the methods names cached by this map. + * * @return the array of method names */ String[] getMethodNames() { @@ -136,6 +143,7 @@ final class ClassMap { /** * Gets all the methods with a given name from this map. + * * @param methodName the seeked methods name * @return the array of methods (null or non-empty) */ @@ -160,6 +168,7 @@ final class ClassMap { * If nothing is found, then we must actually go * and introspect the method from the MethodMap. * + * * @param methodKey the method key * @return A Method object representing the method to invoke or null. * @throws MethodKey.AmbiguousException When more than one method is a match for the parameters. @@ -196,6 +205,7 @@ final class ClassMap { /** * Populate the Map of direct hits. These are taken from all the public methods * that our class, its parents and their implemented interfaces provide. + * * @param cache the ClassMap instance we create * @param permissionsthe permissions to apply during introspection * @param classToReflect the class to cache @@ -221,15 +231,10 @@ final class ClassMap { } // now that we've got all methods keyed in, lets organize them by name if (!cache.byKey.isEmpty()) { -List lm = new ArrayList(cache.byKey.size()); +List lm = new ArrayList<>(cache.byKey.size()); lm.addAll(cache.byKey.v
[commons-jexl] 02/02: JEXL-337: JaCoCo check limits, doxia docs warning fixes
This is an automated email from the ASF dual-hosted git repository. henrib pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jexl.git commit eaa7a94ee2d5f3b1f2714d4fb7f3e28095cc36dc Author: henrib AuthorDate: Thu Nov 5 11:22:10 2020 +0100 JEXL-337: JaCoCo check limits, doxia docs warning fixes --- pom.xml| 21 + src/site/xdoc/changes.xml | 2 +- src/site/xdoc/reference/syntax.xml | 8 3 files changed, 26 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 4b6b821..9543cf9 100644 --- a/pom.xml +++ b/pom.xml @@ -183,6 +183,27 @@ **/org/apache/commons/jexl3/parser/*.class **/org/apache/commons/jexl3/**/*Test.class + + + + +INSTRUCTION +COVEREDRATIO +85.0% + + +LINE +COVEREDRATIO +0.75 + + +BRANCH +COVEREDRATIO +0.75 + + + + diff --git a/src/site/xdoc/changes.xml b/src/site/xdoc/changes.xml index e84010a..661e8a8 100644 --- a/src/site/xdoc/changes.xml +++ b/src/site/xdoc/changes.xml @@ -25,7 +25,7 @@ Commons Developers - + Escape some control characters diff --git a/src/site/xdoc/reference/syntax.xml b/src/site/xdoc/reference/syntax.xml index bdae6d7..3b718df 100644 --- a/src/site/xdoc/reference/syntax.xml +++ b/src/site/xdoc/reference/syntax.xml @@ -133,14 +133,14 @@ Pragma keys can be identifiers or antish names, pragma values can be literals (boolean, integer, real, string, null, NaN) and antish names Although pragmas are statements, they are not evaluated at runtime; they are constants -associated to the script after parsing. It is expected that user code accesses the pragma map from +associated to the script after parsing. It is expected that user code accesses the pragma map from scripts to alter some functions behavior. The are two built-in pragmas: jexl.options overrides the evaluation options using the option-flags syntax. #pragma jexl.options "+strict -safe +lexical +lexicalShade" will let the script run with the options strict being true, safe false, lexical true and lexical-shade true. - + jexl.namespace.ns_prefix declares a namespace valid for the script execution lifetime, the value being the fully-qualified namespace class-name. @@ -360,11 +360,11 @@ 'Hello world' are equivalent. The escape character is \ (backslash). Unicode characters can be used in string literals; -Unicode escape sequences consist of: +Unicode escape sequences consist of: a backslash '\' a 'u' 4 hexadecimal digits ([0-9],[A-H],[a-h]). - + Such sequences represent the UTF-16 encoding of a Unicode character, for example, 'a' is equivalent to '\u0061'.
[commons-jexl] branch master updated (d70e659 -> eaa7a94)
This is an automated email from the ASF dual-hosted git repository. henrib pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-jexl.git. from d70e659 Jacoco uses the config in the build section new d5adda7 JEXL: Java 8 and formatting new eaa7a94 JEXL-337: JaCoCo check limits, doxia docs warning fixes 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| 21 + .../jexl3/internal/introspection/ClassMap.java | 45 +- .../commons/jexl3/introspection/JexlUberspect.java | 96 ++ src/site/xdoc/changes.xml | 2 +- src/site/xdoc/reference/syntax.xml | 8 +- 5 files changed, 97 insertions(+), 75 deletions(-)
[commons-geometry] branch master updated: Lower visibility level.
This is an automated email from the ASF dual-hosted git repository. erans pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-geometry.git The following commit(s) were added to refs/heads/master by this push: new 2454906 Lower visibility level. 2454906 is described below commit 24549060f14521f322faa507fc157abd32061bc7 Author: Gilles Sadowski AuthorDate: Thu Nov 5 14:21:59 2020 +0100 Lower visibility level. --- .../apache/commons/geometry/core/internal/IteratorTransform.java| 2 +- .../commons/geometry/core/partitioning/bsp/BSPTreeVisitor.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/commons-geometry-core/src/main/java/org/apache/commons/geometry/core/internal/IteratorTransform.java b/commons-geometry-core/src/main/java/org/apache/commons/geometry/core/internal/IteratorTransform.java index b60d40d..c3d60df 100644 --- a/commons-geometry-core/src/main/java/org/apache/commons/geometry/core/internal/IteratorTransform.java +++ b/commons-geometry-core/src/main/java/org/apache/commons/geometry/core/internal/IteratorTransform.java @@ -38,7 +38,7 @@ public abstract class IteratorTransform implements Iterator { /** Create a new instance that uses the given iterator as the input source. * @param inputIterator iterator supplying input values */ -public IteratorTransform(final Iterator inputIterator) { +protected IteratorTransform(final Iterator inputIterator) { this.inputIterator = inputIterator; } diff --git a/commons-geometry-core/src/main/java/org/apache/commons/geometry/core/partitioning/bsp/BSPTreeVisitor.java b/commons-geometry-core/src/main/java/org/apache/commons/geometry/core/partitioning/bsp/BSPTreeVisitor.java index 8806205..7df94e3 100644 --- a/commons-geometry-core/src/main/java/org/apache/commons/geometry/core/partitioning/bsp/BSPTreeVisitor.java +++ b/commons-geometry-core/src/main/java/org/apache/commons/geometry/core/partitioning/bsp/BSPTreeVisitor.java @@ -110,7 +110,7 @@ public interface BSPTreeVisitor, N extends BSPTree.Node /** Simple constructor. * @param target the point serving as the target for the tree traversal */ -public TargetPointVisitor(final P target) { +protected TargetPointVisitor(final P target) { this.target = target; } @@ -135,7 +135,7 @@ public interface BSPTreeVisitor, N extends BSPTree.Node /** Simple constructor. * @param target the point serving as the target for the traversal */ -public ClosestFirstVisitor(final P target) { +protected ClosestFirstVisitor(final P target) { super(target); } @@ -162,7 +162,7 @@ public interface BSPTreeVisitor, N extends BSPTree.Node /** Simple constructor. * @param target the point serving as the target for the traversal */ -public FarthestFirstVisitor(final P target) { +protected FarthestFirstVisitor(final P target) { super(target); }
[commons-jcs] branch master updated: Guard against null return value from java.net.NetworkInterface.getNetworkInterfaces().
This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jcs.git The following commit(s) were added to refs/heads/master by this push: new 28af86f Guard against null return value from java.net.NetworkInterface.getNetworkInterfaces(). 28af86f is described below commit 28af86f15dea1467b8b91a0353ca1355bae8325b Author: Gary Gregory AuthorDate: Thu Nov 5 09:26:24 2020 -0500 Guard against null return value from java.net.NetworkInterface.getNetworkInterfaces(). --- .../commons/jcs3/utils/net/HostNameUtil.java | 64 -- .../BasicRemoteCacheClientServerUnitTest.java | 27 + 2 files changed, 50 insertions(+), 41 deletions(-) diff --git a/commons-jcs-core/src/main/java/org/apache/commons/jcs3/utils/net/HostNameUtil.java b/commons-jcs-core/src/main/java/org/apache/commons/jcs3/utils/net/HostNameUtil.java index 863388b..b6f2b1f 100644 --- a/commons-jcs-core/src/main/java/org/apache/commons/jcs3/utils/net/HostNameUtil.java +++ b/commons-jcs-core/src/main/java/org/apache/commons/jcs3/utils/net/HostNameUtil.java @@ -111,27 +111,31 @@ public class HostNameUtil { InetAddress candidateAddress = null; // Iterate all NICs (network interface cards)... -for ( Enumeration ifaces = NetworkInterface.getNetworkInterfaces(); ifaces.hasMoreElements(); ) +Enumeration ifaces = NetworkInterface.getNetworkInterfaces(); +if ( ifaces != null ) { -NetworkInterface iface = ifaces.nextElement(); -// Iterate all IP addresses assigned to each card... -for ( Enumeration inetAddrs = iface.getInetAddresses(); inetAddrs.hasMoreElements(); ) +while ( ifaces.hasMoreElements() ) { -InetAddress inetAddr = inetAddrs.nextElement(); -if ( !inetAddr.isLoopbackAddress() ) +NetworkInterface iface = ifaces.nextElement(); +// Iterate all IP addresses assigned to each card... +for ( Enumeration inetAddrs = iface.getInetAddresses(); inetAddrs.hasMoreElements(); ) { -if ( inetAddr.isSiteLocalAddress() ) +InetAddress inetAddr = inetAddrs.nextElement(); +if ( !inetAddr.isLoopbackAddress() ) { -// Found non-loopback site-local address. Return it immediately... -return inetAddr; -} -else if ( candidateAddress == null ) -{ -// Found non-loopback address, but not necessarily site-local. -// Store it as a candidate to be returned if site-local address is not subsequently found... -candidateAddress = inetAddr; -// Note that we don't repeatedly assign non-loopback non-site-local addresses as candidates, -// only the first. For subsequent iterations, candidate will be non-null. +if ( inetAddr.isSiteLocalAddress() ) +{ +// Found non-loopback site-local address. Return it immediately... +return inetAddr; +} +else if ( candidateAddress == null ) +{ +// Found non-loopback address, but not necessarily site-local. +// Store it as a candidate to be returned if site-local address is not subsequently found... +candidateAddress = inetAddr; +// Note that we don't repeatedly assign non-loopback non-site-local addresses as candidates, +// only the first. For subsequent iterations, candidate will be non-null. +} } } } @@ -172,20 +176,22 @@ public class HostNameUtil public static NetworkInterface getMulticastNetworkInterface() throws SocketException { Enumeration networkInterfaces = NetworkInterface.getNetworkInterfaces(); -while (networkInterfaces.hasMoreElements()) -{ -NetworkInterface networkInterface = networkInterfaces.nextElement(); -Enumeration addressesFromNetworkInterface = networkInterface.getInetAddresses(); -while (addressesFromNetworkInterface.hasMoreElements()) +if (networkInterfaces != null) { +while (networkInterfaces.hasMoreElements()) { -InetAddress inetAddress = addressesFro
[commons-fileupload] branch master updated (bf7157c -> c0f8c66)
This is an automated email from the ASF dual-hosted git repository. jochen pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git. from bf7157c Merge pull request #43 from apache/dependabot/maven/jakarta.servlet-jakarta.servlet-api-5.0.0 add d04b645 Bump commons-parent from 50 to 52 add c0f8c66 Merge pull request #39 from apache/dependabot/maven/org.apache.commons-commons-parent-52 No new revisions were added by this update. Summary of changes: pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[commons-fileupload] branch master updated (60d4c29 -> bf7157c)
This is an automated email from the ASF dual-hosted git repository. jochen pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git. from 60d4c29 Typo. add 59a057f Bump jakarta.servlet-api from 5.0.0-M1 to 5.0.0 add bf7157c Merge pull request #43 from apache/dependabot/maven/jakarta.servlet-jakarta.servlet-api-5.0.0 No new revisions were added by this update. Summary of changes: pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[commons-fileupload] branch master updated (bfea06a -> 5f9b18d)
This is an automated email from the ASF dual-hosted git repository. jochen pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git. from bfea06a Merge pull request #29 from xenoamess-fork/patch-2 add 6851161 Bump actions/checkout from v2.3.2 to v2.3.4 add 5f9b18d Merge pull request #45 from apache/dependabot/github_actions/actions/checkout-v2.3.4 No new revisions were added by this update. Summary of changes: .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[commons-fileupload] branch master updated (c0f8c66 -> bfea06a)
This is an automated email from the ASF dual-hosted git repository. jochen pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git. from c0f8c66 Merge pull request #39 from apache/dependabot/maven/org.apache.commons-commons-parent-52 new b8c93ca fix travis-ci scripts new 368c17f Merge branch 'master' into patch-2 new bfea06a Merge pull request #29 from xenoamess-fork/patch-2 The 1028 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: .travis.yml | 68 +++-- 1 file changed, 35 insertions(+), 33 deletions(-)
[commons-fileupload] branch master updated (bf7157c -> c0f8c66)
This is an automated email from the ASF dual-hosted git repository. jochen pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git. from bf7157c Merge pull request #43 from apache/dependabot/maven/jakarta.servlet-jakarta.servlet-api-5.0.0 add d04b645 Bump commons-parent from 50 to 52 add c0f8c66 Merge pull request #39 from apache/dependabot/maven/org.apache.commons-commons-parent-52 No new revisions were added by this update. Summary of changes: pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[commons-fileupload] branch master updated (60d4c29 -> bf7157c)
This is an automated email from the ASF dual-hosted git repository. jochen pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git. from 60d4c29 Typo. add 59a057f Bump jakarta.servlet-api from 5.0.0-M1 to 5.0.0 add bf7157c Merge pull request #43 from apache/dependabot/maven/jakarta.servlet-jakarta.servlet-api-5.0.0 No new revisions were added by this update. Summary of changes: pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[commons-fileupload] branch master updated (0e39fdd -> 3e66bc7)
This is an automated email from the ASF dual-hosted git repository. jochen pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git. from 0e39fdd Merge pull request #44 from apache/dependabot/maven/biz.aQute.bnd-biz.aQute.bndlib-5.2.0 add fa9a36e Bump actions/setup-java from v1.4.2 to v1.4.3 add 3e66bc7 Merge pull request #42 from apache/dependabot/github_actions/actions/setup-java-v1.4.3 No new revisions were added by this update. Summary of changes: .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[commons-fileupload] branch master updated (5f9b18d -> 0e39fdd)
This is an automated email from the ASF dual-hosted git repository. jochen pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git. from 5f9b18d Merge pull request #45 from apache/dependabot/github_actions/actions/checkout-v2.3.4 add 4f919bf Bump biz.aQute.bndlib from 5.1.0 to 5.2.0 add 0e39fdd Merge pull request #44 from apache/dependabot/maven/biz.aQute.bnd-biz.aQute.bndlib-5.2.0 No new revisions were added by this update. Summary of changes: pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[commons-fileupload] branch master updated (3e66bc7 -> 53c8d88)
This is an automated email from the ASF dual-hosted git repository. jochen pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git. from 3e66bc7 Merge pull request #42 from apache/dependabot/github_actions/actions/setup-java-v1.4.3 add 366a30c Bump maven-pmd-plugin from 3.12.0 to 3.13.0 new 53c8d88 Merge pull request #35 from apache/dependabot/maven/org.apache.maven.plugins-maven-pmd-plugin-3.13.0 The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[commons-fileupload] 01/01: Merge pull request #35 from apache/dependabot/maven/org.apache.maven.plugins-maven-pmd-plugin-3.13.0
This is an automated email from the ASF dual-hosted git repository. jochen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git commit 53c8d88c1173ec40df46d287e6623b9c95ccfedf Merge: 3e66bc7 366a30c Author: Jochen Wiedmann AuthorDate: Thu Nov 5 23:40:07 2020 +0100 Merge pull request #35 from apache/dependabot/maven/org.apache.maven.plugins-maven-pmd-plugin-3.13.0 Bump maven-pmd-plugin from 3.12.0 to 3.13.0 pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[commons-fileupload] 01/01: Merge pull request #35 from apache/dependabot/maven/org.apache.maven.plugins-maven-pmd-plugin-3.13.0
This is an automated email from the ASF dual-hosted git repository. jochen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git commit 53c8d88c1173ec40df46d287e6623b9c95ccfedf Merge: 3e66bc7 366a30c Author: Jochen Wiedmann AuthorDate: Thu Nov 5 23:40:07 2020 +0100 Merge pull request #35 from apache/dependabot/maven/org.apache.maven.plugins-maven-pmd-plugin-3.13.0 Bump maven-pmd-plugin from 3.12.0 to 3.13.0 pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[commons-fileupload] branch master updated (3e66bc7 -> 53c8d88)
This is an automated email from the ASF dual-hosted git repository. jochen pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git. from 3e66bc7 Merge pull request #42 from apache/dependabot/github_actions/actions/setup-java-v1.4.3 add 366a30c Bump maven-pmd-plugin from 3.12.0 to 3.13.0 new 53c8d88 Merge pull request #35 from apache/dependabot/maven/org.apache.maven.plugins-maven-pmd-plugin-3.13.0 The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[commons-fileupload] branch dependabot/maven/commons-io-commons-io-2.8.0 created (now 43ac01c)
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.8.0 in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git. at 43ac01c Bump commons-io from 2.7 to 2.8.0 No new revisions were added by this update.
[commons-fileupload] branch dependabot/maven/org.junit.jupiter-junit-jupiter-5.7.0 created (now e463b7f)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.junit.jupiter-junit-jupiter-5.7.0 in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git. at e463b7f Bump junit-jupiter from 5.6.2 to 5.7.0 No new revisions were added by this update.
[commons-fileupload] branch dependabot/maven/org.junit.jupiter-junit-jupiter-5.7.0 created (now e463b7f)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.junit.jupiter-junit-jupiter-5.7.0 in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git. at e463b7f Bump junit-jupiter from 5.6.2 to 5.7.0 No new revisions were added by this update.
[commons-fileupload] branch dependabot/maven/commons-io-commons-io-2.8.0 created (now 43ac01c)
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.8.0 in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git. at 43ac01c Bump commons-io from 2.7 to 2.8.0 No new revisions were added by this update.