You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2016/11/14 11:15:39 UTC

svn commit: r1769596 - in /httpd/httpd/trunk: CHANGES modules/http2/h2_version.h

Author: icing
Date: Mon Nov 14 11:15:39 2016
New Revision: 1769596

URL: http://svn.apache.org/viewvc?rev=1769596&view=rev
Log:
update after mod_http2 backport

Modified:
    httpd/httpd/trunk/CHANGES
    httpd/httpd/trunk/modules/http2/h2_version.h

Modified: httpd/httpd/trunk/CHANGES
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/CHANGES?rev=1769596&r1=1769595&r2=1769596&view=diff
==============================================================================
--- httpd/httpd/trunk/CHANGES [utf-8] (original)
+++ httpd/httpd/trunk/CHANGES [utf-8] Mon Nov 14 11:15:39 2016
@@ -1,27 +1,6 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.5.0
 
-  *) mod_http2: new directive 'H2PushResource' to enable early pushes before 
-     processing of the main request starts. Resources are announced to the 
-     client in Link headers on a 103 early hint response. 
-     All responses with status code <400 are inspected for Link header and
-     trigger pushes accordingly. 304 still does prevent pushes.
-     'H2PushResource' can mark resources as 'critical' which gives them higher
-     priority than the main resource. This leads to preferred scheduling for
-     processing and, when content is available, will send it first. 'critical'
-     is also recognized on Link headers. [Stefan Eissing]
-     
-  *) mod_proxy_http2: uris in Link headers are now mapped back to a suitable
-     local url when available. Relative uris with an absolute path are mapped
-     as well. This makes reverse proxy mapping available for resources
-     announced in this header. 
-     With 103 interim responses being forwarded to the main client connection,
-     this effectively allows early pushing of resources by a reverse proxied
-     backend server. [Stefan Eissing]
-     
-  *) mod_proxy_http2: adding support for newly proposed 103 status code.
-     [Stefan Eissing]
-     
   *) mpm_unix: Apache fails to start if previously crashed then restarted with
      the same PID (e.g. in container).  PR 60261.
      [Val <valentin.bremond gmail.com>, Yann Ylavic]

Modified: httpd/httpd/trunk/modules/http2/h2_version.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_version.h?rev=1769596&r1=1769595&r2=1769596&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http2/h2_version.h (original)
+++ httpd/httpd/trunk/modules/http2/h2_version.h Mon Nov 14 11:15:39 2016
@@ -26,7 +26,7 @@
  * @macro
  * Version number of the http2 module as c string
  */
-#define MOD_HTTP2_VERSION "1.8.0-DEV"
+#define MOD_HTTP2_VERSION "1.8.1-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 0x010800
+#define MOD_HTTP2_VERSION_NUM 0x010801
 
 
 #endif /* mod_h2_h2_version_h */