summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilly Tarreau <w@1wt.eu>2018-09-29 20:17:33 +0200
committerWilly Tarreau <w@1wt.eu>2018-09-29 20:17:33 +0200
commit27010f098d44f99b5c4f02ba5052d5615e4e7fc4 (patch)
treef6fa657f096d7ae85c3e3669948a423f37fc49f2
parent8878f8eb3df7e3f8dcd703a54c73dd26cf834cca (diff)
downloadhaproxy-1.9-dev3.tar.gz
[RELEASE] Released version 1.9-dev3v1.9-dev3
Released version 1.9-dev3 with the following main changes : - BUG/MINOR: h1: don't consider the status for each header - MINOR: h1: report in the h1m struct if the HTTP version is 1.1 or above - MINOR: h1: parse the Connection header field - DOC: Fix typos in lua documentation - MINOR: h1: Add H1_MF_XFER_LEN flag - MINOR: http: add http_hdr_del() to remove a header from a list - MINOR: h1: add headers to the list after controls, not before - MEDIUM: h1: better handle transfer-encoding vs content-length - MEDIUM: h1: deduplicate the content-length header - BUG/MEDIUM: patterns: fix possible double free when reloading a pattern list - BUG/MEDIUM: h1: Really skip all updates when incomplete messages are parsed - CLEANUP/CONTRIB: hpack: remove some h1 build warnings - BUG/MINOR: tools: fix set_net_port() / set_host_port() on IPv4 - BUG/MINOR: cli: make sure the "getsock" command is only called on connections - MINOR: stktable: provide an unchecked version of stktable_data_ptr() - MINOR: stream-int: make si_appctx() never fail - BUILD: ssl_sock: remove build warnings on potential null-derefs - BUILD: stats: remove build warnings on potential null-derefs - BUILD: stream: address null-deref build warnings at -Wextra - BUILD: http: address a couple of null-deref warnings at -Wextra - BUILD: log: silent build warnings due to unchecked __objt_{server,applet} - BUILD: dns: fix null-deref build warning at -Wextra - BUILD: checks: silence a null-deref build warning at -Wextra - BUILD: connection: silence a couple of null-deref build warnings at -Wextra - BUILD: backend: fix 3 build warnings related to null-deref at -Wextra - BUILD: sockpair: silence a build warning at -Wextra - BUILD: build with -Wextra and sort out certain warnings - BUG/CRITICAL: hpack: fix improper sign check on the header index value - BUG/MEDIUM: http: Don't parse chunked body if there is no input data - DOC: Update configuration doc about the maximum number of stick counters. - BUG/MEDIUM: process_stream: Don't use si_cs_io_cb() in process_stream(). - MINOR: h2/stream_interface: Reintroduce te wake() method. - BUG/MEDIUM: h2: Wake the task instead of calling h2_recv()/h2_process(). - BUG/MEDIUM: process_stream(): Don't wake the task if no new data was received. - MEDIUM: lua: Add stick table support for Lua.
-rw-r--r--CHANGELOG37
-rw-r--r--README2
-rw-r--r--VERDATE2
-rw-r--r--VERSION2
-rw-r--r--doc/configuration.txt2
-rw-r--r--examples/haproxy.spec5
6 files changed, 45 insertions, 5 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 71cad252e..8db8d32a4 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,43 @@
ChangeLog :
===========
+2018/09/29 : 1.9-dev3
+ - BUG/MINOR: h1: don't consider the status for each header
+ - MINOR: h1: report in the h1m struct if the HTTP version is 1.1 or above
+ - MINOR: h1: parse the Connection header field
+ - DOC: Fix typos in lua documentation
+ - MINOR: h1: Add H1_MF_XFER_LEN flag
+ - MINOR: http: add http_hdr_del() to remove a header from a list
+ - MINOR: h1: add headers to the list after controls, not before
+ - MEDIUM: h1: better handle transfer-encoding vs content-length
+ - MEDIUM: h1: deduplicate the content-length header
+ - BUG/MEDIUM: patterns: fix possible double free when reloading a pattern list
+ - BUG/MEDIUM: h1: Really skip all updates when incomplete messages are parsed
+ - CLEANUP/CONTRIB: hpack: remove some h1 build warnings
+ - BUG/MINOR: tools: fix set_net_port() / set_host_port() on IPv4
+ - BUG/MINOR: cli: make sure the "getsock" command is only called on connections
+ - MINOR: stktable: provide an unchecked version of stktable_data_ptr()
+ - MINOR: stream-int: make si_appctx() never fail
+ - BUILD: ssl_sock: remove build warnings on potential null-derefs
+ - BUILD: stats: remove build warnings on potential null-derefs
+ - BUILD: stream: address null-deref build warnings at -Wextra
+ - BUILD: http: address a couple of null-deref warnings at -Wextra
+ - BUILD: log: silent build warnings due to unchecked __objt_{server,applet}
+ - BUILD: dns: fix null-deref build warning at -Wextra
+ - BUILD: checks: silence a null-deref build warning at -Wextra
+ - BUILD: connection: silence a couple of null-deref build warnings at -Wextra
+ - BUILD: backend: fix 3 build warnings related to null-deref at -Wextra
+ - BUILD: sockpair: silence a build warning at -Wextra
+ - BUILD: build with -Wextra and sort out certain warnings
+ - BUG/CRITICAL: hpack: fix improper sign check on the header index value
+ - BUG/MEDIUM: http: Don't parse chunked body if there is no input data
+ - DOC: Update configuration doc about the maximum number of stick counters.
+ - BUG/MEDIUM: process_stream: Don't use si_cs_io_cb() in process_stream().
+ - MINOR: h2/stream_interface: Reintroduce te wake() method.
+ - BUG/MEDIUM: h2: Wake the task instead of calling h2_recv()/h2_process().
+ - BUG/MEDIUM: process_stream(): Don't wake the task if no new data was received.
+ - MEDIUM: lua: Add stick table support for Lua.
+
2018/09/12 : 1.9-dev2
- BUG/MINOR: buffers: Fix b_slow_realign when a buffer is realign without output
- BUG/MEDIUM: threads: fix the no-thread case after the change to the sync point
diff --git a/README b/README
index 52a52f266..94044ddc1 100644
--- a/README
+++ b/README
@@ -3,7 +3,7 @@
----------------------
version 1.9
willy tarreau
- 2018/09/12
+ 2018/09/29
1) How to build it
diff --git a/VERDATE b/VERDATE
index 297cdda3a..9e60cd083 100644
--- a/VERDATE
+++ b/VERDATE
@@ -1,2 +1,2 @@
$Format:%ci$
-2018/09/12
+2018/09/29
diff --git a/VERSION b/VERSION
index 04ec1a7ce..69261aaaf 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.9-dev2
+1.9-dev3
diff --git a/doc/configuration.txt b/doc/configuration.txt
index 7bf6889e8..336ef1fd3 100644
--- a/doc/configuration.txt
+++ b/doc/configuration.txt
@@ -4,7 +4,7 @@
----------------------
version 1.9
willy tarreau
- 2018/09/12
+ 2018/09/29
This document covers the configuration language as implemented in the version
diff --git a/examples/haproxy.spec b/examples/haproxy.spec
index 548add5a1..cff084525 100644
--- a/examples/haproxy.spec
+++ b/examples/haproxy.spec
@@ -1,6 +1,6 @@
Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
Name: haproxy
-Version: 1.9-dev2
+Version: 1.9-dev3
Release: 1
License: GPL
Group: System Environment/Daemons
@@ -74,6 +74,9 @@ fi
%attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}
%changelog
+* Sat Sep 29 2018 Willy Tarreau <w@1wt.eu>
+- updated to 1.9-dev3
+
* Wed Sep 12 2018 Willy Tarreau <w@1wt.eu>
- updated to 1.9-dev2