]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
[RELEASE] Released version 1.3.12.1 with the following main changes : v1.3.12.1
authorWilly Tarreau <w@1wt.eu>
Wed, 5 Sep 2007 04:15:02 +0000 (06:15 +0200)
committerWilly Tarreau <w@1wt.eu>
Wed, 5 Sep 2007 04:15:02 +0000 (06:15 +0200)
    - spec I/O: fix allocations of spec entries for an FD
    - ensure we never overflow in chunk_printf()
    - improve behaviour with large number of servers per proxy
    - add support for "stats refresh <interval>"
    - stats page: added links for 'refresh' and 'hide down'
    - fix backend's weight in the stats page.
    - the "stats" keyword is not allowed in a pure frontend.
    - provide a test configuration file for stats and checks

CHANGELOG
Makefile
Makefile.bsd
Makefile.osx
examples/haproxy-small.spec
examples/haproxy.spec
include/common/version.h

index e09ddaee20a17bfa40419da6a555fc918d79a4fd..fb7738afb7eac8c5cc82b437f1ace079a74bb7ad 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,16 @@
 ChangeLog :
 ===========
 
+2007/09/05 : 1.3.12.1
+    - spec I/O: fix allocations of spec entries for an FD
+    - ensure we never overflow in chunk_printf()
+    - improve behaviour with large number of servers per proxy
+    - add support for "stats refresh <interval>"
+    - stats page: added links for 'refresh' and 'hide down'
+    - fix backend's weight in the stats page.
+    - the "stats" keyword is not allowed in a pure frontend.
+    - provide a test configuration file for stats and checks
+
 2007/06/17 : 1.3.12
     - fix segfault at exit when using captures
     - bug: negation in ACL conds was not cleared between terms
index 39fa4d55dbc28dab70ba926d83f2865a0fb1dd63..491310d54cdf1495887d2d63c09120c1fc1c59f5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -120,9 +120,9 @@ VERDATE := $(shell date +%Y/%m/%d -d "`git-log HEAD^.. 2>/dev/null | grep -m 1 ^
 else
 # Otherwise, use the hard-coded version of last tag, number of changes
 # since last tag, and release date.
-VERSION := 1.3.12
+VERSION := 1.3.12.1
 SUBVERS := 
-VERDATE := 2007/06/17
+VERDATE := 2007/09/05
 endif
 
 #### build options
index 14e70f463753c36cf97795798edd1b33c1898be3..1a47b6041fb4189ddd13a1146c76da5a2e44d326 100644 (file)
@@ -2,7 +2,7 @@
 # You should use it this way :
 #   make TARGET=os CPU=cpu
 
-VERSION := 1.3.12
+VERSION := 1.3.12.1
 
 # Select target OS. TARGET must match a system for which COPTS and LIBS are
 # correctly defined below.
index 0a2aa74363b0cdb1762299277fc6b683d8ba7b1e..668f83884250baac5e0505e8e0aaa6054631f310 100644 (file)
@@ -2,7 +2,7 @@
 # You should use it this way :
 #   make TARGET=os CPU=cpu
 
-VERSION := 1.3.12
+VERSION := 1.3.12.1
 
 # Select target OS. TARGET must match a system for which COPTS and LIBS are
 # correctly defined below.
index 08c859532bd88838d33ee97f80ae9a675ed62ef2..c856d9979f7856034614ca384699b345438ab84b 100644 (file)
@@ -1,6 +1,6 @@
 Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
 Name: haproxy
-Version: 1.3.12
+Version: 1.3.12.1
 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 Sep 05 2007 Willy Tarreau <w@1wt.eu>
+- updated to 1.3.12.1
+
 * Sun Jun 17 2007 Willy Tarreau <w@1wt.eu>
 - updated to 1.3.12
 
index 85c96fc0a6ec78e38ac4de58f66515efc169514a..0c8a8043b8c88a6bd3abc2350d298a587ab33b96 100644 (file)
@@ -1,6 +1,6 @@
 Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
 Name: haproxy
-Version: 1.3.12
+Version: 1.3.12.1
 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 Sep 05 2007 Willy Tarreau <w@1wt.eu>
+- updated to 1.3.12.1
+
 * Sun Jun 17 2007 Willy Tarreau <w@1wt.eu>
 - updated to 1.3.12
 
index 8022244bae412294e6403f19299c2a3c7cd73915..9bea28dfaaae63c23f2a358ad25792097d8faab3 100644 (file)
 #ifdef CONFIG_HAPROXY_VERSION
 #define HAPROXY_VERSION CONFIG_HAPROXY_VERSION
 #else
-#define HAPROXY_VERSION "1.3.12"
+#define HAPROXY_VERSION "1.3.12.1"
 #endif
 
 #ifdef CONFIG_HAPROXY_DATE
 #define HAPROXY_DATE    CONFIG_HAPROXY_DATE
 #else
-#define HAPROXY_DATE    "2007/06/17"
+#define HAPROXY_DATE    "2007/09/05"
 #endif
 
 #endif /* _COMMON_VERSION_H */