Browse code

OpenVPN Release 2.7_alpha2

version.m4, ChangeLog

Changes.rst has not received an "2.7_alpha2" section - it has the
"highlevel" overview of what is new in 2.7, but for alpha/beta releases
it's better to look at git log to see what has been added/fixed.

The only new feature alpha1 -> alpha2 is "TLS 1.3 support with
bleeding-edge mbedTLS versions"

Gert Doering authored on 2025/06/18 22:37:38
Showing 3 changed files
... ...
@@ -1,6 +1,43 @@
1 1
 OpenVPN ChangeLog
2 2
 Copyright (C) 2002-2025 OpenVPN Inc <sales@openvpn.net>
3 3
 
4
+2025.06.18 -- Version 2.7_alpha2
5
+
6
+Antonio Quartulli (1):
7
+      dco_linux: enable extended netlink error reporting
8
+
9
+Arne Schwabe (1):
10
+      Add missing header in unit tests Makefile.am
11
+
12
+Frank Lichtenheld (6):
13
+      Remove contrib/pull-resolv-conf
14
+      Update copyright statements to 2025
15
+      Do not segfault on missing --dh in server config
16
+      Delete old sample-windows file and obsolete Windows sample handling
17
+      t_server_null: Test different permutations of --dh
18
+      Fix various badly placed comments in preparation for reformat
19
+
20
+Gert Doering (1):
21
+      OpenVPN Release 2.7_alpha2
22
+
23
+Gianmarco De Gregori (1):
24
+      Multi-socket: local_list clean-up
25
+
26
+Heiko Hund (2):
27
+      fix typo in haikuos dns-updown script
28
+      dns: deal with --dhcp-options when --dns is active
29
+
30
+Max Fillinger (2):
31
+      Use mbedtls_ssl_export_keying_material()
32
+      mbedtls: Allow TLS 1.3 if available
33
+
34
+Ralf Lici (1):
35
+      Preserve socket protocol during float processing
36
+
37
+Samuli Seppänen (1):
38
+      t_server_null: print error when server startup fails
39
+
40
+
4 41
 2025.05.28 -- Version 2.7_alpha1
5 42
 
6 43
 5andr0 (1):
... ...
@@ -114,6 +114,9 @@ Allow overriding username with ``--override-username``
114 114
 
115 115
 Support for Haiku OS
116 116
 
117
+TLS1.3 support with mbedTLS (very recent mbedTLS development versions only)
118
+
119
+
117 120
 Deprecated features
118 121
 -------------------
119 122
 ``secret`` support has been removed (by default).
... ...
@@ -3,7 +3,7 @@ define([PRODUCT_NAME], [OpenVPN])
3 3
 define([PRODUCT_TARNAME], [openvpn])
4 4
 define([PRODUCT_VERSION_MAJOR], [2])
5 5
 define([PRODUCT_VERSION_MINOR], [7])
6
-define([PRODUCT_VERSION_PATCH], [_alpha1])
6
+define([PRODUCT_VERSION_PATCH], [_alpha2])
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], [[]])