Browse code

Preparing for release v2.4.1 (ChangeLog, version.m4)

Signed-off-by: Gert Doering <gert@greenie.muc.de>

Gert Doering authored on 2017/03/22 04:46:16
Showing 2 changed files
... ...
@@ -1,6 +1,79 @@
1 1
 OpenVPN Change Log
2 2
 Copyright (C) 2002-2017 OpenVPN Technologies, Inc. <sales@openvpn.net>
3 3
 
4
+2017.03.21 -- Version 2.4.1
5
+Antonio Quartulli (4):
6
+      attempt to add IPv6 route even when no IPv6 address was configured
7
+      fix redirect-gateway behaviour when an IPv4 default route does not exist
8
+      CRL: use time_t instead of struct timespec to store last mtime
9
+      ignore remote-random-hostname if a numeric host is provided
10
+
11
+Christian Hesse (7):
12
+      man: fix formatting for alternative option
13
+      systemd: Use automake tools to install unit files
14
+      systemd: Do not race on RuntimeDirectory
15
+      systemd: Add more security feature for systemd units
16
+      Clean up plugin path handling
17
+      plugin: Remove GNUism in openvpn-plugin.h generation
18
+      fix typo in notification message
19
+
20
+David Sommerseth (6):
21
+      management: >REMOTE operation would overwrite ce change indicator
22
+      management: Remove a redundant #ifdef block
23
+      git: Merge .gitignore files into a single file
24
+      systemd: Move the READY=1 signalling to an earlier point
25
+      plugin: Improve the handling of default plug-in directory
26
+      cleanup: Remove faulty env processing functions
27
+
28
+Emmanuel Deloget (8):
29
+      OpenSSL: check for the SSL reason, not the full error
30
+      OpenSSL: don't use direct access to the internal of X509_STORE_CTX
31
+      OpenSSL: don't use direct access to the internal of SSL_CTX
32
+      OpenSSL: don't use direct access to the internal of X509_STORE
33
+      OpenSSL: don't use direct access to the internal of X509_OBJECT
34
+      OpenSSL: don't use direct access to the internal of RSA_METHOD
35
+      OpenSSL: SSLeay symbols are no longer available in OpenSSL 1.1
36
+      OpenSSL: use EVP_CipherInit_ex() instead of EVP_CipherInit()
37
+
38
+Eric Thorpe (1):
39
+      Fix Building Using MSVC
40
+
41
+Gert Doering (4):
42
+      Add openssl_compat.h to openvpn_SOURCES
43
+      Fix '--dev null'
44
+      Fix installation of IPv6 host route to VPN server when using iservice.
45
+      Make ENABLE_OCC no longer depend on !ENABLE_SMALL
46
+
47
+Gisle Vanem (1):
48
+      Crash in options.c
49
+
50
+Ilya Shipitsin (2):
51
+      Resolve several travis-ci issues
52
+      travis-ci: remove unused files
53
+
54
+Olivier Wahrenberger (1):
55
+      Fix building with LibreSSL 2.5.1 by cleaning a hack.
56
+
57
+Selva Nair (4):
58
+      Fix push options digest update
59
+      Always release dhcp address in close_tun() on Windows.
60
+      Add a check for -Wl, --wrap support in linker
61
+      Fix user's group membership check in interactive service to work with domains
62
+
63
+Simon Matter (1):
64
+      Fix segfault when using crypto lib without AES-256-CTR or SHA256
65
+
66
+Steffan Karger (8):
67
+      More broadly enforce Allman style and braces-around-conditionals
68
+      Use SHA256 for the internal digest, instead of MD5
69
+      OpenSSL: 1.1 fallout - fix configure on old autoconf
70
+      Fix types in WIN32 socket_listen_accept()
71
+      Remove duplicate X509 env variables
72
+      Fix non-C99-compliant builds: don't use const size_t as array length
73
+      Deprecate --ns-cert-type
74
+      Be less picky about keyUsage extensions
75
+
76
+
4 77
 2016.12.26 -- Version 2.4.0
5 78
 David Sommerseth (5):
6 79
       dev-tools: Added script for updating copyright years in files
... ...
@@ -3,12 +3,12 @@ define([PRODUCT_NAME], [OpenVPN])
3 3
 define([PRODUCT_TARNAME], [openvpn])
4 4
 define([PRODUCT_VERSION_MAJOR], [2])
5 5
 define([PRODUCT_VERSION_MINOR], [4])
6
-define([PRODUCT_VERSION_PATCH], [.0])
6
+define([PRODUCT_VERSION_PATCH], [.1])
7 7
 m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_MAJOR])
8 8
 m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_MINOR], [[.]])
9 9
 m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_PATCH], [[]])
10 10
 define([PRODUCT_BUGREPORT], [openvpn-users@lists.sourceforge.net])
11
-define([PRODUCT_VERSION_RESOURCE], [2,4,0,0])
11
+define([PRODUCT_VERSION_RESOURCE], [2,4,1,0])
12 12
 dnl define the TAP version
13 13
 define([PRODUCT_TAP_WIN_COMPONENT_ID], [tap0901])
14 14
 define([PRODUCT_TAP_WIN_MIN_MAJOR], [9])