-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
- Loading branch information
Showing
3 changed files
with
112 additions
and
3 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,5 +1,47 @@ | ||
OpenVPN ChangeLog | ||
Copyright (C) 2002-2024 OpenVPN Inc <[email protected]> | ||
Copyright (C) 2002-2025 OpenVPN Inc <[email protected]> | ||
|
||
2025.01.15 -- Version 2.6.13 | ||
|
||
Arne Schwabe (2): | ||
Refuse clients if username or password is longer than USER_PASS_LEN | ||
Improve peer fingerprint documentation | ||
|
||
Ben Boeckel (1): | ||
console_systemd: remove the timeout when using 'systemd-ask-password' | ||
|
||
Frank Lichtenheld (5): | ||
Fix missing spaces in various messages | ||
GHA: Update macOS runners | ||
GHA: Simplify macOS builds | ||
Various typo fixes | ||
forward: Fix potential unaligned access in drop_if_recursive_routing | ||
|
||
Gert Doering (2): | ||
send uname() release as IV_PLAT_VER= on non-windows versions | ||
preparing release 2.6.13 | ||
|
||
Gianmarco De Gregori (1): | ||
Route: remove incorrect routes on exit | ||
|
||
Lev Stipakov (1): | ||
Use a more robust way to get dco-win version | ||
|
||
Ralf Lici (1): | ||
Fix check_addr_clash argument order | ||
|
||
Rémi Farault (1): | ||
Add calls to nvlist_destroy to avoid leaks | ||
|
||
Selva Nair (3): | ||
proxy.c: Clear sensitive data after use | ||
Protect cached username, password and token on client | ||
Fix more of uninitialized struct user_pass local vars | ||
|
||
corubba (2): | ||
Fix IPv6 in port-share journal | ||
Fix port-share journal doc | ||
|
||
|
||
2024.07.17 -- Version 2.6.12 | ||
|
||
|
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], [.12]) | ||
define([PRODUCT_VERSION_PATCH], [.13]) | ||
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,12,0]) | ||
define([PRODUCT_VERSION_RESOURCE], [2,6,13,0]) | ||
dnl define the TAP version | ||
define([PRODUCT_TAP_WIN_COMPONENT_ID], [tap0901]) | ||
define([PRODUCT_TAP_WIN_MIN_MAJOR], [9]) | ||
|