Skip to content

Commit 442e834

Browse files
committed
[RELEASE] Released version 1.5-dev3
Released version 1.5-dev3 with the following main changes : - [DOC] fix http-request documentation - [MEDIUM] enable/disable servers from the stats web interface - [MEDIUM] stats: add an admin level - [DOC] stats: document the "stats admin" statement - [MINOR] startup: print the proxy socket which caused an error - [CLEANUP] Remove unneeded chars allocation - [MINOR] config: detect options not supported due to compilation options - [MINOR] Add pattern's fetchs payload and payload_lv - [MINOR] frontend: improve accept-proxy header parsing - [MINOR] frontend: add tcpv6 support on accept-proxy bind - [MEDIUM] Enhance message errors management on binds - [MINOR] Manage unix socket source field on logs - [MINOR] Manage unix socket source field on session dump on sock stats - [MINOR] Support of unix listener sockets for debug and log event messages on frontend.c - [MINOR] Add some tests on sockets family for port remapping and mode transparent. - [MINOR] Manage socket type unix for some logs - [MINOR] Enhance controls of socket's family on acls and pattern fetch - [MINOR] Support listener's sockets unix on http logs. - [MEDIUM] Add supports of bind on unix sockets. - [BUG] stick table purge failure if size less than 255 - [BUG] stick table entries expire on counters updates/read or show table, even if there is no "expire" parameter - [MEDIUM] Implement tcp inspect response rules - [DOC] tcp-response content and inspect - [MINOR] new acls fetch req_ssl_hello_type and rep_ssl_hello_type - [DOC] acls rep_ssl_hello and req_ssl_hello - [MEDIUM] Create new protected pattern types CONSTSTRING and CONSTDATA to force memcpy if data from protected areas need to be manipulated. - [DOC] new type binary in stick-table - [DOC] stick store-response and new patterns payload and payload_lv - [MINOR] Manage all types (ip, integer, string, binary) on cli "show table" command - [MEDIUM] Create updates tree on stick table to manage sync. - [MAJOR] Add new files src/peer.c, include/proto/peers.h and include/types/peers.h for sync stick table management - [MEDIUM] Manage peers section parsing and stick table registration on peers. - [MEDIUM] Manage soft stop on peers proxy - [DOC] add documentation for peers section - [MINOR] checks: add support for LDAPv3 health checks - [MINOR] add better support to "mysql-check" - [BUG] Restore info about available active/backup servers - [CONTRIB] Update haproxy.pl - [CONTRIB] Update Cacti Tempates - [CONTRIB] add templates for Cacti. - [BUG] http: don't consider commas as a header delimitor within quotes - [MINOR] support a global jobs counter - [DOC] add a summary about cookie incompatibilities between specs and browsers - [DOC] fix description of cookie "insert" and "indirect" modes - [MEDIUM] http: fix space handling in the request cookie parser - [MEDIUM] http: fix space handling in the response cookie parser - [DOC] fix typo in the queue() definition (backend, not frontend) - [BUG] deinit: unbind listeners before freeing them - [BUG] stream_interface: only call si->release when both dirs are closed - [MEDIUM] buffers: rework the functions to exchange between SI and buffers - [DOC] fix typo in the avg_queue() and be_conn() definition (backend, not frontend) - [MINOR] halog: add '-tc' to sort by termination codes - [MINOR] halog: skip non-traffic logs for -st and -tc - [BUG] stream_sock: cleanly disable the listener in case of resource shortage - [BUILD] stream_sock: previous fix lacked the #include, causing a warning. - [DOC] bind option is "defer-accept", not "defer_accept" - [DOC] missing index entry for http-check send-state - [DOC] tcp-request inspect-delay is for backends too - [BUG] ebtree: string_equal_bits() could return garbage on identical strings - [BUG] stream_sock: try to flush any extra pending request data after a POST - [BUILD] proto_http: eliminate some build warnings with gcc-2.95 - [MEDIUM] make it possible to combine http-pretend-keepalived with httpclose - [MEDIUM] tcp-request : don't wait for inspect-delay to expire when the buffer is full - [MEDIUM] checks: add support for HTTP contents lookup - [TESTS] add test-check-expect to test various http-check methods - [MINOR] global: add "tune.chksize" to change the default check buffer size - [MINOR] cookie: add options "maxidle" and "maxlife" - [MEDIUM] cookie: support client cookies with some contents appended to their value - [MINOR] http: make some room in the transaction flags to extend cookies - [MINOR] cookie: add the expired (E) and old (O) flags for request cookies - [MEDIUM] cookie: reassign set-cookie status flags to store more states - [MINOR] add encode/decode function for 30-bit integers from/to base64 - [MEDIUM] cookie: check for maxidle and maxlife for incoming dated cookies - [MEDIUM] cookie: set the date in the cookie if needed - [DOC] document the cookie maxidle and maxlife parameters - [BUG] checks: don't log backend down for all zero-weight servers - [MEDIUM] checks: set server state to one state from failure when leaving maintenance - [BUG] config: report correct keywords for "observe" - [MINOR] checks: ensure that we can inherit binary checks from the defaults section - [MINOR] acl: add the http_req_first match - [DOC] fix typos about bind-process syntax - [BUG] cookie: correctly unset default cookie parameters - [MINOR] cookie: add support for the "preserve" option - [BUG] ebtree: fix duplicate strings insertion - [CONTRIB] halog: report per-url counts, errors and times - [CONTRIB] halog: minor speed improvement in timer parser - [MINOR] buffers: add a new request analyser flag for PROXY mode - [MINOR] listener: add the "accept-proxy" option to the "bind" keyword - [MINOR] standard: add read_uint() to parse a delimited unsigned integer - [MINOR] standard: change arg type from const char* to char* - [MINOR] frontend: add a new analyser to parse a proxied connection - [MEDIUM] session: call the frontend_decode_proxy analyser on proxied connections - [DOC] add the proxy protocol's specifications - [DOC] document the 'accept-proxy' bind option - [MINOR] cfgparse: report support of <path> for the 'bind' statements - [DOC] add references to unix socket handling - [MINOR] move MAXPATHLEN definition to compat.h - [MEDIUM] unix sockets: cleanup the error reporting path - [BUG] session: don't stop forwarding of data upon last packet - [CLEANUP] accept: replace some inappropriate Alert() calls with send_log() - [BUILD] peers: shut a printf format warning (key_size is a size_t) - [BUG] accept: don't close twice upon error - [OPTIM] session: don't recheck analysers when buffer flags have not changed - [OPTIM] stream_sock: don't clear FDs that are already cleared - [BUG] proto_tcp: potential bug on pattern fetch dst and dport
1 parent 11f4940 commit 442e834

File tree

5 files changed

+114
-4
lines changed

5 files changed

+114
-4
lines changed

CHANGELOG

+107
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,113 @@
11
ChangeLog :
22
===========
33

4+
2010/11/11 : 1.5-dev3
5+
- [DOC] fix http-request documentation
6+
- [MEDIUM] enable/disable servers from the stats web interface
7+
- [MEDIUM] stats: add an admin level
8+
- [DOC] stats: document the "stats admin" statement
9+
- [MINOR] startup: print the proxy socket which caused an error
10+
- [CLEANUP] Remove unneeded chars allocation
11+
- [MINOR] config: detect options not supported due to compilation options
12+
- [MINOR] Add pattern's fetchs payload and payload_lv
13+
- [MINOR] frontend: improve accept-proxy header parsing
14+
- [MINOR] frontend: add tcpv6 support on accept-proxy bind
15+
- [MEDIUM] Enhance message errors management on binds
16+
- [MINOR] Manage unix socket source field on logs
17+
- [MINOR] Manage unix socket source field on session dump on sock stats
18+
- [MINOR] Support of unix listener sockets for debug and log event messages on frontend.c
19+
- [MINOR] Add some tests on sockets family for port remapping and mode transparent.
20+
- [MINOR] Manage socket type unix for some logs
21+
- [MINOR] Enhance controls of socket's family on acls and pattern fetch
22+
- [MINOR] Support listener's sockets unix on http logs.
23+
- [MEDIUM] Add supports of bind on unix sockets.
24+
- [BUG] stick table purge failure if size less than 255
25+
- [BUG] stick table entries expire on counters updates/read or show table, even if there is no "expire" parameter
26+
- [MEDIUM] Implement tcp inspect response rules
27+
- [DOC] tcp-response content and inspect
28+
- [MINOR] new acls fetch req_ssl_hello_type and rep_ssl_hello_type
29+
- [DOC] acls rep_ssl_hello and req_ssl_hello
30+
- [MEDIUM] Create new protected pattern types CONSTSTRING and CONSTDATA to force memcpy if data from protected areas need to be manipulated.
31+
- [DOC] new type binary in stick-table
32+
- [DOC] stick store-response and new patterns payload and payload_lv
33+
- [MINOR] Manage all types (ip, integer, string, binary) on cli "show table" command
34+
- [MEDIUM] Create updates tree on stick table to manage sync.
35+
- [MAJOR] Add new files src/peer.c, include/proto/peers.h and include/types/peers.h for sync stick table management
36+
- [MEDIUM] Manage peers section parsing and stick table registration on peers.
37+
- [MEDIUM] Manage soft stop on peers proxy
38+
- [DOC] add documentation for peers section
39+
- [MINOR] checks: add support for LDAPv3 health checks
40+
- [MINOR] add better support to "mysql-check"
41+
- [BUG] Restore info about available active/backup servers
42+
- [CONTRIB] Update haproxy.pl
43+
- [CONTRIB] Update Cacti Tempates
44+
- [CONTRIB] add templates for Cacti.
45+
- [BUG] http: don't consider commas as a header delimitor within quotes
46+
- [MINOR] support a global jobs counter
47+
- [DOC] add a summary about cookie incompatibilities between specs and browsers
48+
- [DOC] fix description of cookie "insert" and "indirect" modes
49+
- [MEDIUM] http: fix space handling in the request cookie parser
50+
- [MEDIUM] http: fix space handling in the response cookie parser
51+
- [DOC] fix typo in the queue() definition (backend, not frontend)
52+
- [BUG] deinit: unbind listeners before freeing them
53+
- [BUG] stream_interface: only call si->release when both dirs are closed
54+
- [MEDIUM] buffers: rework the functions to exchange between SI and buffers
55+
- [DOC] fix typo in the avg_queue() and be_conn() definition (backend, not frontend)
56+
- [MINOR] halog: add '-tc' to sort by termination codes
57+
- [MINOR] halog: skip non-traffic logs for -st and -tc
58+
- [BUG] stream_sock: cleanly disable the listener in case of resource shortage
59+
- [BUILD] stream_sock: previous fix lacked the #include, causing a warning.
60+
- [DOC] bind option is "defer-accept", not "defer_accept"
61+
- [DOC] missing index entry for http-check send-state
62+
- [DOC] tcp-request inspect-delay is for backends too
63+
- [BUG] ebtree: string_equal_bits() could return garbage on identical strings
64+
- [BUG] stream_sock: try to flush any extra pending request data after a POST
65+
- [BUILD] proto_http: eliminate some build warnings with gcc-2.95
66+
- [MEDIUM] make it possible to combine http-pretend-keepalived with httpclose
67+
- [MEDIUM] tcp-request : don't wait for inspect-delay to expire when the buffer is full
68+
- [MEDIUM] checks: add support for HTTP contents lookup
69+
- [TESTS] add test-check-expect to test various http-check methods
70+
- [MINOR] global: add "tune.chksize" to change the default check buffer size
71+
- [MINOR] cookie: add options "maxidle" and "maxlife"
72+
- [MEDIUM] cookie: support client cookies with some contents appended to their value
73+
- [MINOR] http: make some room in the transaction flags to extend cookies
74+
- [MINOR] cookie: add the expired (E) and old (O) flags for request cookies
75+
- [MEDIUM] cookie: reassign set-cookie status flags to store more states
76+
- [MINOR] add encode/decode function for 30-bit integers from/to base64
77+
- [MEDIUM] cookie: check for maxidle and maxlife for incoming dated cookies
78+
- [MEDIUM] cookie: set the date in the cookie if needed
79+
- [DOC] document the cookie maxidle and maxlife parameters
80+
- [BUG] checks: don't log backend down for all zero-weight servers
81+
- [MEDIUM] checks: set server state to one state from failure when leaving maintenance
82+
- [BUG] config: report correct keywords for "observe"
83+
- [MINOR] checks: ensure that we can inherit binary checks from the defaults section
84+
- [MINOR] acl: add the http_req_first match
85+
- [DOC] fix typos about bind-process syntax
86+
- [BUG] cookie: correctly unset default cookie parameters
87+
- [MINOR] cookie: add support for the "preserve" option
88+
- [BUG] ebtree: fix duplicate strings insertion
89+
- [CONTRIB] halog: report per-url counts, errors and times
90+
- [CONTRIB] halog: minor speed improvement in timer parser
91+
- [MINOR] buffers: add a new request analyser flag for PROXY mode
92+
- [MINOR] listener: add the "accept-proxy" option to the "bind" keyword
93+
- [MINOR] standard: add read_uint() to parse a delimited unsigned integer
94+
- [MINOR] standard: change arg type from const char* to char*
95+
- [MINOR] frontend: add a new analyser to parse a proxied connection
96+
- [MEDIUM] session: call the frontend_decode_proxy analyser on proxied connections
97+
- [DOC] add the proxy protocol's specifications
98+
- [DOC] document the 'accept-proxy' bind option
99+
- [MINOR] cfgparse: report support of <path> for the 'bind' statements
100+
- [DOC] add references to unix socket handling
101+
- [MINOR] move MAXPATHLEN definition to compat.h
102+
- [MEDIUM] unix sockets: cleanup the error reporting path
103+
- [BUG] session: don't stop forwarding of data upon last packet
104+
- [CLEANUP] accept: replace some inappropriate Alert() calls with send_log()
105+
- [BUILD] peers: shut a printf format warning (key_size is a size_t)
106+
- [BUG] accept: don't close twice upon error
107+
- [OPTIM] session: don't recheck analysers when buffer flags have not changed
108+
- [OPTIM] stream_sock: don't clear FDs that are already cleared
109+
- [BUG] proto_tcp: potential bug on pattern fetch dst and dport
110+
4111
2010/08/28 : 1.5-dev2
5112
- [MINOR] startup: release unused structs after forking
6113
- [MINOR] startup: don't wait for nothing when no old pid remains

VERDATE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2010/08/28
1+
2010/11/11

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5-dev2
1+
1.5-dev3

doc/configuration.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
----------------------
55
version 1.5
66
willy tarreau
7-
2010/08/28
7+
2010/11/11
88

99

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

examples/haproxy.spec

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
22
Name: haproxy
3-
Version: 1.5-dev2
3+
Version: 1.5-dev3
44
Release: 1
55
License: GPL
66
Group: System Environment/Daemons
@@ -76,6 +76,9 @@ fi
7676
%attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}
7777

7878
%changelog
79+
* Thu Nov 11 2010 Willy Tarreau <[email protected]>
80+
- updated to 1.5-dev3
81+
7982
* Sat Aug 28 2010 Willy Tarreau <[email protected]>
8083
- updated to 1.5-dev2
8184

0 commit comments

Comments
 (0)