Browse code

Preparing for release v2.4_beta1 (ChangeLog, version.m4)

Also ensuring the ChangeLog is completely UTF-8 encoded; discovered
one ChangeLog entry had ISO-8859-1 encoding.

Signed-off-by: David Sommerseth <davids@openvpn.net>

David Sommerseth authored on 2016/11/17 19:40:37
Showing 2 changed files
... ...
@@ -1,6 +1,83 @@
1 1
 OpenVPN Change Log
2 2
 Copyright (C) 2002-2016 OpenVPN Technologies, Inc. <sales@openvpn.net>
3 3
 
4
+2016.11.17 -- Version 2.4_beta1
5
+Arne Schwabe (1):
6
+      Make Changes.rst nicer for 2.4 release
7
+
8
+David Sommerseth (16):
9
+      Update .mailmap to unify and clean up odd names and e-mail addresses
10
+      cleanup: Remove NOP code sections in ssl.c:tls_process()
11
+      Remove last rest of INSTALL-win32.txt references
12
+      auth-gen-token: Add --auth-gen-token option
13
+      auth-gen-token: Generate an auth-token per client
14
+      auth-gen-token: Push generated auth-tokens to the client
15
+      auth-gen-token: Authenticate generated auth-tokens when client re-authenticates
16
+      Fix builds with --disable-crypto
17
+      man: Improve the --keepalive section
18
+      console: Fix compiler warning
19
+      systemd: Improve the systemd unit files
20
+      tun: Fix compiler warnings
21
+      file checks: Merge warn_if_group_others_accessible() into check_file_access()
22
+      tun: Fix weird commit error causing a double assignment
23
+      options: Remove --tls-remote
24
+      Remove unused variable in argv_printf_arglist()
25
+
26
+Gert Doering (10):
27
+      openvpn version line: remove [IPv6], add [AEAD] if available
28
+      clean up *sig_info handling in link_socket_init_phase2()
29
+      check c->c2.link_socket before calling do_init_route_ipv6_list()
30
+      Check previously-unchecked buf_alloc_write() call in crypto self-test.
31
+      Fix potential division by zero in shaper_reset()
32
+      Repair topology subnet on FreeBSD 11
33
+      Repair topology subnet on OpenBSD
34
+      Add in_port_t check to configure.ac
35
+      Fix compilation on MinGW with -std=c99
36
+      Replace WIN32 by _WIN32
37
+
38
+Heiko Hund (4):
39
+      put argv_* functions into own file, add unit tests
40
+      Remove unused and unecessary argv interfaces
41
+      remove unused system_str from struct argv
42
+      Factor out %sc handling from argv_printf()
43
+
44
+Lev Stipakov (1):
45
+      Drop recursively routed packets
46
+
47
+Samuli Seppänen (6):
48
+      Remove INSTALL-win32.txt that is now hosted in openvpn-build
49
+      Fix update_t_client_ips.sh for out of tree builds
50
+      Make sure that all relevant files under test go to release tarballs
51
+      Allow passing extra arguments to fping/fping6 in t_client.rc
52
+      Prevent generation of duplicate EXPECT_IFCONFIG entries
53
+      Fix a logic problem in handling of --up scripts in t_client.sh
54
+
55
+Selva Nair (2):
56
+      Support --block-outside-dns on multiple tunnels
57
+      Unbreak windows build
58
+
59
+Steffan Karger (19):
60
+      Fix use-after-free bug in prepare_push_reply()
61
+      Remove verbose msg() from send_push_reply()
62
+      Limit --reneg-bytes to 64MB when using small block ciphers
63
+      Add a revoked cert to the sample keys
64
+      Fix --tls-version-max in mbed TLS builds
65
+      Don't deference type-punned pointers
66
+      Fix builds on compilers without anonymous union support
67
+      Refactor static/tls-auth key loading
68
+      Add missing includes in error.h
69
+      Make argv unit tests obey {MBEDTLS, OPENSSL}_{LIBS, CFLAGS}
70
+      Move private file access checks to options_postprocess_filechecks()
71
+      Deprecate key-method 1
72
+      Refactor CRL handling
73
+      Remove unneeded check for extra_certs_file_inline
74
+      Fix missing return value checks in multi_process_float()
75
+      Restore pre-NCP cipher options on SIGUSR1
76
+      Remove unused variables from do_init_crypto_static()
77
+      Add control channel encryption (--tls-crypt)
78
+      Add --tls-crypt unit tests
79
+
80
+
4 81
 2016.10.19 -- Version 2.4_alpha2
5 82
 
6 83
 David Sommerseth (1):
... ...
@@ -525,7 +602,7 @@ Robert Fischer (1):
525 525
 Samuel Thibault (1):
526 526
       Ensure that client-connect files are always deleted
527 527
 
528

                
528
+Samuli Seppänen (15):
529 529
       Removed ChangeLog.IPv6
530 530
       Added cross-compilation information INSTALL-win32.txt
531 531
       Updated README
... ...
@@ -3,7 +3,7 @@ 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], [_alpha2])
6
+define([PRODUCT_VERSION_PATCH], [_beta1])
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], [[]])