]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
* updated CHANGELOG and haproxy.c to display version 1.2.11 v1.2.11
authorwilly tarreau <willy@wtap.(none)>
Sat, 25 Mar 2006 19:35:41 +0000 (20:35 +0100)
committerwilly tarreau <willy@wtap.(none)>
Sat, 25 Mar 2006 19:35:41 +0000 (20:35 +0100)
CHANGELOG
haproxy.c

index 5e5e91e042e2e788b1108d96aceb7589a1515525..e1429e9747088b474670c1af0df926405bad1538 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,21 @@
 ChangeLog :
 ===========
 
+2006/03/25 : 1.2.11
+   - added the '-db' command-line option to disable backgrounding.
+   - added the -sf/-st command-line arguments which are used to specify
+     a list of pids to send a FINISH or TERMINATE signal upon startup.
+     They will also be asked to release their port if a bind fails.
+   - reworked the startup mechanism to allow the sending of a signal to a list
+     of old pids if a socket cannot be bound, with a retry for a limited amount
+     of time (1 second by default).
+   - added the ability to enforce limits on memory usage.
+   - added the 'source' load-balancing algorithm which uses the source IP(v4|v6)
+   - re-architectured the server round-robin mechanism to ease integration of
+     other algorithms. It now relies on the number of active and backup servers.
+   - added a counter for the number of active and backup servers, and report
+     these numbers upon SIGHUP or state change.
+
 2006/03/23 : 1.2.10.1
   - while fixing the backup server round-robin "feature", a new bug was
     introduced which could miss some backup servers.
index daf6bbeaa95f5d66b9368f01c8bd6e02b99b00e9..aba14617138bd522d26b5a188987720c2d840829 100644 (file)
--- a/haproxy.c
+++ b/haproxy.c
 #include "include/appsession.h"
 
 #ifndef HAPROXY_VERSION
-#define HAPROXY_VERSION "1.2.10.1"
+#define HAPROXY_VERSION "1.2.11"
 #endif
 
 #ifndef HAPROXY_DATE
-#define HAPROXY_DATE   "2006/03/23"
+#define HAPROXY_DATE   "2006/03/25"
 #endif
 
 /* this is for libc5 for example */