]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
[RELEASE] Released version 1.3.8.2 with the following changes : v1.3.8.2
authorWilly Tarreau <w@1wt.eu>
Tue, 3 Apr 2007 18:30:13 +0000 (20:30 +0200)
committerWilly Tarreau <w@1wt.eu>
Tue, 3 Apr 2007 18:30:13 +0000 (20:30 +0200)
    - rewriting either the status line or request line could crash the
      process due to a pointer which ought to be reset before parsing.
    - rewriting the status line in the response did not work, it caused
      a 502 Bad Gateway due to an erroneous state during parsing

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

index 73c27acaa9cf7fa7384460af4396fb5ff9c08b41..3329e5287309b632651937c16b0d7e2dcb3ba343 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,12 @@
 ChangeLog :
 ===========
 
+2007/04/03 : 1.3.8.2
+    - rewriting either the status line or request line could crash the
+      process due to a pointer which ought to be reset before parsing.
+    - rewriting the status line in the response did not work, it caused
+      a 502 Bad Gateway due to an erroneous state during parsing
+
 2007/04/01 : 1.3.8.1
     - fix reqadd when no option httpclose is used.
     - removed now unused fiprm and beprm from proxies
index 69ef83f097dc622bc81a5ef94d96bdaa166ebd00..faa37c05933e4dfc60ebecaacbcb3105312a0880 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -109,9 +109,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.8.1
+VERSION := 1.3.8.2
 SUBVERS := 
-VERDATE := 2007/04/01
+VERDATE := 2007/04/03
 endif
 
 #### build options
index 2009bde8675ae1c19c1a2710861045a52e6e60c7..67f51d9cabeb09fe6f6a8d8008866ce997ee634c 100644 (file)
@@ -2,7 +2,7 @@
 # You should use it this way :
 #   make TARGET=os CPU=cpu
 
-VERSION := 1.3.8.1
+VERSION := 1.3.8.2
 
 # Select target OS. TARGET must match a system for which COPTS and LIBS are
 # correctly defined below.
index 1588f4b1b81b38c3583cec7c03a9c85117c91b38..a4fda97adbe36d62b9e2d7c9f6893104f414c671 100644 (file)
@@ -2,7 +2,7 @@
 # You should use it this way :
 #   make TARGET=os CPU=cpu
 
-VERSION := 1.3.8.1
+VERSION := 1.3.8.2
 
 # Select target OS. TARGET must match a system for which COPTS and LIBS are
 # correctly defined below.
index 202ac8e3897f6ddf60b5e2375f8cf9228dbc5379..f0c872cb5dfd2cca77c175ebfc2f4e0a76408aea 100644 (file)
@@ -1,6 +1,6 @@
 Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
 Name: haproxy
-Version: 1.3.8.1
+Version: 1.3.8.2
 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
+* Tue Apr 03 2007 Willy Tarreau <w@1wt.eu>
+- updated to 1.3.8.2
+
 * Sun Apr 01 2007 Willy Tarreau <w@1wt.eu>
 - updated to 1.3.8.1
 
index 965eaec1ad9bab1f0d35756c64d22ec213107964..c94085ae4128ca2f8cc151d3a4a9ceab6c3a59fb 100644 (file)
@@ -1,6 +1,6 @@
 Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
 Name: haproxy
-Version: 1.3.8.1
+Version: 1.3.8.2
 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
+* Tue Apr 03 2007 Willy Tarreau <w@1wt.eu>
+- updated to 1.3.8.2
+
 * Sun Apr 01 2007 Willy Tarreau <w@1wt.eu>
 - updated to 1.3.8.1
 
index b20adfbb6baeb269c1321d2dce57460c2361515a..21e198b9ccf1325a16fa4ee85cd8bcbc8cfeea28 100644 (file)
 #ifdef CONFIG_HAPROXY_VERSION
 #define HAPROXY_VERSION CONFIG_HAPROXY_VERSION
 #else
-#define HAPROXY_VERSION "1.3.8.1"
+#define HAPROXY_VERSION "1.3.8.2"
 #endif
 
 #ifdef CONFIG_HAPROXY_DATE
 #define HAPROXY_DATE    CONFIG_HAPROXY_DATE
 #else
-#define HAPROXY_DATE    "2007/04/01"
+#define HAPROXY_DATE    "2007/04/03"
 #endif
 
 #endif /* _COMMON_VERSION_H */