[RELEASE] Released version 1.4-dev6
Released version 1.4-dev6 with the following main changes : - [BUILD] warning in stream_interface.h - [BUILD] warning ultoa_r returns char * - [MINOR] hana: only report stats if it is enabled - [MINOR] stats: add "a link" & "a href" for sockets - [MINOR]: stats: add show-legends to report additional informations - [MEDIUM] default-server support - [BUG]: add 'observer', 'on-error', 'error-limit' to supported options list - [MINOR] stats: add href to tracked server - [BUG] stats: show UP/DOWN status also in tracking servers - [DOC] Restore ability to search a keyword at the beginning of a line - [BUG] stats: cookie should be reported under backend not under proxy - [BUG] cfgparser/stats: fix error message - [BUG] http: disable auto-closing during chunk analysis - [BUG] http: fix hopefully last closing issue on data forwarding - [DEBUG] add an http_silent_debug function to debug HTTP states - [MAJOR] http: fix again the forward analysers - [BUG] http_process_res_common() must not skip the forward analyser - [BUG] http: some possible missed close remain in the forward chain - [BUG] http: redirect needed to be updated after recent changes - [BUG] http: don't set no-linger on response in case of forced close - [MEDIUM] http: restore the original behaviour of option httpclose - [TESTS] add a file to test various connection modes - [BUG] http: check options before the connection header - [MAJOR] session: fix the order by which the analysers are run - [MEDIUM] session: also consider request analysers added during response - [MEDIUM] http: make safer use of the DONT_READ and AUTO_CLOSE flags - [BUG] http: memory leak with captures when using keep-alive - [BUG] http: fix for capture memory leak was incorrect - [MINOR] http redirect: use proper call to return last response - [MEDIUM] http: wait for some flush of the response buffer before a new request - [MEDIUM] session: limit the number of analyser loops
This commit is contained in:
parent
e34070e1be
commit
11f8f5458f
33
CHANGELOG
33
CHANGELOG
|
@ -1,6 +1,39 @@
|
|||
ChangeLog :
|
||||
===========
|
||||
|
||||
2010/01/08 : 1.4-dev6
|
||||
- [BUILD] warning in stream_interface.h
|
||||
- [BUILD] warning ultoa_r returns char *
|
||||
- [MINOR] hana: only report stats if it is enabled
|
||||
- [MINOR] stats: add "a link" & "a href" for sockets
|
||||
- [MINOR]: stats: add show-legends to report additional informations
|
||||
- [MEDIUM] default-server support
|
||||
- [BUG]: add 'observer', 'on-error', 'error-limit' to supported options list
|
||||
- [MINOR] stats: add href to tracked server
|
||||
- [BUG] stats: show UP/DOWN status also in tracking servers
|
||||
- [DOC] Restore ability to search a keyword at the beginning of a line
|
||||
- [BUG] stats: cookie should be reported under backend not under proxy
|
||||
- [BUG] cfgparser/stats: fix error message
|
||||
- [BUG] http: disable auto-closing during chunk analysis
|
||||
- [BUG] http: fix hopefully last closing issue on data forwarding
|
||||
- [DEBUG] add an http_silent_debug function to debug HTTP states
|
||||
- [MAJOR] http: fix again the forward analysers
|
||||
- [BUG] http_process_res_common() must not skip the forward analyser
|
||||
- [BUG] http: some possible missed close remain in the forward chain
|
||||
- [BUG] http: redirect needed to be updated after recent changes
|
||||
- [BUG] http: don't set no-linger on response in case of forced close
|
||||
- [MEDIUM] http: restore the original behaviour of option httpclose
|
||||
- [TESTS] add a file to test various connection modes
|
||||
- [BUG] http: check options before the connection header
|
||||
- [MAJOR] session: fix the order by which the analysers are run
|
||||
- [MEDIUM] session: also consider request analysers added during response
|
||||
- [MEDIUM] http: make safer use of the DONT_READ and AUTO_CLOSE flags
|
||||
- [BUG] http: memory leak with captures when using keep-alive
|
||||
- [BUG] http: fix for capture memory leak was incorrect
|
||||
- [MINOR] http redirect: use proper call to return last response
|
||||
- [MEDIUM] http: wait for some flush of the response buffer before a new request
|
||||
- [MEDIUM] session: limit the number of analyser loops
|
||||
|
||||
2010/01/03 : 1.4-dev5
|
||||
- [MINOR] server tracking: don't care about the tracked server's mode
|
||||
- [MEDIUM] appsession: add "len", "prefix" and "mode" options
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
----------------------
|
||||
version 1.4
|
||||
willy tarreau
|
||||
2010/01/03
|
||||
2010/01/08
|
||||
|
||||
|
||||
This document covers the configuration language as implemented in the version
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
|
||||
Name: haproxy
|
||||
Version: 1.4-dev5
|
||||
Version: 1.4-dev6
|
||||
Release: 1
|
||||
License: GPL
|
||||
Group: System Environment/Daemons
|
||||
|
@ -76,6 +76,9 @@ fi
|
|||
%attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}
|
||||
|
||||
%changelog
|
||||
* Fri Jan 8 2010 Willy Tarreau <w@1wt.eu>
|
||||
- updated to 1.4-dev6
|
||||
|
||||
* Sun Jan 3 2010 Willy Tarreau <w@1wt.eu>
|
||||
- updated to 1.4-dev5
|
||||
|
||||
|
|
Loading…
Reference in New Issue