Browse code

Preparing to tag v2.2-beta2

ChangeLog has been updated with information related to v2.2-beta1 as well.

Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>

David Sommerseth authored on 2010/08/17 03:46:55
Showing 2 changed files
... ...
@@ -1,7 +1,7 @@
1 1
 OpenVPN Change Log
2 2
 Copyright (C) 2002-2010 OpenVPN Technologies, Inc. <sales@openvpn.net>
3 3
 
4
-2010.08.09 -- Version 2.1.2
4
+2010.08.16 -- Version 2.2-beta2
5 5
 
6 6
 * Windows security issue:
7 7
   Fixed potential local privilege escalation vulnerability in
... ...
@@ -19,6 +19,10 @@ Copyright (C) 2002-2010 OpenVPN Technologies, Inc. <sales@openvpn.net>
19 19
 * Added Python-based based alternative build system for Windows using
20 20
   Visual Studio 2008 (in win directory).
21 21
 
22
+* Fixed compiler warning in ssl.c when compiling with --enable-strict
23
+
24
+2010.08.10 -- Version 2.2-beta1
25
+
22 26
 * When aborting in a non-graceful way, try to execute do_close_tun in
23 27
   init.c prior to daemon exit to ensure that the tun/tap interface is
24 28
   closed and any added routes are deleted.
... ...
@@ -108,10 +112,85 @@ Copyright (C) 2002-2010 OpenVPN Technologies, Inc. <sales@openvpn.net>
108 108
 
109 109
 * Fixed an issue where application payload transmissions on the
110 110
   TLS control channel (such as AUTH_FAILED) that occur during
111
-  or immediately after a TLS renegotiation might be dropped. 
111
+  or immediately after a TLS renegotiation might be dropped.
112 112
 
113 113
 * Added warning about tls-remote option in man page.
114 114
 
115
+* Community patches (from openvpn-testing.git tree)
116
+
117
+  Alberto Gonzalez Iniesta (1):
118
+      Debian patch: Fix spelling in log message
119
+
120
+  Dan Nelson (1):
121
+      bash->bourne script cleanup
122
+
123
+  Daniel Johnson (1):
124
+      auth-pam plugin update: Support DOMAIN+USERNAME in config
125
+
126
+  David Sommerseth (22):
127
+      Reworked the eurephia patch for inclusion to the openvpn-testing tree
128
+      Added mapping files from SVN commit ID to more descriptive commit IDs.
129
+      verb 5 logging wrongly reports received bytes
130
+      On TARGET_LINUX define _GNU_SOURCE if not defined
131
+      Fix autotools cross-compiling support
132
+      Add comile time information/settings from ./configure to --version
133
+      Make use of counter_type instead of int when counting bytes and network packets
134
+      Updated the man page to reflect the behavioural change of create_temp_file()
135
+      Removed no longer needed delete_file() call
136
+      Fixed potential NULL pointer issue
137
+      Fix dependency checking for configure.h (v2)
138
+      Make use of automake CLEANFILES variable instead of clean-local rule
139
+      Don't add compile time information if --enable-small is used
140
+      Harden create_temp_filename() (version 2)
141
+      Renamed all calls to create_temp_filename()
142
+      Updated the man page to reflect the behavioural change of create_temp_file()
143
+      Removed no longer needed delete_file() call
144
+      Avoid repetition of "this config may cache passwords in memory" (v2)
145
+      Revamped the script-security warning logging (version 2)
146
+      Fixed client hang when server don't PUSH (aka the NO_SOUP_FOR_YOU patch)
147
+      Solved hidden merge conflict between changes in feat_misc and bugfix2.1
148
+      Fix multiple configured scripts conflicts issue (version 2)
149
+
150
+  Davide Brini (6):
151
+      OCSP_check.sh: new check logic
152
+      The man page does not mention that the default value of "mssfix" is 1450.
153
+      Enhance contrib/pull-resolv-conf/client.{up,down} scripts
154
+      Fix missing /bin/bash -> /bin/sh
155
+      Fix certificate serial number export
156
+      Exclude ping and control packets from activity
157
+
158
+  Emilien Mantel (2):
159
+      Choose a different field in X509 to be username
160
+      Fixed static defined length check to use sizeof()
161
+
162
+  Enrico Scholz (1):
163
+      Allow 'lport 0' setup for random port binding
164
+
165
+  Fabian Knittel (1):
166
+      ssl.c: fix use of openvpn_run_script()'s return value
167
+
168
+  Gert Doering (3):
169
+      remove duplicate code in FREEBSD+DRAGONFLY system-dependent ifconfig
170
+      Implement IPv6 in TUN mode for Windows TAP driver.
171
+      fix date format mistake in PRODUCT_TAP_RELDATE (Peter Stuge)
172
+
173
+  Jan Brinkmann (1):
174
+      The man page needs dash escaping in UTF-8 environments
175
+
176
+  Karl O. Pinc (2):
177
+      Change verify-cn so cn is no longer hardcoded in openvpn's config file
178
+      Several updates to openvpn.8 (man page updates)
179
+
180
+  Mathieu GIANNECCHINI (1):
181
+      enhance tls-verify possibility
182
+
183
+  Wil Cooley (1):
184
+      pkitool lacks expected option "--help"
185
+
186
+  chantra (2):
187
+      Handle non standard subnets in PF grammar
188
+      Fix errors in openvpn-plugin.h documentation
189
+
115 190
 2009.12.11 -- Version 2.1.1
116 191
 
117 192
 * Fixed some breakage in openvpn.spec (which is required to build an
... ...
@@ -1,5 +1,5 @@
1 1
 dnl define the OpenVPN version
2
-define(PRODUCT_VERSION,[2.2-beta1])
2
+define(PRODUCT_VERSION,[2.2-beta2])
3 3
 dnl define the TAP version
4 4
 define(PRODUCT_TAP_ID,[tap0901])
5 5
 define(PRODUCT_TAP_WIN32_MIN_MAJOR,[9])