-
Notifications
You must be signed in to change notification settings - Fork 3k
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
112 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,52 @@ | ||
OpenVPN ChangeLog | ||
Copyright (C) 2002-2023 OpenVPN Inc <[email protected]> | ||
|
||
2023.08.14 -- Version 2.6.6 | ||
|
||
Antonio Quartulli (1): | ||
configure.ac: fix typ0 in LIBCAPNG_CFALGS | ||
|
||
Arne Schwabe (8): | ||
Avoid unused function warning/error on FreeBSD (and potientially others) | ||
fix warning with gcc 12.2.0 (compiler bug?) | ||
Fix CR_RESPONSE mangaement message using wrong key_id | ||
Print a more user-friendly error when tls-crypt-v2 client auth fails | ||
Ignore Ipv6 route delete request on Android and set ipv4 verbosity to 7 | ||
Revert commit 423ced962d | ||
Implement using --peer-fingerprint without CA certificates | ||
show extra info for OpenSSL errors | ||
|
||
David Sommerseth (1): | ||
ntlm: Clarify details on NTLM phase 3 decoding | ||
|
||
Frank Lichtenheld (8): | ||
dist: add more missing files only used in the MSVC build | ||
dist: Include all documentation in distribution | ||
unit_tests: Add missing cert_data.h to source list for unit tests | ||
test_tls_crypt: Improve mock() usage to be more portable | ||
Remove old Travis CI related files | ||
options: Do not hide variables from parent scope | ||
pkcs11_openssl: Disable unused code | ||
route: Fix overriding return value of add_route3 | ||
|
||
George Pchelkin (1): | ||
fix typo: dhcp-options to dhcp-option in vpn-network-options.rst | ||
|
||
Gert Doering (1): | ||
Make received OCC exit messages more visible in log. | ||
|
||
Heiko Hund (1): | ||
work around false positive warning with mingw 12 | ||
|
||
Lev Stipakov (3): | ||
tun.c: enclose DNS domain in single quotes in WMIC call | ||
manage.c: document missing KID parameter | ||
Set WINS servers via interactice service | ||
|
||
Sergey Korolev (1): | ||
dco-linux: fix counter print format | ||
|
||
|
||
2023.06.13 -- Version 2.6.5 | ||
|
||
Arne Schwabe (1): | ||
|
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], [6]) | ||
define([PRODUCT_VERSION_PATCH], [.5]) | ||
define([PRODUCT_VERSION_PATCH], [.6]) | ||
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,6,5,0]) | ||
define([PRODUCT_VERSION_RESOURCE], [2,6,6,0]) | ||
dnl define the TAP version | ||
define([PRODUCT_TAP_WIN_COMPONENT_ID], [tap0901]) | ||
define([PRODUCT_TAP_WIN_MIN_MAJOR], [9]) | ||
|