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
117 additions
and
4 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,49 @@ | ||
OpenVPN Change Log | ||
Copyright (C) 2002-2020 OpenVPN Inc <[email protected]> | ||
|
||
2021.02.24 -- Version 2.5.1 | ||
|
||
Arne Schwabe (5): | ||
Fix auth-token not being updated if auth-nocache is set | ||
Remove auth_user_pass.wait_for_push variable | ||
Fix port-share option with TLS-Crypt v2 | ||
Zero initialise msghdr prior to calling sendmesg | ||
Fix tls-auth mismatch OCC message when tls-cryptv2 is used. | ||
|
||
David Sommerseth (1): | ||
build: Fix missing install of man page in certain environments | ||
|
||
Domagoj Pensa (3): | ||
Fix too early argv freeing when registering DNS | ||
Remove 1 second delay before running netsh | ||
Skip DHCP renew with Wintun adapter | ||
|
||
Gert Doering (6): | ||
Change travis build scripts to use https when fetching prerequisites. | ||
Fix line number reporting on config file errors after <inline> segments | ||
Clarify --block-ipv6 intent and direction. | ||
Document common uses of 'echo' directive, re-enable logging for 'echo'. | ||
Make OPENVPN_PLUGIN_ENABLE_PF failures FATAL | ||
clean up / rewrite sample-plugins/defer/simple.c | ||
|
||
Greg Cox (5): | ||
Fix naming error in sample-plugins/defer/simple.c | ||
Documentation fixes around openvpn_plugin_func_v3 in openvpn-plugin.h.in | ||
Update openvpn_plugin_func_v2 to _v3 in sample-plugins/defer/simple.c | ||
More explicit versioning compatibility in sample-plugins/defer/simple.c | ||
Explain structver usage in sample defer plugin. | ||
|
||
Richard Bonhomme (1): | ||
Man page sections corrections | ||
|
||
Selva Nair (1): | ||
Quote the domain name argument passed to the wmic command | ||
|
||
Steffan Karger (2): | ||
tls-crypt-v2: fix server memory leak | ||
tls-crypt-v2: also preload tls-crypt-v2 keys (if --persist-key) | ||
|
||
|
||
2020.10.27 -- Version 2.5.0 | ||
(no changes relative to v2.5_rc3) | ||
|
||
|
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], [.0]) | ||
define([PRODUCT_VERSION_PATCH], [.1]) | ||
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,0,8]) | ||
define([PRODUCT_VERSION_RESOURCE], [2,5,1,0]) | ||
dnl define the TAP version | ||
define([PRODUCT_TAP_WIN_COMPONENT_ID], [tap0901]) | ||
define([PRODUCT_TAP_WIN_MIN_MAJOR], [9]) | ||
|