[RELEASE] released 1.2.14

Released 1.2.14 with the following changes :

   - new HTML status report with the 'stats' keyword.
   - added the 'abortonclose' option to better resist traffic surges
   - implemented dynamic traffic regulation with the 'minconn' option
   - show request time on denied requests
   - definitely fixed hot reconf on OpenBSD by the use of SO_REUSEPORT
   - now a proxy instance is allowed to run without servers, which is
     useful to dedicate one instance to stats
   - added lots of error counters
   - a missing parenthesis preventd matching of cacheable cookies
   - a missing parenthesis in poll_loop() might have caused missed events.
This commit is contained in:
willy tarreau 2006-05-21 23:26:20 +02:00
parent 8f635a4feb
commit 7e6328df2a
7 changed files with 28 additions and 10 deletions

View File

@ -1,6 +1,18 @@
ChangeLog :
===========
2006/05/21 : 1.2.14
- new HTML status report with the 'stats' keyword.
- added the 'abortonclose' option to better resist traffic surges
- implemented dynamic traffic regulation with the 'minconn' option
- show request time on denied requests
- definitely fixed hot reconf on OpenBSD by the use of SO_REUSEPORT
- now a proxy instance is allowed to run without servers, which is
useful to dedicate one instance to stats
- added lots of error counters
- a missing parenthesis preventd matching of cacheable cookies
- a missing parenthesis in poll_loop() might have caused missed events.
2006/05/14 : 1.2.13.1
- an uninitialized field in the struct session could cause a crash when
the session was freed. This has been encountered on Solaris only.

View File

@ -2,7 +2,7 @@
# You should use it this way :
# make TARGET=os CPU=cpu
VERSION := 1.2.13.1
VERSION := 1.2.14
# Select target OS. TARGET must match a system for which COPTS and LIBS are
# correctly defined below.
@ -116,7 +116,7 @@ haproxy: src/list.o src/chtbl.o src/hashpjw.o haproxy.o src/base64.o src/uri_aut
$(CC) $(CFLAGS) -c -o $@ $<
clean:
rm -f *.[oas] *~ *.rej core haproxy test nohup.out gmon.out src/*.[oas]
rm -f {.,src}/*.[oas] {.,src,include,doc}/*{~,.rej} core haproxy test nohup.out gmon.out
rm -f haproxy-$(VERSION).tar.gz haproxy-$(VERSION)
tar: clean

View File

@ -2,9 +2,9 @@
H A - P r o x y
Reference Manual
-------------------
version 1.2.13
version 1.2.14
willy tarreau
2006/05/13
2006/05/21
============
| Abstract |

View File

@ -2,9 +2,9 @@
H A - P r o x y
Manuel de référence
-------------------
version 1.2.13
version 1.2.14
willy tarreau
2006/05/13
2006/05/21
================
| Introduction |

View File

@ -1,6 +1,6 @@
Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
Name: haproxy
Version: 1.2.13
Version: 1.2.14
Release: 1
License: GPL
Group: System Environment/Daemons
@ -69,6 +69,9 @@ fi
%attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}
%changelog
* Wed May 21 2006 Willy Tarreau <willy@w.ods.org>
- updated to 1.2.14
* Wed May 01 2006 Willy Tarreau <willy@w.ods.org>
- updated to 1.2.13

View File

@ -1,6 +1,6 @@
Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
Name: haproxy
Version: 1.2.13
Version: 1.2.14
Release: 1
License: GPL
Group: System Environment/Daemons
@ -71,6 +71,9 @@ fi
%attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}
%changelog
* Wed May 21 2006 Willy Tarreau <willy@w.ods.org>
- updated to 1.2.14
* Wed May 01 2006 Willy Tarreau <willy@w.ods.org>
- updated to 1.2.13

View File

@ -91,11 +91,11 @@
#include "include/mini-clist.h"
#ifndef HAPROXY_VERSION
#define HAPROXY_VERSION "1.2.13.1"
#define HAPROXY_VERSION "1.2.14"
#endif
#ifndef HAPROXY_DATE
#define HAPROXY_DATE "2006/05/14"
#define HAPROXY_DATE "2006/05/21"
#endif
/* this is for libc5 for example */