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 1cc5b6e7 Prepare for the next release candidate
1cc5b6e7 is described below
commit 1cc5b6e77d86bb54131742fee175e7c700bbf2ca
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Mar 15 14:12:29 2026 +0000
Prepare for the next release candidate
---
CONTRIBUTING.md | 1 -
README.md | 7 +++--
RELEASE-NOTES.txt | 61 ++++++++++++++++++++++++++++++++++++++++++
src/changes/changes.xml | 2 +-
src/changes/release-notes.vm | 2 +-
src/site/xdoc/download_net.xml | 26 +++++++++---------
6 files changed, 79 insertions(+), 20 deletions(-)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index f7d21a1d..c4b6a151 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -110,7 +110,6 @@ Additional Resources
+ [Contributor License Agreement][cla]
+ [General GitHub documentation](https://help.github.com/)
+ [GitHub pull request
documentation](https://help.github.com/articles/creating-a-pull-request/)
-+ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
[cla]:https://www.apache.org/licenses/#clas
[jira]:https://issues.apache.org/jira/browse/NET
diff --git a/README.md b/README.md
index 146e9b7f..ccf920a8 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ Apache Commons Net
[](https://github.com/apache/commons-net/actions/workflows/maven.yml)
[](https://search.maven.org/artifact/commons-net/commons-net)
-[](https://javadoc.io/doc/commons-net/commons-net/3.12.0)
+[](https://javadoc.io/doc/commons-net/commons-net/3.13.0)
[](https://github.com/apache/commons-net/actions/workflows/codeql-analysis.yml)
[](https://api.securityscorecards.dev/projects/github.com/apache/commons-net)
@@ -69,7 +69,7 @@ Alternatively, you can pull it from the central Maven
repositories:
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
- <version>3.12.0</version>
+ <version>3.13.0</version>
</dependency>
```
@@ -90,7 +90,7 @@ There are some guidelines which will make applying PRs easier
for us:
+ Respect the existing code style for each file.
+ Create minimal diffs - disable on save actions like reformat source code or
organize imports. If you feel the source code should be reformatted create a
separate PR for this change.
+ Provide JUnit tests for your changes and make sure your changes don't break
any existing tests by running `mvn`.
-+ Before you pushing a PR, run `mvn` (by itself), this runs the default goal,
which contains all build checks.
++ Before you push a PR, run `mvn` (without arguments). This runs the default
goal which contains all build checks.
+ To see the code coverage report, regardless of coverage failures, run `mvn
clean site -Dcommons.jacoco.haltOnFailure=false -Pjacoco`
If you plan to contribute on a regular basis, please consider filing a
[contributor license agreement](https://www.apache.org/licenses/#clas).
@@ -112,7 +112,6 @@ Additional Resources
+ [Apache Commons Homepage](https://commons.apache.org/)
+ [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/NET)
+ [Apache Commons Slack Channel](https://the-asf.slack.com/archives/C60NVB8AD)
-+ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
Apache Commons Components
-------------------------
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index c4ba6a4c..24a66174 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -1,3 +1,64 @@
+Apache Commons Net 3.13.0 Release Notes
+---------------------------------------
+
+The Apache Commons Net team is pleased to announce the release of Apache
Commons Net 3.13.0.
+
+Apache Commons Net library contains a collection of network utilities and
protocol implementations.
+Supported protocols include Echo, Finger, FTP, NNTP, NTP, POP3(S), SMTP(S),
Telnet, and Whois.
+
+
+This is a feature and maintenance release. Java 8 or later is required.
+
+For complete information on Apache Commons Net, including instructions on how
to submit bug reports,
+patches, or suggestions for improvement, see the Apache Commons Net website:
+
+https://commons.apache.org/proper/commons-net/
+
+Download page: https://commons.apache.org/proper/commons-net/download_net.cgi
+
+
+New features
+------------
+
+o Add DatagramSocketClient.getDefaultTimeoutDuration() and deprecate
getDefaultTimeout(). Thanks to Gary Gregory.
+o NET-741: Add subnet IPv6 handling with SubnetUtils6 #391. Thanks to Maros
Orsak, Gary Gregory.
+
+Fixed Bugs
+----------
+
+o DaytimeTCPClientTest now should now pass inside most VPNs. Thanks
to Henri Biestro, Gary Gregory.
+o Migrate tests to JUnit5 #358, #359. Thanks to Jakub Kupczyk, Gary
Gregory.
+o Fix malformed Javadoc comments. Thanks to Gary Gregory.
+o IMAPExportMbox now restores the current thread's interrupt flag
when catching InterruptedException. Thanks to Gary Gregory.
+o IOUtil.readWrite() now restores the current thread's interrupt
flag when catching InterruptedException. Thanks to Gary Gregory.
+o TelnetInputStream now restores the current thread's interrupt flag
when catching InterruptedException. Thanks to Gary Gregory.
+o NET-740: FTP fails to parse listings for Linux vsftpd in Chinese or
Japanese #393. Thanks to Jianwei Guo, Gary Gregory.
+o TelnetInputStream.read() doesn't preserve the original
InterruptedException as the cause of its InterruptedIOException. Thanks to Gary
Gregory.
+o FTPClient._storeFile(String, String, InputStream) doesn't always
close it's internal socket when an exception is thrown early in processing.
Thanks to Gary Gregory.
+o ListenerList.removeListener(T) now ignores null input to avoid a
NullPointerException. Thanks to Gary Gregory.
+o ListenerList.addListener(T) now ignores null input. Thanks to Gary
Gregory.
+o Fix typo in FTPConnectionClosedException message from
FTP.getReply(boolean). Thanks to Gary Gregory.
+o Reimplement Util.copyReader() with IOUtils.copyLarge(). Thanks to
Gary Gregory.
+o Reimplement Util.copyStream() with IOUtils.copyLarge(). Thanks to
Gary Gregory.
+o Reimplement Util.copyStream() with IOUtils.copyLarge(). Thanks to
Gary Gregory.
+o Deprecate Util.copyReader(Reader, Writer) in favor of
IOUtils.copyLarge(Reader, Writer). Thanks to Gary Gregory.
+
+Changes
+-------
+
+o Bump org.apache.commons:commons-parent from 85 to 97 #371, #388,
#389. Thanks to Gary Gregory, Dependabot.
+o Bump org.apache.commons:commons-lang3 from 3.18.0 to 3.19.0.
Thanks to Gary Gregory, Dependabot.
+o Bump commons-io:commons-io from 2.20.0 to 2.21.0. Thanks to Gary
Gregory.
+o Bump Util.DEFAULT_COPY_BUFFER_SIZE from 1 KiB to 8 KiB. Thanks to
Gary Gregory.
+
+
+Historical list of changes:
https://commons.apache.org/proper/commons-net/changes.html
+
+Enjoy!
+-Apache Commons Net team
+
+-----------------------------------------------------------------------------
+
Apache Commons Net 3.12.0 Release Notes
---------------------------------------
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 90a1a6ad..07c7efe7 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -61,7 +61,7 @@ The <action> type attribute can be add,update,fix,remove.
Defining changes.version allows one to create the RN without first
removing the SNAPSHOT suffix.
-->
<body>
- <release version="3.13.0" date="YYYY-MM-DD" description="This is a feature
and maintenance release. Java 8 or later is required.">
+ <release version="3.13.0" date="2026-03-15" description="This is a feature
and maintenance release. Java 8 or later is required.">
<!-- FIX -->
<action type="fix" dev="ggregory" due-to="Henri Biestro, Gary
Gregory">DaytimeTCPClientTest now should now pass inside most VPNs.</action>
<action type="fix" dev="ggregory" due-to="Jakub Kupczyk, Gary
Gregory">Migrate tests to JUnit5 #358, #359.</action>
diff --git a/src/changes/release-notes.vm b/src/changes/release-notes.vm
index 1a16be75..d17d428a 100644
--- a/src/changes/release-notes.vm
+++ b/src/changes/release-notes.vm
@@ -16,7 +16,7 @@
## under the License.
##
${project.name} ${version} Release Notes
-------------------------------------------------
+---------------------------------------
The ${developmentTeam} is pleased to announce the release of ${project.name}
${version}.
diff --git a/src/site/xdoc/download_net.xml b/src/site/xdoc/download_net.xml
index a10823f8..b9fe82f0 100644
--- a/src/site/xdoc/download_net.xml
+++ b/src/site/xdoc/download_net.xml
@@ -115,32 +115,32 @@ limitations under the License.
</p>
</subsection>
</section>
- <section name="Apache Commons Net 3.12.0 (Requires Java 1.8 or later)">
+ <section name="Apache Commons Net 3.13.0 (Requires Java 1.8 or later)">
<subsection name="Binaries">
<table>
<tr>
- <td><a
href="[preferred]/commons/net/binaries/commons-net-3.12.0-bin.tar.gz">commons-net-3.12.0-bin.tar.gz</a></td>
- <td><a
href="https://downloads.apache.org/commons/net/binaries/commons-net-3.12.0-bin.tar.gz.sha512">sha512</a></td>
- <td><a
href="https://downloads.apache.org/commons/net/binaries/commons-net-3.12.0-bin.tar.gz.asc">pgp</a></td>
+ <td><a
href="[preferred]/commons/net/binaries/commons-net-3.13.0-bin.tar.gz">commons-net-3.13.0-bin.tar.gz</a></td>
+ <td><a
href="https://downloads.apache.org/commons/net/binaries/commons-net-3.13.0-bin.tar.gz.sha512">sha512</a></td>
+ <td><a
href="https://downloads.apache.org/commons/net/binaries/commons-net-3.13.0-bin.tar.gz.asc">pgp</a></td>
</tr>
<tr>
- <td><a
href="[preferred]/commons/net/binaries/commons-net-3.12.0-bin.zip">commons-net-3.12.0-bin.zip</a></td>
- <td><a
href="https://downloads.apache.org/commons/net/binaries/commons-net-3.12.0-bin.zip.sha512">sha512</a></td>
- <td><a
href="https://downloads.apache.org/commons/net/binaries/commons-net-3.12.0-bin.zip.asc">pgp</a></td>
+ <td><a
href="[preferred]/commons/net/binaries/commons-net-3.13.0-bin.zip">commons-net-3.13.0-bin.zip</a></td>
+ <td><a
href="https://downloads.apache.org/commons/net/binaries/commons-net-3.13.0-bin.zip.sha512">sha512</a></td>
+ <td><a
href="https://downloads.apache.org/commons/net/binaries/commons-net-3.13.0-bin.zip.asc">pgp</a></td>
</tr>
</table>
</subsection>
<subsection name="Source">
<table>
<tr>
- <td><a
href="[preferred]/commons/net/source/commons-net-3.12.0-src.tar.gz">commons-net-3.12.0-src.tar.gz</a></td>
- <td><a
href="https://downloads.apache.org/commons/net/source/commons-net-3.12.0-src.tar.gz.sha512">sha512</a></td>
- <td><a
href="https://downloads.apache.org/commons/net/source/commons-net-3.12.0-src.tar.gz.asc">pgp</a></td>
+ <td><a
href="[preferred]/commons/net/source/commons-net-3.13.0-src.tar.gz">commons-net-3.13.0-src.tar.gz</a></td>
+ <td><a
href="https://downloads.apache.org/commons/net/source/commons-net-3.13.0-src.tar.gz.sha512">sha512</a></td>
+ <td><a
href="https://downloads.apache.org/commons/net/source/commons-net-3.13.0-src.tar.gz.asc">pgp</a></td>
</tr>
<tr>
- <td><a
href="[preferred]/commons/net/source/commons-net-3.12.0-src.zip">commons-net-3.12.0-src.zip</a></td>
- <td><a
href="https://downloads.apache.org/commons/net/source/commons-net-3.12.0-src.zip.sha512">sha512</a></td>
- <td><a
href="https://downloads.apache.org/commons/net/source/commons-net-3.12.0-src.zip.asc">pgp</a></td>
+ <td><a
href="[preferred]/commons/net/source/commons-net-3.13.0-src.zip">commons-net-3.13.0-src.zip</a></td>
+ <td><a
href="https://downloads.apache.org/commons/net/source/commons-net-3.13.0-src.zip.sha512">sha512</a></td>
+ <td><a
href="https://downloads.apache.org/commons/net/source/commons-net-3.13.0-src.zip.asc">pgp</a></td>
</tr>
</table>
</subsection>