From a4d856660ed71704ef8a227ec523ce14f5e59d3b Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Mon, 16 Mar 2015 18:20:23 +0100 Subject: [PATCH] v0.2.0 prep --- ChangeLog | 27 +++++++++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e69de29b..ccc2f3a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -0,0 +1,27 @@ + +v0.2.0 +-------------------------------------------------------------------------------- + * merged pull request from Tatsuhiro Tsujikawa, removing code for CONTINUATION + frames that are never seen by mod_h2 + * request/response headers are filtered when converting between HTTP/1.1 and + HTTP/2 where they can only do harm (Expect/Connection/etc.) + * added test cases for uploads + * fixed handling of uploads ;-) + * enabled h2c upgrade for "OPTIONS *" requests + * changed h2_stream_set implementation to use sorted apr array + +v0.1.1 +-------------------------------------------------------------------------------- + * added cgi test cases (needs python installed) + * fixed typo in configure.ac that did not set the CPP flags correctly (#3) + * fixed handling of chunked encoding in responses + * merged header macro pull request from MATSUMOTO, Ryosuke + +v0.1.0 +-------------------------------------------------------------------------------- + * first alpha release, see README on how to use it and what is all missing + * h2 supported with openssl > 1.0.1 and patched mod_ssl (patch included and used in sandbox) + * h2c supported + * only usable in mpm_worker right now + * configure --enable-sandbox for a local install of everything needed + * tested with httpd 2.4.12 and nghttp2 0.7.5 on Ubuntu 14.04 and OS X 10.10 diff --git a/configure.ac b/configure.ac index 01a64057..34304514 100644 --- a/configure.ac +++ b/configure.ac @@ -14,7 +14,7 @@ # AC_PREREQ([2.69]) -AC_INIT([mod_h2], [0.1.1], [stefan.eissing@greenbytes.de]) +AC_INIT([mod_h2], [0.2.0], [stefan.eissing@greenbytes.de]) LT_PREREQ([2.2.6]) LT_INIT()