summaryrefslogtreecommitdiff
path: root/lib/ftp/doc/src/notes.xml
blob: b131eee82b1b9593c3dc75fa44099d0927738f35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE chapter SYSTEM "chapter.dtd">

<chapter>
  <header>
    <copyright>
      <year>2002</year><year>2021</year>
      <holder>Ericsson AB. All Rights Reserved.</holder>
    </copyright>
    <legalnotice>
      Licensed under the Apache License, Version 2.0 (the "License");
      you may not use this file except in compliance with the License.
      You may obtain a copy of the License at
 
          http://www.apache.org/licenses/LICENSE-2.0

      Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      See the License for the specific language governing permissions and
      limitations under the License.
      
    </legalnotice>
    
    <title>FTP Release Notes</title>
    <prepared></prepared>
    <responsible></responsible>
    <docno></docno>
    <approved></approved>
    <checked></checked>
    <date>2018-02-26</date>
    <rev>A</rev>
    <file>notes.xml</file>
  </header>
  
  <section><title>Ftp 1.1.4</title>

    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
	    Replace size/1 with either tuple_size/1 or byte_size/1</p>
          <p>
	    The <c>size/1</c> BIF is not optimized by the JIT, and
	    its use can result in worse types for Dialyzer.</p>
          <p>
	    When one knows that the value being tested must be a
	    tuple, <c>tuple_size/1</c> should always be preferred.</p>
          <p>
	    When one knows that the value being tested must be a
	    binary, <c>byte_size/1</c> should be preferred. However,
	    <c>byte_size/1</c> also accepts a bitstring (rounding up
	    size to a whole number of bytes), so one must make sure
	    that the call to <c>byte_size/</c> is preceded by a call
	    to <c>is_binary/1</c> to ensure that bitstrings are
	    rejected. Note that the compiler removes redundant calls
	    to <c>is_binary/1</c>, so if one is not sure whether
	    previous code had made sure that the argument is a
	    binary, it does not harm to add an <c>is_binary/1</c>
	    test immediately before the call to <c>byte_size/1</c>.</p>
          <p>
	    Own Id: OTP-18432 Aux Id:
	    GH-6672,PR-6793,PR-6784,PR-6787,PR-6785,PR-6682,PR-6800,PR-6797,PR-6798,PR-6799,PR-6796,PR-6813,PR-6671,PR-6673,PR-6684,PR-6694,GH-6677,PR-6696,PR-6670,PR-6674 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Ftp 1.1.3</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Fixes calls to <c>ftp:nlist/2</c> returning <c>{error,
	    epath}</c> when the file / folder exists</p>
          <p>
	    Own Id: OTP-18409 Aux Id: PR-6721,ERIERL-908 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Ftp 1.1.2</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    fix unexpected result <c>ok</c> when calling
	    <c>ftp:nlist</c> repeatedly</p>
          <p>
	    Own Id: OTP-18252 Aux Id: GH-5823 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Ftp 1.1.1</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    An unexpected timeout message on the FTP control channel
	    was observed in a real system and could not be associated
	    with anything that was expected to happen, so we will
	    ignore but info log such unexpected messages.</p>
          <p>
	    Own Id: OTP-17989 Aux Id: ERIERL-767 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Ftp 1.1</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Use OTP supervisor as intended, avoiding surprising
	    behavior as the killing of the user's process. Also, FTP
	    state handling logic is improved to avoid race conditions
	    that could result in unexpected errors.</p>
          <p>
	    Own Id: OTP-16926 Aux Id: ERL-1450, GH-4473 </p>
        </item>
        <item>
	    <p>Missing runtime dependencies has been added to this
	    application.</p>
          <p>
	    Own Id: OTP-17243 Aux Id: PR-4557 </p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
	    Add support for FTPES (explicit FTP over TLS).</p>
          <p>
	    Own Id: OTP-15523 Aux Id: OTP-15352, PR-1968 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Ftp 1.0.5</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Avoid timing issue when setting active once on a socket
	    that is being closed by the peer.</p>
          <p>
	    Own Id: OTP-16734 Aux Id: OTP-16697, ERIERL-496 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Ftp 1.0.4.1</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Avoid timing issue when setting active once on a socket
	    that is being closed by the peer.</p>
          <p>
	    Own Id: OTP-16734 Aux Id: OTP-16697, ERIERL-496 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Ftp 1.0.4</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    A possibly infinite loop is removed.</p>
          <p>
	    Own Id: OTP-16243 Aux Id: PR-2436, OTP-16056 </p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
	    Removed compiler warnings.</p>
          <p>
	    Own Id: OTP-16318 Aux Id: OTP-16183 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Ftp 1.0.3</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    A possibly infinite loop when receiving messages divided
	    in parts is removed.</p>
          <p>
	    Own Id: OTP-16056</p>
        </item>
      </list>
    </section>

</section>

  <section><title>Ftp 1.0.2.2</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    A possibly infinite loop is removed.</p>
          <p>
	    Own Id: OTP-16243 Aux Id: PR-2436, OTP-16056 </p>
        </item>
      </list>
    </section>

</section>

  <section><title>Ftp 1.0.2.1</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    A possibly infinite loop when receiving messages divided
	    in parts is removed.</p>
          <p>
	    Own Id: OTP-16056</p>
        </item>
      </list>
    </section>

</section>

<section><title>Ftp 1.0.2</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Fixed timing related bug that could make ftp functions
	    behave badly.</p>
          <p>
	    Own Id: OTP-15659 Aux Id: ERIERL-316 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Ftp 1.0.1</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Improved documentation.</p>
          <p>
	    Own Id: OTP-15190</p>
        </item>
      </list>
    </section>

</section>

<section><title>FTP 1.0</title>

    <section><title>First released version</title>
      <list>
        <item>
          <p>
	    Inets application was split into multiple smaller protocol specific applications.
	    The FTP application is a standalone FTP client with the same functionality as
	    FTP client in Inets.</p>
          <p>
	    Own Id: OTP-14113</p>
        </item>
      </list>
    </section>

</section>

</chapter>