From: Gert Doering Date: Wed, 18 Jun 2025 13:37:38 +0000 (+0200) Subject: OpenVPN Release 2.7_alpha2 X-Git-Tag: v2.7_alpha2^0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2026fe583f4fa5ef16779e527c3d3e5a0edd2dc0;p=thirdparty%2Fopenvpn.git 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" --- diff --git a/ChangeLog b/ChangeLog index c6e626bf..4fd1f59a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,43 @@ OpenVPN ChangeLog Copyright (C) 2002-2025 OpenVPN Inc +2025.06.18 -- Version 2.7_alpha2 + +Antonio Quartulli (1): + dco_linux: enable extended netlink error reporting + +Arne Schwabe (1): + Add missing header in unit tests Makefile.am + +Frank Lichtenheld (6): + Remove contrib/pull-resolv-conf + Update copyright statements to 2025 + Do not segfault on missing --dh in server config + Delete old sample-windows file and obsolete Windows sample handling + t_server_null: Test different permutations of --dh + Fix various badly placed comments in preparation for reformat + +Gert Doering (1): + OpenVPN Release 2.7_alpha2 + +Gianmarco De Gregori (1): + Multi-socket: local_list clean-up + +Heiko Hund (2): + fix typo in haikuos dns-updown script + dns: deal with --dhcp-options when --dns is active + +Max Fillinger (2): + Use mbedtls_ssl_export_keying_material() + mbedtls: Allow TLS 1.3 if available + +Ralf Lici (1): + Preserve socket protocol during float processing + +Samuli Seppänen (1): + t_server_null: print error when server startup fails + + 2025.05.28 -- Version 2.7_alpha1 5andr0 (1): diff --git a/Changes.rst b/Changes.rst index 3ffa2cbb..bfb6742d 100644 --- a/Changes.rst +++ b/Changes.rst @@ -114,6 +114,9 @@ Allow overriding username with ``--override-username`` Support for Haiku OS +TLS1.3 support with mbedTLS (very recent mbedTLS development versions only) + + Deprecated features ------------------- ``secret`` support has been removed (by default). diff --git a/version.m4 b/version.m4 index 4c3b7c80..6efb67cc 100644 --- a/version.m4 +++ b/version.m4 @@ -3,7 +3,7 @@ define([PRODUCT_NAME], [OpenVPN]) define([PRODUCT_TARNAME], [openvpn]) define([PRODUCT_VERSION_MAJOR], [2]) define([PRODUCT_VERSION_MINOR], [7]) -define([PRODUCT_VERSION_PATCH], [_alpha1]) +define([PRODUCT_VERSION_PATCH], [_alpha2]) m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_MAJOR]) m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_MINOR], [[.]]) m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_PATCH], [[]])