Skip to content

Commit 038a94b

Browse files
committed
preparing release 2.6.12
version.m4, ChangeLog, Changes.rst Signed-off-by: Gert Doering <[email protected]>
1 parent 3435739 commit 038a94b

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

ChangeLog

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
OpenVPN ChangeLog
22
Copyright (C) 2002-2024 OpenVPN Inc <[email protected]>
33

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+
416
2024.06.20 -- Version 2.6.11
517

618
5andr0 (1):

Changes.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
118
Overview of changes in 2.6.11
219
=============================
320
Security fixes

version.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ define([PRODUCT_NAME], [OpenVPN])
33
define([PRODUCT_TARNAME], [openvpn])
44
define([PRODUCT_VERSION_MAJOR], [2])
55
define([PRODUCT_VERSION_MINOR], [6])
6-
define([PRODUCT_VERSION_PATCH], [.11])
6+
define([PRODUCT_VERSION_PATCH], [.12])
77
m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_MAJOR])
88
m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_MINOR], [[.]])
99
m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_PATCH], [[]])
1010
define([PRODUCT_BUGREPORT], [[email protected]])
11-
define([PRODUCT_VERSION_RESOURCE], [2,6,11,0])
11+
define([PRODUCT_VERSION_RESOURCE], [2,6,12,0])
1212
dnl define the TAP version
1313
define([PRODUCT_TAP_WIN_COMPONENT_ID], [tap0901])
1414
define([PRODUCT_TAP_WIN_MIN_MAJOR], [9])

0 commit comments

Comments
 (0)