mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-04-23 23:45:37 +00:00
[RELEASE] released 1.3.1 after resyncing with 1.2.15
Released 1.3.1 with the following changes from 1.2.15 : - now, haproxy warns about missing timeout during startup to try to eliminate all those buggy configurations. - added "Content-Type: text/html" in responses wherever appropriate, as suggested by Cameron Simpson. - implemented "option ssl-hello-chk" to use SSLv3 CLIENT HELLO messages to test server's health - implemented "monitor-uri" so that haproxy can reply to a specific URI with an "HTTP/1.0 200 OK" response. This is useful to validate multiple proxies at once.
This commit is contained in:
parent
6bbf14c154
commit
8f2b855ab2
15
CHANGELOG
15
CHANGELOG
@ -1,9 +1,22 @@
|
|||||||
ChangeLog :
|
ChangeLog :
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
2006/07/09 : 1.3.1 (1.2.15)
|
||||||
|
- now, haproxy warns about missing timeout during startup to try to
|
||||||
|
eliminate all those buggy configurations.
|
||||||
|
- added "Content-Type: text/html" in responses wherever appropriate, as
|
||||||
|
suggested by Cameron Simpson.
|
||||||
|
- implemented "option ssl-hello-chk" to use SSLv3 CLIENT HELLO messages to
|
||||||
|
test server's health
|
||||||
|
- implemented "monitor-uri" so that haproxy can reply to a specific URI with
|
||||||
|
an "HTTP/1.0 200 OK" response. This is useful to validate multiple proxies
|
||||||
|
at once.
|
||||||
|
|
||||||
2006/06/29 : 1.3.0
|
2006/06/29 : 1.3.0
|
||||||
- exploded the whole file into multiple .c and .h. No functionnal
|
- exploded the whole file into multiple .c and .h. No functionnal
|
||||||
behaviour is expected at all.
|
difference is expected at all.
|
||||||
|
- fixed a bug by which neither stats nor error messages could be returned if
|
||||||
|
'clitimeout' was missing.
|
||||||
|
|
||||||
2006/05/21 : 1.2.14
|
2006/05/21 : 1.2.14
|
||||||
- new HTML status report with the 'stats' keyword.
|
- new HTML status report with the 'stats' keyword.
|
||||||
|
2
Makefile
2
Makefile
@ -2,7 +2,7 @@
|
|||||||
# You should use it this way :
|
# You should use it this way :
|
||||||
# make TARGET=os CPU=cpu
|
# make TARGET=os CPU=cpu
|
||||||
|
|
||||||
VERSION := 1.3.0
|
VERSION := 1.3.1
|
||||||
|
|
||||||
# Select target OS. TARGET must match a system for which COPTS and LIBS are
|
# Select target OS. TARGET must match a system for which COPTS and LIBS are
|
||||||
# correctly defined below.
|
# correctly defined below.
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
HAProxy
|
HAProxy
|
||||||
Reference Manual
|
Reference Manual
|
||||||
-------------------
|
-------------------
|
||||||
version 1.2.14
|
version 1.3.1
|
||||||
willy tarreau
|
willy tarreau
|
||||||
2006/05/21
|
2006/07/09
|
||||||
|
|
||||||
============
|
============
|
||||||
| Abstract |
|
| Abstract |
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
HAProxy
|
HAProxy
|
||||||
Manuel de référence
|
Manuel de référence
|
||||||
-------------------
|
-------------------
|
||||||
version 1.2.14
|
version 1.3.1
|
||||||
willy tarreau
|
willy tarreau
|
||||||
2006/05/21
|
2006/07/09
|
||||||
|
|
||||||
================
|
================
|
||||||
| Introduction |
|
| Introduction |
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
|
Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
|
||||||
Name: haproxy
|
Name: haproxy
|
||||||
Version: 1.2.14
|
Version: 1.3.1
|
||||||
Release: 1
|
Release: 1
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: System Environment/Daemons
|
Group: System Environment/Daemons
|
||||||
@ -69,6 +69,9 @@ fi
|
|||||||
%attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}
|
%attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jul 09 2006 Willy Tarreau <w@1wt.eu>
|
||||||
|
- updated to 1.3.1
|
||||||
|
|
||||||
* Wed May 21 2006 Willy Tarreau <willy@w.ods.org>
|
* Wed May 21 2006 Willy Tarreau <willy@w.ods.org>
|
||||||
- updated to 1.2.14
|
- updated to 1.2.14
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
|
Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
|
||||||
Name: haproxy
|
Name: haproxy
|
||||||
Version: 1.2.14
|
Version: 1.3.1
|
||||||
Release: 1
|
Release: 1
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: System Environment/Daemons
|
Group: System Environment/Daemons
|
||||||
@ -71,6 +71,9 @@ fi
|
|||||||
%attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}
|
%attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jul 09 2006 Willy Tarreau <w@1wt.eu>
|
||||||
|
- updated to 1.3.1
|
||||||
|
|
||||||
* Wed May 21 2006 Willy Tarreau <willy@w.ods.org>
|
* Wed May 21 2006 Willy Tarreau <willy@w.ods.org>
|
||||||
- updated to 1.2.14
|
- updated to 1.2.14
|
||||||
|
|
||||||
|
@ -33,13 +33,13 @@
|
|||||||
#ifdef CONFIG_HAPROXY_VERSION
|
#ifdef CONFIG_HAPROXY_VERSION
|
||||||
#define HAPROXY_VERSION CONFIG_HAPROXY_VERSION
|
#define HAPROXY_VERSION CONFIG_HAPROXY_VERSION
|
||||||
#else
|
#else
|
||||||
#define HAPROXY_VERSION "1.3.0"
|
#define HAPROXY_VERSION "1.3.1"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_HAPROXY_DATE
|
#ifdef CONFIG_HAPROXY_DATE
|
||||||
#define HAPROXY_DATE CONFIG_HAPROXY_DATE
|
#define HAPROXY_DATE CONFIG_HAPROXY_DATE
|
||||||
#else
|
#else
|
||||||
#define HAPROXY_DATE "2006/06/26"
|
#define HAPROXY_DATE "2006/07/09"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* _COMMON_VERSION_H */
|
#endif /* _COMMON_VERSION_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user