Skip to content

Commit 1cc5b6e

Browse files
committed
Prepare for the next release candidate
1 parent a4b246e commit 1cc5b6e

6 files changed

Lines changed: 79 additions & 20 deletions

File tree

CONTRIBUTING.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ Additional Resources
110110
+ [Contributor License Agreement][cla]
111111
+ [General GitHub documentation](https://help.github.com/)
112112
+ [GitHub pull request documentation](https://help.github.com/articles/creating-a-pull-request/)
113-
+ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
114113

115114
[cla]:https://www.apache.org/licenses/#clas
116115
[jira]:https://issues.apache.org/jira/browse/NET

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Apache Commons Net
4545

4646
[![Java CI](https://github.com/apache/commons-net/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-net/actions/workflows/maven.yml)
4747
[![Maven Central](https://img.shields.io/maven-central/v/commons-net/commons-net?label=Maven%20Central)](https://search.maven.org/artifact/commons-net/commons-net)
48-
[![Javadocs](https://javadoc.io/badge/commons-net/commons-net/3.12.0.svg)](https://javadoc.io/doc/commons-net/commons-net/3.12.0)
48+
[![Javadocs](https://javadoc.io/badge/commons-net/commons-net/3.13.0.svg)](https://javadoc.io/doc/commons-net/commons-net/3.13.0)
4949
[![CodeQL](https://github.com/apache/commons-net/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/apache/commons-net/actions/workflows/codeql-analysis.yml)
5050
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/apache/commons-net/badge)](https://api.securityscorecards.dev/projects/github.com/apache/commons-net)
5151

@@ -69,7 +69,7 @@ Alternatively, you can pull it from the central Maven repositories:
6969
<dependency>
7070
<groupId>commons-net</groupId>
7171
<artifactId>commons-net</artifactId>
72-
<version>3.12.0</version>
72+
<version>3.13.0</version>
7373
</dependency>
7474
```
7575

@@ -90,7 +90,7 @@ There are some guidelines which will make applying PRs easier for us:
9090
+ Respect the existing code style for each file.
9191
+ 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.
9292
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running `mvn`.
93-
+ Before you pushing a PR, run `mvn` (by itself), this runs the default goal, which contains all build checks.
93+
+ Before you push a PR, run `mvn` (without arguments). This runs the default goal which contains all build checks.
9494
+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false -Pjacoco`
9595

9696
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
112112
+ [Apache Commons Homepage](https://commons.apache.org/)
113113
+ [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/NET)
114114
+ [Apache Commons Slack Channel](https://the-asf.slack.com/archives/C60NVB8AD)
115-
+ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
116115

117116
Apache Commons Components
118117
-------------------------

RELEASE-NOTES.txt

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,64 @@
1+
Apache Commons Net 3.13.0 Release Notes
2+
---------------------------------------
3+
4+
The Apache Commons Net team is pleased to announce the release of Apache Commons Net 3.13.0.
5+
6+
Apache Commons Net library contains a collection of network utilities and protocol implementations.
7+
Supported protocols include Echo, Finger, FTP, NNTP, NTP, POP3(S), SMTP(S), Telnet, and Whois.
8+
9+
10+
This is a feature and maintenance release. Java 8 or later is required.
11+
12+
For complete information on Apache Commons Net, including instructions on how to submit bug reports,
13+
patches, or suggestions for improvement, see the Apache Commons Net website:
14+
15+
https://commons.apache.org/proper/commons-net/
16+
17+
Download page: https://commons.apache.org/proper/commons-net/download_net.cgi
18+
19+
20+
New features
21+
------------
22+
23+
o Add DatagramSocketClient.getDefaultTimeoutDuration() and deprecate getDefaultTimeout(). Thanks to Gary Gregory.
24+
o NET-741: Add subnet IPv6 handling with SubnetUtils6 #391. Thanks to Maros Orsak, Gary Gregory.
25+
26+
Fixed Bugs
27+
----------
28+
29+
o DaytimeTCPClientTest now should now pass inside most VPNs. Thanks to Henri Biestro, Gary Gregory.
30+
o Migrate tests to JUnit5 #358, #359. Thanks to Jakub Kupczyk, Gary Gregory.
31+
o Fix malformed Javadoc comments. Thanks to Gary Gregory.
32+
o IMAPExportMbox now restores the current thread's interrupt flag when catching InterruptedException. Thanks to Gary Gregory.
33+
o IOUtil.readWrite() now restores the current thread's interrupt flag when catching InterruptedException. Thanks to Gary Gregory.
34+
o TelnetInputStream now restores the current thread's interrupt flag when catching InterruptedException. Thanks to Gary Gregory.
35+
o NET-740: FTP fails to parse listings for Linux vsftpd in Chinese or Japanese #393. Thanks to Jianwei Guo, Gary Gregory.
36+
o TelnetInputStream.read() doesn't preserve the original InterruptedException as the cause of its InterruptedIOException. Thanks to Gary Gregory.
37+
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.
38+
o ListenerList.removeListener(T) now ignores null input to avoid a NullPointerException. Thanks to Gary Gregory.
39+
o ListenerList.addListener(T) now ignores null input. Thanks to Gary Gregory.
40+
o Fix typo in FTPConnectionClosedException message from FTP.getReply(boolean). Thanks to Gary Gregory.
41+
o Reimplement Util.copyReader() with IOUtils.copyLarge(). Thanks to Gary Gregory.
42+
o Reimplement Util.copyStream() with IOUtils.copyLarge(). Thanks to Gary Gregory.
43+
o Reimplement Util.copyStream() with IOUtils.copyLarge(). Thanks to Gary Gregory.
44+
o Deprecate Util.copyReader(Reader, Writer) in favor of IOUtils.copyLarge(Reader, Writer). Thanks to Gary Gregory.
45+
46+
Changes
47+
-------
48+
49+
o Bump org.apache.commons:commons-parent from 85 to 97 #371, #388, #389. Thanks to Gary Gregory, Dependabot.
50+
o Bump org.apache.commons:commons-lang3 from 3.18.0 to 3.19.0. Thanks to Gary Gregory, Dependabot.
51+
o Bump commons-io:commons-io from 2.20.0 to 2.21.0. Thanks to Gary Gregory.
52+
o Bump Util.DEFAULT_COPY_BUFFER_SIZE from 1 KiB to 8 KiB. Thanks to Gary Gregory.
53+
54+
55+
Historical list of changes: https://commons.apache.org/proper/commons-net/changes.html
56+
57+
Enjoy!
58+
-Apache Commons Net team
59+
60+
-----------------------------------------------------------------------------
61+
162
Apache Commons Net 3.12.0 Release Notes
263
---------------------------------------
364

src/changes/changes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The <action> type attribute can be add,update,fix,remove.
6161
Defining changes.version allows one to create the RN without first removing the SNAPSHOT suffix.
6262
-->
6363
<body>
64-
<release version="3.13.0" date="YYYY-MM-DD" description="This is a feature and maintenance release. Java 8 or later is required.">
64+
<release version="3.13.0" date="2026-03-15" description="This is a feature and maintenance release. Java 8 or later is required.">
6565
<!-- FIX -->
6666
<action type="fix" dev="ggregory" due-to="Henri Biestro, Gary Gregory">DaytimeTCPClientTest now should now pass inside most VPNs.</action>
6767
<action type="fix" dev="ggregory" due-to="Jakub Kupczyk, Gary Gregory">Migrate tests to JUnit5 #358, #359.</action>

src/changes/release-notes.vm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
## under the License.
1717
##
1818
${project.name} ${version} Release Notes
19-
------------------------------------------------
19+
---------------------------------------
2020

2121
The ${developmentTeam} is pleased to announce the release of ${project.name} ${version}.
2222

src/site/xdoc/download_net.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -115,32 +115,32 @@ limitations under the License.
115115
</p>
116116
</subsection>
117117
</section>
118-
<section name="Apache Commons Net 3.12.0 (Requires Java 1.8 or later)">
118+
<section name="Apache Commons Net 3.13.0 (Requires Java 1.8 or later)">
119119
<subsection name="Binaries">
120120
<table>
121121
<tr>
122-
<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>
123-
<td><a href="https://downloads.apache.org/commons/net/binaries/commons-net-3.12.0-bin.tar.gz.sha512">sha512</a></td>
124-
<td><a href="https://downloads.apache.org/commons/net/binaries/commons-net-3.12.0-bin.tar.gz.asc">pgp</a></td>
122+
<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>
123+
<td><a href="https://downloads.apache.org/commons/net/binaries/commons-net-3.13.0-bin.tar.gz.sha512">sha512</a></td>
124+
<td><a href="https://downloads.apache.org/commons/net/binaries/commons-net-3.13.0-bin.tar.gz.asc">pgp</a></td>
125125
</tr>
126126
<tr>
127-
<td><a href="[preferred]/commons/net/binaries/commons-net-3.12.0-bin.zip">commons-net-3.12.0-bin.zip</a></td>
128-
<td><a href="https://downloads.apache.org/commons/net/binaries/commons-net-3.12.0-bin.zip.sha512">sha512</a></td>
129-
<td><a href="https://downloads.apache.org/commons/net/binaries/commons-net-3.12.0-bin.zip.asc">pgp</a></td>
127+
<td><a href="[preferred]/commons/net/binaries/commons-net-3.13.0-bin.zip">commons-net-3.13.0-bin.zip</a></td>
128+
<td><a href="https://downloads.apache.org/commons/net/binaries/commons-net-3.13.0-bin.zip.sha512">sha512</a></td>
129+
<td><a href="https://downloads.apache.org/commons/net/binaries/commons-net-3.13.0-bin.zip.asc">pgp</a></td>
130130
</tr>
131131
</table>
132132
</subsection>
133133
<subsection name="Source">
134134
<table>
135135
<tr>
136-
<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>
137-
<td><a href="https://downloads.apache.org/commons/net/source/commons-net-3.12.0-src.tar.gz.sha512">sha512</a></td>
138-
<td><a href="https://downloads.apache.org/commons/net/source/commons-net-3.12.0-src.tar.gz.asc">pgp</a></td>
136+
<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>
137+
<td><a href="https://downloads.apache.org/commons/net/source/commons-net-3.13.0-src.tar.gz.sha512">sha512</a></td>
138+
<td><a href="https://downloads.apache.org/commons/net/source/commons-net-3.13.0-src.tar.gz.asc">pgp</a></td>
139139
</tr>
140140
<tr>
141-
<td><a href="[preferred]/commons/net/source/commons-net-3.12.0-src.zip">commons-net-3.12.0-src.zip</a></td>
142-
<td><a href="https://downloads.apache.org/commons/net/source/commons-net-3.12.0-src.zip.sha512">sha512</a></td>
143-
<td><a href="https://downloads.apache.org/commons/net/source/commons-net-3.12.0-src.zip.asc">pgp</a></td>
141+
<td><a href="[preferred]/commons/net/source/commons-net-3.13.0-src.zip">commons-net-3.13.0-src.zip</a></td>
142+
<td><a href="https://downloads.apache.org/commons/net/source/commons-net-3.13.0-src.zip.sha512">sha512</a></td>
143+
<td><a href="https://downloads.apache.org/commons/net/source/commons-net-3.13.0-src.zip.asc">pgp</a></td>
144144
</tr>
145145
</table>
146146
</subsection>

0 commit comments

Comments
 (0)