]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
* bumped version to 1.2.8 and updated CHANGELOG accordingly
authorwilly tarreau <willy@wtap.(none)>
Sun, 29 Jan 2006 21:10:07 +0000 (22:10 +0100)
committerwilly tarreau <willy@wtap.(none)>
Sun, 29 Jan 2006 21:10:07 +0000 (22:10 +0100)
CHANGELOG
doc/architecture.txt
doc/haproxy-en.txt
doc/haproxy-fr.txt
haproxy.c

index de10cd0d4ab705fbb5310f0ee716ea8d4af1ec84..7a6db991b529093a13ec5a47b0d9ac0c2924985a 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,18 @@
 ChangeLog :
 ===========
 
+2006/01/29 : 1.2.8
+  - fixed a nasty bug affecting poll/epoll which could return unmodified data
+    from the server to the client, and sometimes lead to memory corruption
+    crashing the process.
+  - added the new pause/play mechanism with SIGTTOU/SIGTTIN for hot-reconf.
+
+2005/12/18 : 1.2.7.1
+  - the "retries" option was ignored because connect() could not return an
+    error if the connection failed before the timeout.
+  - TCP health-checks could not detect a connection refused in poll/epoll
+    mode.
+
 2005/11/13 : 1.2.7
   - building with -DUSE_PCRE should include PCRE headers and not regex.h. At
     least on Solaris, this caused the libc's regex primitives to be used instead
index 2a78f53b64a64b5421f7301c88f92ec3042c084a..361ecf1a7c827a8430c8448ffa88cfb353c52356 100644 (file)
@@ -2,9 +2,9 @@
                              H A - P r o x y
                            Architecture  Guide
                            -------------------
-                             version 1.1.32
+                             version 1.1.34
                               willy tarreau
-                               2005/07/17
+                               2006/01/29
 
 
 This document provides real world examples with working configurations.
index 1df3488f54141cb98da25806c49d3b2ceb91bc29..635af438527e2a0252c473aeafe4e6eb4a8de950 100644 (file)
@@ -2,9 +2,9 @@
                              H A - P r o x y
                             Reference  Manual
                            -------------------
-                              version 1.2.7
+                              version 1.2.8
                               willy tarreau
-                                2005/10/09
+                                2006/01/29
 
 ============
 | Abstract |
index 97997289a19099f3292b7028bc94c94e3c058ec3..1cc6e473516fbb3c45be2cac4b0ca014e1af207f 100644 (file)
@@ -2,9 +2,9 @@
                              H A - P r o x y
                            Manuel de référence
                            -------------------
-                               version 1.2.7
+                              version 1.2.8
                               willy tarreau
-                                2005/10/09
+                                2006/01/29
 
 ================
 | Introduction |
index 27a1cc94229c9c65ac181ba4e2b9565218d9b171..a4f63c8ed8fb66872adeb5a0dee5995cec1a5854 100644 (file)
--- a/haproxy.c
+++ b/haproxy.c
@@ -83,8 +83,8 @@
 
 #include "include/appsession.h"
 
-#define HAPROXY_VERSION "1.2.7.1"
-#define HAPROXY_DATE   "2005/12/04"
+#define HAPROXY_VERSION "1.2.8"
+#define HAPROXY_DATE   "2006/01/29"
 
 /* this is for libc5 for example */
 #ifndef TCP_NODELAY