]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
Updated version & changelog.
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>
Wed, 11 Jun 2008 21:38:07 +0000 (21:38 +0000)
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>
Wed, 11 Jun 2008 21:38:07 +0000 (21:38 +0000)
Updated build-pkcs11-helper.sh to build
from OpenSSL 0.9.8h.

Added pkcs11-related fixes to easy-rsa/2.0/vars.

git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@2994 e7ae566f-a301-0410-adde-c780ea21d3b5

ChangeLog
easy-rsa/2.0/vars
install-win32/build-pkcs11-helper.sh
version.m4

index 5d29c4cdd0cba8af80d07e7d47850440960bb62c..a32fcbc1d2559d828ceac2e7cde499e56af652da 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,76 @@
 OpenVPN
-Copyright (C) 2002-2005 OpenVPN Solutions LLC <info@openvpn.net>
+Copyright (C) 2002-2008 OpenVPN Solutions LLC <info@openvpn.net>
 
 $Id$
 
+2008.06.11 -- Version 2.1_rc8
+
+* Added client authentication and packet filtering capability
+  to management interface.  In addition, allow OpenVPN plugins
+  to take advantage of deferred authentication and packet
+  filtering capability.
+
+* Added support for client-side connection profiles.
+
+* Fixed unbounded memory growth bug in environmental variable
+  code that could have caused long-running OpenVPN sessions
+  with many TLS renegotiations to incrementally
+  increase memory usage over time.
+
+* Windows release now packages openssl-0.9.8h.
+
+* Build system changes -- allow building on Windows using
+  autoconf/automake scripts (Alon Bar-Lev).
+
+* Changes to Windows build system to make it easier to do
+  partial builds, with a reduced set of prerequisites,
+  where only a subset of OpenVPN installer
+  components are built.  See ./domake-win comments.
+
+* Cleanup IP address for persistence interfaces for tap and also
+  using ifconfig, gentoo#209055 (Alon Bar-Lev).
+
+* Fall back to old version of extract_x509_field for OpenSSL 0.9.6.
+
+* Clarified tcp-queue-limit man page entry (Matti Linnanvuori).
+
+* Added new OpenVPN icon and installer graphic.
+
+* Minor pkitool changes.
+
+* Added --pkcs11-id-management option, which will cause OpenVPN to
+  query the management interface via the new NEED-STR asynchronous
+  notification query to get additional PKCS#11 options (Alon Bar-Lev).
+
+* Added NEED-STR management interface asynchronous query and
+  "needstr" management interface command to respond to the query
+  (Alon Bar-Lev).
+
+* Added Dragonfly BSD support (Francis-Gudin).
+
+* Quote device names before passing to up/down script (Josh Cepek).
+
+* Bracketed struct openvpn_pktinfo with #pragma pack(1) to
+  prevent structure padding from causing an incorrect length
+  to be returned by sizeof (struct openvpn_pktinfo) on 64-bit
+  platforms.
+
+* On systems that support res_init, always call it
+  before calling gethostbyname to ensure that
+  resolver configuration state is current.
+
+* Added NTLMv2 proxy support (Miroslav Zajic).
+
+* Fixed an issue in extract_x509_field_ssl where the extraction
+  would fail on the first field of the subject name, such as
+  the common name in:  /CN=foo/emailAddress=foo@bar.com
+
+* Made "Linux ip addr del failed" error nonfatal.
+
+* Amplified --client-cert-not-required warning.
+
+* Added #pragma pack to proto.h.
+
 2008.01.29 -- Version 2.1_rc7
 
 * Added a few extra files that exist in the svn repo but were
index a904547be72bd2aef79421122a51b9ffa3e9c820..cded8858581b47370d2eabc11628ce9c4fe8e551 100755 (executable)
@@ -41,6 +41,10 @@ export KEY_DIR="$EASY_RSA/keys"
 # Issue rm -rf warning
 echo NOTE: If you run ./clean-all, I will be doing a rm -rf on $KEY_DIR
 
+# PKCS11 fixes
+export PKCS11_MODULE_PATH="dummy"
+export PKCS11_PIN="dummy"
+
 # Increase this to 2048 if you
 # are paranoid.  This will slow
 # down TLS negotiation performance
index 4ec2dff98f9a5c12569f40407103fa7313400457..ca139f5dbe43aeb95430ccb76b75821eb5326fa1 100644 (file)
@@ -1,5 +1,5 @@
 F=pkcs11-helper-1.05
-OPENSSL_DIR=`pwd`/openssl-0.9.7m
+OPENSSL_DIR=`pwd`/openssl-0.9.8h
 
 PKCS11_HELPER_DIR=`pwd`/pkcs11-helper
 rm -rf $PKCS11_HELPER_DIR
@@ -12,7 +12,6 @@ tar xfj $tbz
 cd $F
 ./configure \
        MAN2HTML=true \
-       ac_cv_type_size_t=no \
        --disable-crypto-engine-gnutls \
         --disable-crypto-engine-nss \
         PKG_CONFIG=true \
@@ -21,3 +20,5 @@ cd $F
 
 make
 make install DESTDIR="${PKCS11_HELPER_DIR}"
+
+# ./configure doesn't need this any more: ac_cv_type_size_t=no
index 0ecbfe1ceceb19229dec5208ecc43f50f3f96d9f..2c4bb6ab121558d7dab2e8d90f04124e9807b1f8 100644 (file)
@@ -1,5 +1,5 @@
 dnl define the OpenVPN version
-define(PRODUCT_VERSION,[2.1_rc7f])
+define(PRODUCT_VERSION,[2.1_rc8])
 dnl define the TAP version
 define(PRODUCT_TAP_ID,[tap0901])
 define(PRODUCT_TAP_WIN32_MIN_MAJOR,[9])