]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
[RELEASE] Released version 1.3.13 with the following main changes : v1.3.13
authorWilly Tarreau <w@1wt.eu>
Thu, 18 Oct 2007 20:38:22 +0000 (22:38 +0200)
committerWilly Tarreau <w@1wt.eu>
Thu, 18 Oct 2007 20:38:22 +0000 (22:38 +0200)
    - replace the code under O'Reilly license (Arnaud Cornet)
    - add a small man page (Arnaud Cornet)
    - stats: report haproxy's version by default (Krzysztof Oledzki)
    - stats: count server retries and redispatches (Krzysztof Oledzki)
    - core: added easy support for Doug Lea's malloc (dlmalloc)
    - core: fade out memory usage when stopping proxies
    - core: moved the sockaddr pointer to the fdtab structure
    - core: add generic protocol support
    - core: implement client-side support for PF_UNIX sockets
    - stats: implement the CSV output
    - stats: add a link to the CSV export HTML page
    - stats: implement the statistics output on a unix socket
    - config: introduce the "stats" keyword in global section
    - build: centralize version and date into one file for each
    - tests: added a new hash algorithm

CHANGELOG
VERDATE
VERSION
examples/haproxy-small.spec
examples/haproxy.spec

index e09ddaee20a17bfa40419da6a555fc918d79a4fd..c092bd34b138c4b094f36c04cfc1d1d6fcb1416d 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,55 @@
 ChangeLog :
 ===========
 
+2007/10/18 : 1.3.13
+    - replace the code under O'Reilly license (Arnaud Cornet)
+    - add a small man page (Arnaud Cornet)
+    - stats: report haproxy's version by default (Krzysztof Oledzki)
+    - stats: count server retries and redispatches (Krzysztof Oledzki)
+    - core: added easy support for Doug Lea's malloc (dlmalloc)
+    - core: fade out memory usage when stopping proxies
+    - core: moved the sockaddr pointer to the fdtab structure
+    - core: add generic protocol support
+    - core: implement client-side support for PF_UNIX sockets
+    - stats: implement the CSV output
+    - stats: add a link to the CSV export HTML page
+    - stats: implement the statistics output on a unix socket
+    - config: introduce the "stats" keyword in global section
+    - build: centralize version and date into one file for each
+    - tests: added a new hash algorithm
+
+2007/10/18 : 1.3.12.3
+    - add the "nolinger" option to disable data lingering (Alexandre Cassen)
+    - fix double-free during clean exit (Krzysztof Oledzki)
+    - prevent the system from sending an RST when closing health-checks
+      (Krzysztof Oledzki)
+    - do not add a cache-control header when on non-cacheable responses
+      (Krzysztof Oledzki)
+    - spread health checks even more (Krzysztof Oledzki)
+    - stats: scope "." must match the backend and not the frontend
+    - fixed call to chroot() during startup
+    - fix wrong timeout computation in event_accept()
+    - remove condition for exit() under fork() failure
+
+2007/09/20 : 1.3.12.2
+    - fix configuration sanity checks for TCP listeners
+    - set the log socket receive window to zero bytes
+    - pre-initialize timeouts to infinity, not zero
+    - fix the SIGHUP message not to alert on server-less proxies
+    - timeouts and retries could be ignored when switching backend
+    - added a file to check that "retries" works.
+    - O'Reilly has clarified its license
+
+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
diff --git a/VERDATE b/VERDATE
index 70d00fb0c1d688a9ec5132b11e0897e448a9d6c8..58cadc6c83a2845c55e9081d79a622567407b12d 100644 (file)
--- a/VERDATE
+++ b/VERDATE
@@ -1 +1 @@
-2007/06/17
+2007/10/18
diff --git a/VERSION b/VERSION
index 90a7f6029b9654452bdb87f607e083bbe8eddbaf..7962dcfdb6bc31611dc5945c61fbe57ca443c502 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.3.12
+1.3.13
index 08c859532bd88838d33ee97f80ae9a675ed62ef2..f3b1ad3cb28fe0ac2dfc1e1c0da388c37b1d508f 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.13
 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
+* Thu Oct 18 2007 Willy Tarreau <w@1wt.eu>
+- updated to 1.3.13
+
 * Sun Jun 17 2007 Willy Tarreau <w@1wt.eu>
 - updated to 1.3.12
 
index 85c96fc0a6ec78e38ac4de58f66515efc169514a..f45abe59b18a552d8dc5ee785d5a68c6e4ec673b 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.13
 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
+* Thu Oct 18 2007 Willy Tarreau <w@1wt.eu>
+- updated to 1.3.13
+
 * Sun Jun 17 2007 Willy Tarreau <w@1wt.eu>
 - updated to 1.3.12