Skip to content

Commit 09cc669

Browse files
committed
[RELEASE] Released version 2.4-dev13
Released version 2.4-dev13 with the following main changes : - BUG/MEDIUM: cli: fix "help" crashing since recent spelling fixes - BUG/MINOR: cfgparse: use the GLOBAL not LISTEN keywords list for spell checking - MINOR: tools: improve word fingerprinting by counting presence - MINOR: tools: do not sum squares of differences for word fingerprints - MINOR: cli: improve fuzzy matching to work on all remaining words at once - MINOR: cli: sort the suggestions by order of relevance - MINOR: cli: limit spelling suggestions to 5 - MINOR: cfgparse/proxy: also support spelling fixes on options - BUG/MINOR: resolvers: Add missing case-insensitive comparisons of DNS hostnames - MINOR: time: export the global_now variable - BUG/MINOR: freq_ctr/threads: make use of the last updated global time - MINOR: freq_ctr/threads: relax when failing to update a sliding window value - MINOR/BUG: mworker/cli: do not use the unix_bind prefix for the master CLI socket - MINOR: mworker/cli: alert the user if we enabled a master CLI but not the master-worker mode - MINOR: cli: implement experimental-mode - REORG: server: add a free server function - MINOR: cfgparse: always alloc idle conns task - REORG: server: move keywords in srv_kws - MINOR: server: remove fastinter from mistyped kw list - REORG: server: split parse_server - REORG: server: move alert traces in parse_server - REORG: server: rename internal functions from parse_server - REORG: server: attach servers in parse_server - REORG: server: use flags for parse_server - MINOR: server: prepare parsing for dynamic servers - MINOR: stats: export function to allocate extra proxy counters - MEDIUM: server: implement 'add server' cli command - REGTESTS: implement test for 'add server' cli - MINOR: server: enable standard options for dynamic servers - MINOR: server: support keyword proto in 'add server' cli - BUG/MINOR: protocol: add missing support of dgram unix socket. - CLEANUP: Fix a typo in fix_is_valid description - MINOR: raw_sock: Add a close method. - MEDIUM: connections: Introduce a new XPRT method, start(). - MEDIUM: connections: Implement a start() method for xprt_handshake. - MEDIUM: connections: Implement a start() method in ssl_sock. - MINOR: muxes: garbage collect the reset() method. - CLEANUP: tcp-rules: Fix a typo in error messages about expect-netscaler-cip - MEDIUM: lua: Use a per-thread counter to track some non-reentrant parts of lua - BUG/MEDIUM: debug/lua: Don't dump the lua stack if not dumpable
1 parent 83926a0 commit 09cc669

File tree

4 files changed

+45
-3
lines changed

4 files changed

+45
-3
lines changed

CHANGELOG

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,48 @@
11
ChangeLog :
22
===========
33

4+
2021/03/19 : 2.4-dev13
5+
- BUG/MEDIUM: cli: fix "help" crashing since recent spelling fixes
6+
- BUG/MINOR: cfgparse: use the GLOBAL not LISTEN keywords list for spell checking
7+
- MINOR: tools: improve word fingerprinting by counting presence
8+
- MINOR: tools: do not sum squares of differences for word fingerprints
9+
- MINOR: cli: improve fuzzy matching to work on all remaining words at once
10+
- MINOR: cli: sort the suggestions by order of relevance
11+
- MINOR: cli: limit spelling suggestions to 5
12+
- MINOR: cfgparse/proxy: also support spelling fixes on options
13+
- BUG/MINOR: resolvers: Add missing case-insensitive comparisons of DNS hostnames
14+
- MINOR: time: export the global_now variable
15+
- BUG/MINOR: freq_ctr/threads: make use of the last updated global time
16+
- MINOR: freq_ctr/threads: relax when failing to update a sliding window value
17+
- MINOR/BUG: mworker/cli: do not use the unix_bind prefix for the master CLI socket
18+
- MINOR: mworker/cli: alert the user if we enabled a master CLI but not the master-worker mode
19+
- MINOR: cli: implement experimental-mode
20+
- REORG: server: add a free server function
21+
- MINOR: cfgparse: always alloc idle conns task
22+
- REORG: server: move keywords in srv_kws
23+
- MINOR: server: remove fastinter from mistyped kw list
24+
- REORG: server: split parse_server
25+
- REORG: server: move alert traces in parse_server
26+
- REORG: server: rename internal functions from parse_server
27+
- REORG: server: attach servers in parse_server
28+
- REORG: server: use flags for parse_server
29+
- MINOR: server: prepare parsing for dynamic servers
30+
- MINOR: stats: export function to allocate extra proxy counters
31+
- MEDIUM: server: implement 'add server' cli command
32+
- REGTESTS: implement test for 'add server' cli
33+
- MINOR: server: enable standard options for dynamic servers
34+
- MINOR: server: support keyword proto in 'add server' cli
35+
- BUG/MINOR: protocol: add missing support of dgram unix socket.
36+
- CLEANUP: Fix a typo in fix_is_valid description
37+
- MINOR: raw_sock: Add a close method.
38+
- MEDIUM: connections: Introduce a new XPRT method, start().
39+
- MEDIUM: connections: Implement a start() method for xprt_handshake.
40+
- MEDIUM: connections: Implement a start() method in ssl_sock.
41+
- MINOR: muxes: garbage collect the reset() method.
42+
- CLEANUP: tcp-rules: Fix a typo in error messages about expect-netscaler-cip
43+
- MEDIUM: lua: Use a per-thread counter to track some non-reentrant parts of lua
44+
- BUG/MEDIUM: debug/lua: Don't dump the lua stack if not dumpable
45+
446
2021/03/13 : 2.4-dev12
547
- CLEANUP: connection: Use `VAR_ARRAY` in `struct tlv` definition
648
- CLEANUP: connection: Remove useless test for NULL before calling `pool_free()`

VERDATE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
$Format:%ci$
2-
2021/03/13
2+
2021/03/19

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4-dev12
1+
2.4-dev13

doc/configuration.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
----------------------
55
version 2.4
66
willy tarreau
7-
2021/03/13
7+
2021/03/19
88

99

1010
This document covers the configuration language as implemented in the version

0 commit comments

Comments
 (0)