Skip to content

Commit 28fd1ee

Browse files
author
Rory Winston
committed
Update changes xdoc for 2.1
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/net/branches/NET_2_0@762014 13f79535-47bb-0310-9956-ffa450edef68
1 parent eac3ab9 commit 28fd1ee

File tree

1 file changed

+103
-46
lines changed

1 file changed

+103
-46
lines changed

src/site/xdoc/changes.xml

Lines changed: 103 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,67 @@ limitations under the License.
2020
<title>Changes</title>
2121
<author email="rwinston@apache.org">Rory Winston</author>
2222
</properties>
23-
23+
2424

2525
<body>
2626
<release version="2.1" description="Fix release">
27+
<action dev="rwinston" type="fix" issue="NET-215">
28+
UNIXFTPEntryParser didn't preserve trailing whitespace in files
29+
</action>
30+
<action dev="rwinston" type="fix" issue="NET-236">
31+
method SubnetUtils.SubnetInfo.isInRange(addr) returns incorrect result
32+
</action>
33+
<action dev="rwinston" type="fix" issue="NET-242">
34+
Method createServerSocket of FTPSSocketFactory never called and thus UseClientMode is incorrect in a secured ftp transfer using active mode.
35+
</action>
36+
<action dev="rwinston" type="fix" issue="NET-248">
37+
Fix inconsistent command list in FTPCommand
38+
</action>
39+
<action dev="rwinston" type="fix" issue="NET-250">
40+
DefaultFTPFileEntryParserFactory did not work with Netware FTP server returning "NETWARE TYPE: L8"
41+
</action>
42+
<action dev="rwinston" type="fix" issue="NET-257">
43+
FTP.getReplyStrings() returned array of null Strings
44+
</action>
45+
<action dev="rwinston" type="fix" issue="NET-259">
46+
UnixFTPEntryParser regex did not match some directory entries
47+
</action>
48+
<action dev="rwinston" type="fix" issue="NET-260">
49+
SubnetUtils.SubnetInfo.isInRange(...) returned incorrect values
50+
</action>
51+
<action dev="rwinston" type="update" issue="NET-261">
52+
SubnetUtils.SubnetInfo.isInRange(...) behaviour not documented
53+
</action>
54+
<action dev="rwinston" type="fix" issue="NET-262">
55+
SubnetUtils did not handle /31 and /32 CIDRs well
56+
</action>
57+
<action dev="rwinston" type="fix" issue="NET-265">
58+
UnixFTPEntryParser failed to parse entry in certain conditions
59+
</action>
60+
<action dev="rwinston" type="fix" issue="NET-266">
61+
FTPClient.listFiles() corrupted file name in certain circumstances
62+
</action>
63+
<action dev="rwinston" type="update" issue="NET-251">
64+
Moved class "ThreadContainer" from Threader.java into its own source file
65+
</action>
66+
<action dev="rwinston" type="update" issue="NET-252">
67+
Get rid of using deprecated API in VMSFTPEntryParser
68+
</action>
69+
<action dev="rwinston" type="fix" issue="NET-256">
70+
FTPSClient should accept a pre-configured SSLContext
71+
</action>
72+
<action dev="rwinston" type="add" issue="NET-263">
73+
SubnetUtils / SubNetInfo toString() implementations
74+
</action>
75+
<action dev="rwinston" type="fix">
76+
Improve NNTPClient handling of invalid articles
77+
</action>
78+
<action dev="rwinston" type="update">
79+
Refactor examples package.
80+
</action>
81+
<action dev="sebb" type="add">
82+
Javadoc fixes, improvements, and refactoring.
83+
</action>
2784
</release>
2885

2986
<release version="2.0" date="October 20, 2008" description="Java 5.0 release">
@@ -159,99 +216,99 @@ limitations under the License.
159216
<action dev="rwinston" type="fix" issue="NET-198">
160217
Allow FTPTimestampParserImpl to take a predefined Calendar instance representing current time.
161218
</action>
162-
<action dev="sebb" type="fix" issue="NET-194">
163-
Replace Exception with IOException
164-
</action>
165-
<action dev="sebb" type="update" issue="NET-214">
166-
VMS file permission parsing
167-
</action>
168-
<action dev="sebb" type="fix" issue="NET-208">
169-
TelnetInputStream swallows interruptedexception as IOException
170-
</action>
171-
<action dev="sebb" type="fix" issue="NET-223">
172-
the data connection socket is not closed when an IOException occurred
173-
</action>
174-
<action dev="sebb" type="fix" issue="NET-230">
175-
ParserInitializationException when connecting to a Unix FTP server: comparison string must be upper case
176-
</action>
177-
<action dev="sebb" type="fix" issue="NET-225">
178-
FTPFileEntryParserImpl.preParse() doesn't remove unparsable entries at the end of the file list
179-
</action>
219+
<action dev="sebb" type="fix" issue="NET-194">
220+
Replace Exception with IOException
221+
</action>
222+
<action dev="sebb" type="update" issue="NET-214">
223+
VMS file permission parsing
224+
</action>
225+
<action dev="sebb" type="fix" issue="NET-208">
226+
TelnetInputStream swallows interruptedexception as IOException
227+
</action>
228+
<action dev="sebb" type="fix" issue="NET-223">
229+
the data connection socket is not closed when an IOException occurred
230+
</action>
231+
<action dev="sebb" type="fix" issue="NET-230">
232+
ParserInitializationException when connecting to a Unix FTP server: comparison string must be upper case
233+
</action>
234+
<action dev="sebb" type="fix" issue="NET-225">
235+
FTPFileEntryParserImpl.preParse() doesn't remove unparsable entries at the end of the file list
236+
</action>
180237
</release>
181238

182239

183240
<release version="1.5.0" date="" description="">
184241
<action dev="dfs" type="fix" issue="NET-3">
185242
TelnetInputStream.java: Applied Rob
186-
Hasselbaum's
243+
Hasselbaum's
187244
rhasselbaum@alumni.ithaca.edu
188245
patch for PR 38688 fixing a
189246
TelnetInputStream hang.
190247
</action>
191248
<action dev="rwinston" type="fix"
192-
issue="NET-73">
249+
issue="NET-73">
193250
TelnetInputStream.java: Fixing another
194-
potential deadlock for
195-
telnet and FTP (patch courtesy Rob Hasselbaum).
251+
potential deadlock for
252+
telnet and FTP (patch courtesy Rob Hasselbaum).
196253
</action>
197254
<action dev="dfs" type="update" issue="NET-57">
198255
FTP.java: Exposed control connection of
199-
FTP
256+
FTP
200257
class via _controlInput_ and
201-
_controlOutput_
258+
_controlOutput_
202259
protected member variables in response
203260
to PR 38309 reported by
204261
josejuan.montiel@gmail.com.
205262
</action>
206263
<action dev="rwinston" type="fix"
207-
issue="NET-68">
264+
issue="NET-68">
208265
TFTPClient.java: Fix bug causing final
209-
packets
266+
packets
210267
to not be sent.
211268
</action>
212269
<action dev="rwinston" type="fix"
213-
issue="NET-161">
270+
issue="NET-161">
214271
TFTPClient.java: Fix sendFile() (related
215-
to NET-68).
272+
to NET-68).
216273
</action>
217274
<action dev="rwinston" type="fix"
218-
issue="NET-181">
275+
issue="NET-181">
219276
TFTPClient.java: block number
220-
wraparound.
277+
wraparound.
221278
</action>
222279
<action dev="scohen" type="fix" issue="NET-16">
223280
UNIXFTPEntryParser.java: support for
224-
group names with
225-
spaces (patch courtesy D. Kilzer).
281+
group names with
282+
spaces (patch courtesy D. Kilzer).
226283
</action>
227284
<action dev="scohen" type="fix" issue="NET-62">
228285
DefaultFTPFileEntryParserFactory.java:
229-
Wrap
230-
NoClassDefFoundError in FTP parser exception
231-
when ORO is not available.
286+
Wrap
287+
NoClassDefFoundError in FTP parser exception
288+
when ORO is not available.
232289
</action>
233290
<action dev="rwinston" type="add"
234-
issue="NET-33">
291+
issue="NET-33">
235292
FTPClient.java: Fix closing FTP
236-
ServerSocket after timeout
293+
ServerSocket after timeout
237294
</action>
238295
<action dev="rwinston" type="add">
239296
FTPClientConfig.java: Added an FTP
240-
parser for Netware FTP servers.
241-
Tested on Novell Netware 6.5.
297+
parser for Netware FTP servers.
298+
Tested on Novell Netware 6.5.
242299
</action>
243300
<action dev="rwinston" type="fix"
244-
issue="NET-188">
301+
issue="NET-188">
245302
FTPTimestampParserImpl.java: Fix leap
246-
year date parsing bug.
303+
year date parsing bug.
247304
</action>
248305
<action dev="rwinston" type="fix">
249306
Article.java: Fix minor issues with NNTP
250-
parsing.
307+
parsing.
251308
</action>
252309
</release>
253310

254-
311+
255312

256313
<release version="1.4.1" date="December 3, 2005" description="fix release to restore jdk 1.3 compatability">
257314
<action dev="scohen" type="fix">
@@ -261,7 +318,7 @@ parsing.
261318
Applied patches for defect 37522. updated project.xml to correct compatibility level.
262319
</action>
263320
</release>
264-
321+
265322
<release version="1.4.0" date="May 7, 2005" description="Some additions and enhancements">
266323
<action dev="dfs" type="fix">
267324
Fixed typo in method name.
@@ -294,7 +351,7 @@ parsing.
294351
Added functionality for extensible parsing of FTP responses, using a configurable format string. This should enable the FTP client to operate across many different locales and date formats.
295352
</action>
296353
</release>
297-
354+
298355
<release version="1.3.0" date="December 15, 2004" description="many fixes and enhancements">
299356
<action dev="rwinston" type="fix">
300357
Applied patch for PR 31793. Thanks to mario@ops.co.at

0 commit comments

Comments
 (0)