Browse code

preparing release 2.6.12

version.m4, ChangeLog, Changes.rst

Signed-off-by: Gert Doering <gert@greenie.muc.de>

Gert Doering authored on 2024/07/18 05:14:46
Showing 3 changed files
... ...
@@ -1,6 +1,18 @@
1 1
 OpenVPN ChangeLog
2 2
 Copyright (C) 2002-2024 OpenVPN Inc <sales@openvpn.net>
3 3
 
4
+2024.07.17 -- Version 2.6.12
5
+
6
+Arne Schwabe (1):
7
+      Allow trailing \r and \n in control channel message
8
+
9
+Frank Lichtenheld (1):
10
+      configure: Try to detect LZO with pkg-config
11
+
12
+Gianmarco De Gregori (1):
13
+      Http-proxy: fix bug preventing proxy credentials caching
14
+
15
+
4 16
 2024.06.20 -- Version 2.6.11
5 17
 
6 18
 5andr0 (1):
... ...
@@ -1,3 +1,20 @@
1
+Overview of changes in 2.6.12
2
+=============================
3
+Bug fixes
4
+---------
5
+- the fix for CVE-2024-5594 (refuse control channel messages with
6
+  nonprintable characters) was too strict, breaking user configurations
7
+  with AUTH_FAIL messages having trailing CR/NL characters.  This often
8
+  happens if the AUTH_FAIL reason is set by a script.  Strip those before
9
+  testing the command buffer (Github: #568).  Also, add unit test.
10
+
11
+- Http-proxy: fix bug preventing proxy credentials caching (Trac: #1187)
12
+
13
+Code maintenance
14
+----------------
15
+- try to detect LZO installation with pkg-config (= on many systems
16
+  manually setting LZO_CFLAGS/LZO_LIBS should no longer be necessary)
17
+
1 18
 Overview of changes in 2.6.11
2 19
 =============================
3 20
 Security fixes
... ...
@@ -3,12 +3,12 @@ define([PRODUCT_NAME], [OpenVPN])
3 3
 define([PRODUCT_TARNAME], [openvpn])
4 4
 define([PRODUCT_VERSION_MAJOR], [2])
5 5
 define([PRODUCT_VERSION_MINOR], [6])
6
-define([PRODUCT_VERSION_PATCH], [.11])
6
+define([PRODUCT_VERSION_PATCH], [.12])
7 7
 m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_MAJOR])
8 8
 m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_MINOR], [[.]])
9 9
 m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_PATCH], [[]])
10 10
 define([PRODUCT_BUGREPORT], [openvpn-users@lists.sourceforge.net])
11
-define([PRODUCT_VERSION_RESOURCE], [2,6,11,0])
11
+define([PRODUCT_VERSION_RESOURCE], [2,6,12,0])
12 12
 dnl define the TAP version
13 13
 define([PRODUCT_TAP_WIN_COMPONENT_ID], [tap0901])
14 14
 define([PRODUCT_TAP_WIN_MIN_MAJOR], [9])