From: Stefan Eissing Date: Fri, 4 Dec 2015 15:17:43 +0000 (+0000) Subject: update after backport of mod_http2 v 1.0.10 X-Git-Tag: 2.5.0-alpha~2565 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f8c9fe259418cceac51b4b980ba8fec08b77aadd;p=apache update after backport of mod_http2 v 1.0.10 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1717981 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index fff30f166b..1c081d6af6 100644 --- a/CHANGES +++ b/CHANGES @@ -1,19 +1,10 @@ -*- coding: utf-8 -*- Changes with Apache 2.5.0 - *) mod_http2: connection level window for flow control is set to protocol - maximum of 2GB-1, preventing window exhaustion when sending data on many - streams with higher cumulative window size. - Reducing write frequency unless push promises need to be flushed. - [Stefan Eissing] - *) mod_ssl: for all ssl_engine_vars.c lookups, fall back to master connection if conn_rec itself holds no valid SSLConnRec*. Fixes PR58666. [Stefan Eissing] - *) mod_http2: required minimum version of libnghttp2 is 1.2.1 - [Stefan Eissing] - *) mod_proxy_fdpass: Fix AH01153 error when using the default configuration. In earlier version of httpd, you can explicitelly set the 'flusher' parameter to 'flush' as a workaround. (i.e. flusher=flush) diff --git a/modules/http2/h2_version.h b/modules/http2/h2_version.h index 728e47d560..77331cf468 100644 --- a/modules/http2/h2_version.h +++ b/modules/http2/h2_version.h @@ -20,7 +20,7 @@ * @macro * Version number of the h2 module as c string */ -#define MOD_HTTP2_VERSION "1.0.10-DEV" +#define MOD_HTTP2_VERSION "1.0.11-DEV" /** * @macro @@ -28,7 +28,7 @@ * release. This is a 24 bit number with 8 bits for major number, 8 bits * for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203. */ -#define MOD_HTTP2_VERSION_NUM 0x01000a +#define MOD_HTTP2_VERSION_NUM 0x01000b #endif /* mod_h2_h2_version_h */