[RELEASE] Released 1.3.6 with the following changes :
- stats now support the HEAD method too - extracted http request from the session - huge rework of the HTTP parser which is now a 28-state FSM. - linux-style likely/unlikely macros for optimization hints - do not create a server socket when there's no server
This commit is contained in:
parent
8973c70f7d
commit
49e1ee83be
@ -1,6 +1,14 @@
|
|||||||
ChangeLog :
|
ChangeLog :
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
2007/01/22 : 1.3.6
|
||||||
|
- stats now support the HEAD method too
|
||||||
|
- extracted http request from the session
|
||||||
|
- huge rework of the HTTP parser which is now a 28-state FSM.
|
||||||
|
- linux-style likely/unlikely macros for optimization hints
|
||||||
|
- do not create a server socket when there's no server
|
||||||
|
- imported lots of docs
|
||||||
|
|
||||||
2007/01/07 : 1.3.5
|
2007/01/07 : 1.3.5
|
||||||
- stats: swap color sets for active and backup servers
|
- stats: swap color sets for active and backup servers
|
||||||
- try to guess server check port when unset
|
- try to guess server check port when unset
|
||||||
|
4
Makefile
4
Makefile
@ -110,9 +110,9 @@ VERDATE := $(shell date +%Y/%m/%d -d "$$(git-log HEAD^.. 2>/dev/null | grep -m 1
|
|||||||
else
|
else
|
||||||
# Otherwise, use the hard-coded version of last tag, number of changes
|
# Otherwise, use the hard-coded version of last tag, number of changes
|
||||||
# since last tag, and release date.
|
# since last tag, and release date.
|
||||||
VERSION := 1.3.5
|
VERSION := 1.3.6
|
||||||
SUBVERS :=
|
SUBVERS :=
|
||||||
VERDATE := 2007/01/07
|
VERDATE := 2007/01/22
|
||||||
endif
|
endif
|
||||||
|
|
||||||
#### build options
|
#### build options
|
||||||
|
@ -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.5
|
VERSION := 1.3.6
|
||||||
|
|
||||||
# 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.
|
||||||
|
@ -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.3.4
|
Version: 1.3.6
|
||||||
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 Jan 22 2007 Willy Tarreau <w@1wt.eu>
|
||||||
|
- updated to 1.3.6
|
||||||
|
|
||||||
* Wed Jan 07 2007 Willy Tarreau <w@1wt.eu>
|
* Wed Jan 07 2007 Willy Tarreau <w@1wt.eu>
|
||||||
- updated to 1.3.5
|
- updated to 1.3.5
|
||||||
|
|
||||||
|
@ -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.3.5
|
Version: 1.3.6
|
||||||
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 Jan 22 2007 Willy Tarreau <w@1wt.eu>
|
||||||
|
- updated to 1.3.6
|
||||||
|
|
||||||
* Wed Jan 07 2007 Willy Tarreau <w@1wt.eu>
|
* Wed Jan 07 2007 Willy Tarreau <w@1wt.eu>
|
||||||
- updated to 1.3.5
|
- updated to 1.3.5
|
||||||
|
|
||||||
|
@ -57,13 +57,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.5"
|
#define HAPROXY_VERSION "1.3.6"
|
||||||
#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 "2007/01/07"
|
#define HAPROXY_DATE "2007/01/22"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* _COMMON_VERSION_H */
|
#endif /* _COMMON_VERSION_H */
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* HA-Proxy : High Availability-enabled HTTP/TCP proxy
|
* HA-Proxy : High Availability-enabled HTTP/TCP proxy
|
||||||
* Copyright 2000-2006 Willy Tarreau <w@1wt.eu>.
|
* Copyright 2000-2007 Willy Tarreau <w@1wt.eu>.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
@ -145,7 +145,7 @@ static char hostname[MAX_HOSTNAME_LEN] = "";
|
|||||||
void display_version()
|
void display_version()
|
||||||
{
|
{
|
||||||
printf("HA-Proxy version " HAPROXY_VERSION " " HAPROXY_DATE"\n");
|
printf("HA-Proxy version " HAPROXY_VERSION " " HAPROXY_DATE"\n");
|
||||||
printf("Copyright 2000-2006 Willy Tarreau <w@1wt.eu>\n\n");
|
printf("Copyright 2000-2007 Willy Tarreau <w@1wt.eu>\n\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user