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 2017/03/31 19:43:02 UTC

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

Author: icing
Date: Fri Mar 31 19:43:02 2017
New Revision: 1789740

URL: http://svn.apache.org/viewvc?rev=1789740&view=rev
Log:
On the trunk:

update after backport to 2.4.x


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=1789740&r1=1789739&r2=1789740&view=diff
==============================================================================
--- httpd/httpd/trunk/CHANGES [utf-8] (original)
+++ httpd/httpd/trunk/CHANGES [utf-8] Fri Mar 31 19:43:02 2017
@@ -1,34 +1,15 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.5.0
 
-  *) mod_http2: better performance, eliminated need for nested locks and
-     thread privates. Moving request setups from the main connection to the
-     worker threads. Increase number of spare connections kept.
-     [Stefan Eissing]
-     
   *) core: Disallow multiple Listen on the same IP:port when listener buckets
      are configured (ListenCoresBucketsRatio > 0), consistently with the single
      bucket case (default), thus avoiding the leak of the corresponding socket
      descriptors on graceful restart.  [Yann Ylavic]
 
-  *) mod_http2: input buffering and dynamic flow windows for increased 
-     throughput. Requires nghttp2 >= v1.5.0 features. Announced at startup
-     in mod_http2 INFO log as feature 'DWINS'. [Stefan Eissing]
-
-  *) mod_http2: h2 workers with improved scalability for better scheduling
-     performance. There are H2MaxWorkers threads created at start and the
-     number is kept constant. [Stefan Eissing]
-     
-  *) mod_http2: obsoleted option H2SessionExtraFiles, will be ignored and
-     just log a warning. [Stefan Eissing]
-     
   *) mod_autoindex: Add IndexOptions UseOldDateFormat to allow the date
      format from 2.2 in the Last Modified column. PR60846.
      [Hank Ibell <hwibell gmail.com>]
 
-  *) mod_http2: fixed PR60869 by making h2 workers exit explicitly waking up
-     all threads to exit in a defined way. [Stefan Eissing]
-     
   *) Add <IfDirective> and <IfSection> directives.  [Joe Orton]
 
   *) mod_syslog: Support use of optional "tag" in syslog entries.

Modified: httpd/httpd/trunk/modules/http2/h2_version.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_version.h?rev=1789740&r1=1789739&r2=1789740&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http2/h2_version.h (original)
+++ httpd/httpd/trunk/modules/http2/h2_version.h Fri Mar 31 19:43:02 2017
@@ -26,7 +26,7 @@
  * @macro
  * Version number of the http2 module as c string
  */
-#define MOD_HTTP2_VERSION "1.10.0-DEV"
+#define MOD_HTTP2_VERSION "1.10.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 0x010a00
+#define MOD_HTTP2_VERSION_NUM 0x010a01
 
 
 #endif /* mod_h2_h2_version_h */