Release OpenSSL 0.9.8g with various fixes to issues introduced with 0.9.8f

This commit is contained in:
Lutz Jänicke 2007-10-19 08:25:53 +00:00
parent 5f95651316
commit 32f1f622f6
7 changed files with 22 additions and 8 deletions

11
CHANGES
View File

@ -2,7 +2,7 @@
OpenSSL CHANGES OpenSSL CHANGES
_______________ _______________
Changes between 0.9.8f and 0.9.8g [xx XXX xxxx] Changes between 0.9.8g and 0.9.8h [xx XXX xxxx]
*) Implement certificate status request TLS extension defined in RFC3546. *) Implement certificate status request TLS extension defined in RFC3546.
A client can set the appropriate parameters and receive the encoded A client can set the appropriate parameters and receive the encoded
@ -11,6 +11,15 @@
to s_client and s_server. to s_client and s_server.
[Steve Henson] [Steve Henson]
Changes between 0.9.8f and 0.9.8g [19 Oct 2007]
*) Fix various bugs:
+ Binary incompatibility of ssl_ctx_st structure
+ DTLS interoperation with non-compliant servers
+ Don't call get_session_cb() without proposed session
+ Fix ia64 assembler code
[Andy Polyakov, Steve Henson]
Changes between 0.9.8e and 0.9.8f [11 Oct 2007] Changes between 0.9.8e and 0.9.8f [11 Oct 2007]
*) DTLS Handshake overhaul. There were longstanding issues with *) DTLS Handshake overhaul. There were longstanding issues with

2
FAQ
View File

@ -75,7 +75,7 @@ OpenSSL - Frequently Asked Questions
* Which is the current version of OpenSSL? * Which is the current version of OpenSSL?
The current version is available from <URL: http://www.openssl.org>. The current version is available from <URL: http://www.openssl.org>.
OpenSSL 0.9.8f was released on October 11th, 2007. OpenSSL 0.9.8g was released on October 19th, 2007.
In addition to the current stable release, you can also access daily In addition to the current stable release, you can also access daily
snapshots of the OpenSSL development version at <URL: snapshots of the OpenSSL development version at <URL:

4
NEWS
View File

@ -5,6 +5,10 @@
This file gives a brief overview of the major changes between each OpenSSL This file gives a brief overview of the major changes between each OpenSSL
release. For more details please read the CHANGES file. release. For more details please read the CHANGES file.
Major changes between OpenSSL 0.9.8f and OpenSSL 0.9.8g:
o Fixes for bugs introduced with 0.9.8f.
Major changes between OpenSSL 0.9.8e and OpenSSL 0.9.8f: Major changes between OpenSSL 0.9.8e and OpenSSL 0.9.8f:
o Add gcc 4.2 support. o Add gcc 4.2 support.

2
README
View File

@ -1,5 +1,5 @@
OpenSSL 0.9.8g-dev OpenSSL 0.9.8h-dev
Copyright (c) 1998-2007 The OpenSSL Project Copyright (c) 1998-2007 The OpenSSL Project
Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson

3
STATUS
View File

@ -1,10 +1,11 @@
OpenSSL STATUS Last modified at OpenSSL STATUS Last modified at
______________ $Date: 2007/10/11 14:58:14 $ ______________ $Date: 2007/10/19 08:25:52 $
DEVELOPMENT STATE DEVELOPMENT STATE
o OpenSSL 0.9.9: Under development... o OpenSSL 0.9.9: Under development...
o OpenSSL 0.9.8g: Released on October 19th, 2007
o OpenSSL 0.9.8f: Released on October 11th, 2007 o OpenSSL 0.9.8f: Released on October 11th, 2007
o OpenSSL 0.9.8e: Released on February 23rd, 2007 o OpenSSL 0.9.8e: Released on February 23rd, 2007
o OpenSSL 0.9.8d: Released on September 28th, 2006 o OpenSSL 0.9.8d: Released on September 28th, 2006

View File

@ -25,11 +25,11 @@
* (Prior to 0.9.5a beta1, a different scheme was used: MMNNFFRBB for * (Prior to 0.9.5a beta1, a different scheme was used: MMNNFFRBB for
* major minor fix final patch/beta) * major minor fix final patch/beta)
*/ */
#define OPENSSL_VERSION_NUMBER 0x00908071L #define OPENSSL_VERSION_NUMBER 0x00908080L
#ifdef OPENSSL_FIPS #ifdef OPENSSL_FIPS
#define OPENSSL_VERSION_TEXT "OpenSSL 0.9.8g-fips-dev xx XXX xxxx" #define OPENSSL_VERSION_TEXT "OpenSSL 0.9.8h-fips-dev xx XXX xxxx"
#else #else
#define OPENSSL_VERSION_TEXT "OpenSSL 0.9.8g-dev xx XXX xxxx" #define OPENSSL_VERSION_TEXT "OpenSSL 0.9.8h-dev xx XXX xxxx"
#endif #endif
#define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT #define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT

View File

@ -1,7 +1,7 @@
%define libmaj 0 %define libmaj 0
%define libmin 9 %define libmin 9
%define librel 8 %define librel 8
%define librev g %define librev h
Release: 1 Release: 1
%define openssldir /var/ssl %define openssldir /var/ssl