]> granicus.if.org Git - apache/commitdiff
update after backport of latest http2 changes, version bump
authorStefan Eissing <icing@apache.org>
Sat, 14 May 2016 11:49:58 +0000 (11:49 +0000)
committerStefan Eissing <icing@apache.org>
Sat, 14 May 2016 11:49:58 +0000 (11:49 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1743816 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/http2/h2_version.h

diff --git a/CHANGES b/CHANGES
index 3233c5608b52b74c6b757794572cf5f70e454658..f69bdfb32640c41ec0d5ff529bf6b9c1104882d4 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,10 +1,6 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.5.0
 
-  *) mod_http2: setting conn_rec->aborted on all slave connections still active
-     when main connection shuts down. 
-     [Stefan Eissing as proposed by Michael Kaufmann]
-     
   *) mod_proxy, mod_ssl: Handle SSLProxy* directives in <Proxy> sections,
      allowing per backend TLS configuration.  [Yann Ylavic]
 
@@ -32,10 +28,6 @@ Changes with Apache 2.5.0
   *) mpm_event, mpm_worker: Fix computation of MinSpareThreads' lower bound
      according the number of listeners buckets.  [Yann Ylavic]
 
-  *) mod_proxy_http2: using HTTP/2 flow control for backend streams by 
-     observing data actually send out on the frontend h2 connection. 
-     [Stefan Eissing]
-
   *) mpm: Generalise the ap_mpm_register_socket functions to accept pipes
      or sockets. [Graham Leggett]
 
@@ -46,10 +38,6 @@ Changes with Apache 2.5.0
      to opt-in previous behaviour (2.2) with CRLs verification when checking
      certificate(s) with no corresponding CRL.  [Yann Ylavic]
 
-  *) mod_proxy_http2: rescheduling of requests that have not been processed
-     by the backend when receiving a GOAWAY frame before done.
-     [Stefan Eissing]
-     
   *) core: Split ap_create_request() from ap_read_request(). [Graham Leggett]
 
   *) ab: Use caseless matching for HTTP tokens (e.g. content-length). PR 59111.
@@ -62,19 +50,11 @@ Changes with Apache 2.5.0
      to leave the WRITE_COMPLETION phase. Move filter code out of the MPMs.
      [Graham Leggett]
 
-  *) mod_proxy_http2: using single connection for several requests *if*
-     master connection uses HTTP/2 itself. Not yet hardened under load.
-     [Stefan Eissing]
-
   *) core: Added support for HTTP code 451. PR58985.
      [Yehuda Katz <yehuda ymkatz.net>, Jim Jagielski]
 
   *) mod_ssl: Add support for OpenSSL 1.1.0. [Rainer Jung]
  
-  *) mod_proxy_http2: new experimental http2 proxy module for h2: and h2c: proxy
-     urls. Uses, so far, one connection per request, reuses connections.
-     [Stefan Eissing]
-  
   *) mod_filter: Fix AddOutputFilterByType with non-content-level filters.
      PR58856 [Micha Lenk <micha lenk.info>]
 
index ef38b1c3bf0c5c9a42c28ee471a18b256c735412..10c424627d4f254e142731ee1c99b7eb3feb7822 100644 (file)
@@ -26,7 +26,7 @@
  * @macro
  * Version number of the http2 module as c string
  */
-#define MOD_HTTP2_VERSION "1.5.4-DEV"
+#define MOD_HTTP2_VERSION "1.5.5-DEV"
 
 /**
  * @macro
@@ -34,7 +34,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 0x010504
+#define MOD_HTTP2_VERSION_NUM 0x010505
 
 
 #endif /* mod_h2_h2_version_h */