mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-02-23 06:06:54 +00:00
[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:
parent
8f635a4feb
commit
7e6328df2a
12
CHANGELOG
12
CHANGELOG
@ -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.
|
||||
|
4
Makefile
4
Makefile
@ -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
|
||||
|
@ -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 |
|
||||
|
@ -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 |
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user