forked from OpenVPN/openvpn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version.m4, ChangeLog, Changes.rst Signed-off-by: Gert Doering <[email protected]>
- Loading branch information
Showing
3 changed files
with
78 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,37 @@ | ||
OpenVPN Change Log | ||
Copyright (C) 2002-2020 OpenVPN Inc <[email protected]> | ||
|
||
2021.04.20 -- Version 2.5.2 | ||
|
||
Arne Schwabe (10): | ||
Avoid generating unecessary mbed debug messages | ||
Restore also ping related options on a reconnect | ||
Cleanup print_details and add signature/ED certificate print | ||
Always disable TLS renegotiations | ||
Also restore/save route-gateway options on SIGUSR1 reconnects | ||
Move context_auth from context_2 to tls_multi and name it multi_state | ||
Fix condition to generate session keys | ||
Move auth_token_state from multi to key_state | ||
Ensure auth-token is only sent on a fully authenticated session | ||
Ensure key state is authenticated before sending push reply | ||
|
||
Gert Doering (2): | ||
Fix potential NULL ptr crash if compiled with DMALLOC | ||
|
||
Max Fillinger (2): | ||
In init_ssl, open the correct CRL path pre-chroot | ||
Abort if CRL file can't be stat-ed in ssl_init | ||
|
||
Richard Bonhomme (1): | ||
Do not print Diffie Hellman parameters file to log file | ||
|
||
Simon Rozman (1): | ||
openvpnserv: Cache last error before it is overridden | ||
|
||
Vladislav Grishenko (1): | ||
Fix IPv4 default gateway with multiple route tables | ||
|
||
|
||
2021.02.24 -- Version 2.5.1 | ||
|
||
Arne Schwabe (5): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,12 @@ define([PRODUCT_NAME], [OpenVPN]) | |
define([PRODUCT_TARNAME], [openvpn]) | ||
define([PRODUCT_VERSION_MAJOR], [2]) | ||
define([PRODUCT_VERSION_MINOR], [5]) | ||
define([PRODUCT_VERSION_PATCH], [.1]) | ||
define([PRODUCT_VERSION_PATCH], [.2]) | ||
m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_MAJOR]) | ||
m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_MINOR], [[.]]) | ||
m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_PATCH], [[]]) | ||
define([PRODUCT_BUGREPORT], [[email protected]]) | ||
define([PRODUCT_VERSION_RESOURCE], [2,5,1,0]) | ||
define([PRODUCT_VERSION_RESOURCE], [2,5,2,0]) | ||
dnl define the TAP version | ||
define([PRODUCT_TAP_WIN_COMPONENT_ID], [tap0901]) | ||
define([PRODUCT_TAP_WIN_MIN_MAJOR], [9]) | ||
|