Skip to content

Commit

Permalink
ssl: Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
dgud authored and Erlang/OTP committed Feb 17, 2010
1 parent 332591f commit 64d4c5a
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 6 deletions.
48 changes: 45 additions & 3 deletions lib/ssl/doc/src/notes.xml
Expand Up @@ -4,7 +4,7 @@
<chapter>
<header>
<copyright>
<year>1999</year><year>2009</year>
<year>1999</year><year>2010</year>
<holder>Ericsson AB. All Rights Reserved.</holder>
</copyright>
<legalnotice>
Expand All @@ -13,12 +13,12 @@
compliance with the License. You should have received a copy of the
Erlang Public License along with this software. If not, it can be
retrieved online at http://www.erlang.org/.

Software distributed under the License is distributed on an "AS IS"
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
the License for the specific language governing rights and limitations
under the License.

</legalnotice>

<title>SSL Release Notes</title>
Expand All @@ -31,6 +31,48 @@
<p>This document describes the changes made to the SSL application.
</p>

<section><title>SSL 3.10.8</title>

<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p><c>ssl:send/2</c> ignored packet option, fix provided
by YAMASHINA Hio.</p>
<p>Fixed a file cache bug which caused problems when the
same file was used for both cert and cacert.</p>
<p>Allow <c>ssl:listen/2</c> to be called with option
{ssl_imp, old}.</p>
<p> Fixed ssl:setopts(Socket, binary) which didn't work
for 'new' ssl.</p>.
<p>
Own Id: OTP-8441</p>
</item>
<item>
<p>
Do a controlled shutdown if a non ssl packet arrives as
the first packet.</p>
<p>
Own Id: OTP-8459 Aux Id: seq11505 </p>
</item>
</list>
</section>


<section><title>Improvements and New Features</title>
<list>
<item>
<p>Fixed session reuse (in new_ssl), thanks Wil Tan.</p>
<p>Send CA list during Certificate Request (in new_ssl) ,
thanks Wil Tan.</p> <p><c>NOTE</c>: SSL (new_ssl)
requires public_key-0.5.</p>
<p>
Own Id: OTP-8372</p>
</item>
</list>
</section>

</section>

<section><title>SSL 3.10.7</title>

<section><title>Fixed Bugs and Malfunctions</title>
Expand Down
6 changes: 4 additions & 2 deletions lib/ssl/src/ssl.appup.src
Expand Up @@ -7,7 +7,8 @@
{"3.10.3", [{restart_application, ssl}]},
{"3.10.4", [{restart_application, ssl}]},
{"3.10.5", [{restart_application, ssl}]},
{"3.10.6", [{restart_application, ssl}]}
{"3.10.6", [{restart_application, ssl}]},
{"3.10.7", [{restart_application, ssl}]}
],
[
{"3.10", [{restart_application, ssl}]},
Expand All @@ -16,6 +17,7 @@
{"3.10.3", [{restart_application, ssl}]},
{"3.10.4", [{restart_application, ssl}]},
{"3.10.5", [{restart_application, ssl}]},
{"3.10.6", [{restart_application, ssl}]}
{"3.10.6", [{restart_application, ssl}]},
{"3.10.7", [{restart_application, ssl}]}
]}.

2 changes: 1 addition & 1 deletion lib/ssl/vsn.mk
Expand Up @@ -19,7 +19,7 @@

SSL_VSN = 3.10.8

TICKETS = OTP-8327
TICKETS = OTP-8372 OTP-8441 OTP-8459
#TICKETS_3.10.7 = OTP-8260 OTP-8218 OTP-8250

#TICKETS_3.10.6 = OTP-8275
Expand Down

0 comments on commit 64d4c5a

Please sign in to comment.