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 c361ae5 Upgrade ftpserver-core from 1.1.2 to 1.1.3. c361ae5 is described below commit c361ae52d6fe8eb350bd6328de0e718077f7d889 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Mar 4 11:13:48 2022 -0500 Upgrade ftpserver-core from 1.1.2 to 1.1.3. 1.1.3 BREAKS binary compatibility with 1.1.2: https://issues.apache.org/jira/browse/FTPSERVER-506 --- pom.xml | 2 +- src/changes/changes.xml | 4 ++-- .../org/apache/commons/net/ftp/NoProtocolSslConfigurationProxy.java | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index fa2d14e..4c00214 100644 --- a/pom.xml +++ b/pom.xml @@ -103,7 +103,7 @@ Supported protocols include: Echo, Finger, FTP, NNTP, NTP, POP3(S), SMTP(S), Tel <dependency> <groupId>org.apache.ftpserver</groupId> <artifactId>ftpserver-core</artifactId> - <version>1.1.2</version> + <version>1.1.3</version> <scope>test</scope> </dependency> <dependency> diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 0650fcc..e4f281a 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -124,8 +124,8 @@ The <action> type attribute can be add,update,fix,remove. <action type="update" dev="ggregory" due-to="Dependabot"> Bump actions/cache from 2.1.6 to 2.1.7 #93. </action> - <action type="update" dev="ggregory" due-to="XenoAmess"> - Upgrade ftpserver-core from 1.1.1 to 1.1.2 #96. + <action type="update" dev="ggregory" due-to="XenoAmess, Gary Gregory"> + Upgrade ftpserver-core from 1.1.1 to 1.1.3 #96. </action> </release> <release version="3.8.0" date="2021-02-13" description="Maintenance and bug fix release (Java 7)."> diff --git a/src/test/java/org/apache/commons/net/ftp/NoProtocolSslConfigurationProxy.java b/src/test/java/org/apache/commons/net/ftp/NoProtocolSslConfigurationProxy.java index 096d7ea..7a26989 100644 --- a/src/test/java/org/apache/commons/net/ftp/NoProtocolSslConfigurationProxy.java +++ b/src/test/java/org/apache/commons/net/ftp/NoProtocolSslConfigurationProxy.java @@ -30,7 +30,7 @@ import org.apache.ftpserver.ssl.SslConfiguration; public class NoProtocolSslConfigurationProxy implements SslConfiguration { @Override - public String getEnabledProtocol() { + public String[] getEnabledProtocols() { return null; }