mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-01-11 08:19:29 +00:00
[VERSION] updated everything to reflect version 1.2.12.
This commit is contained in:
parent
9974d73d98
commit
c0d4bbdc8d
@ -1,6 +1,14 @@
|
|||||||
ChangeLog :
|
ChangeLog :
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
2006/04/15 : 1.2.12
|
||||||
|
Very few changes preparing for more important changes to support per-server
|
||||||
|
session limitations and queueing :
|
||||||
|
- ignore leading empty lines in HTTP requests as suggested by RFC2616.
|
||||||
|
- added the 'weight' parameter to the servers, limited to 1..256. It applies
|
||||||
|
to roundrobin and source hash.
|
||||||
|
- the optional '-s' option could clobber '-st' and '-sf' if compiled in.
|
||||||
|
|
||||||
2006/03/30 : 1.2.11.1
|
2006/03/30 : 1.2.11.1
|
||||||
- under some conditions, it might have been possible that when the
|
- under some conditions, it might have been possible that when the
|
||||||
last dead server became available, it would not have been used
|
last dead server became available, it would not have been used
|
||||||
|
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.2.11.1
|
VERSION := 1.2.12
|
||||||
|
|
||||||
# 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.2.11.1
|
Version: 1.2.12
|
||||||
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 Apr 15 2006 Willy Tarreau <willy@w.ods.org>
|
||||||
|
- updated to 1.2.12
|
||||||
|
|
||||||
* Wed Mar 30 2006 Willy Tarreau <willy@w.ods.org>
|
* Wed Mar 30 2006 Willy Tarreau <willy@w.ods.org>
|
||||||
- updated to 1.2.11.1
|
- updated to 1.2.11.1
|
||||||
|
|
||||||
|
@ -88,11 +88,11 @@
|
|||||||
#include "include/appsession.h"
|
#include "include/appsession.h"
|
||||||
|
|
||||||
#ifndef HAPROXY_VERSION
|
#ifndef HAPROXY_VERSION
|
||||||
#define HAPROXY_VERSION "1.2.11.1"
|
#define HAPROXY_VERSION "1.2.12"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef HAPROXY_DATE
|
#ifndef HAPROXY_DATE
|
||||||
#define HAPROXY_DATE "2006/03/30"
|
#define HAPROXY_DATE "2006/04/15"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* this is for libc5 for example */
|
/* this is for libc5 for example */
|
||||||
|
Loading…
Reference in New Issue
Block a user