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 2021/03/24 14:30:04 UTC

svn commit: r1888012 - in /httpd/httpd/branches/2.4.x: CHANGES STATUS

Author: icing
Date: Wed Mar 24 14:30:04 2021
New Revision: 1888012

URL: http://svn.apache.org/viewvc?rev=1888012&view=rev
Log:
Update after backport of mod_http2 change proposal.
[skip ci]


Modified:
    httpd/httpd/branches/2.4.x/CHANGES
    httpd/httpd/branches/2.4.x/STATUS

Modified: httpd/httpd/branches/2.4.x/CHANGES
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/CHANGES?rev=1888012&r1=1888011&r2=1888012&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/CHANGES [utf-8] (original)
+++ httpd/httpd/branches/2.4.x/CHANGES [utf-8] Wed Mar 24 14:30:04 2021
@@ -1,6 +1,16 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.4.47
 
+  *) mod_http2: sync with github standalone version 1.15.17
+     - Log requests and sent the configured error response in case of early detected
+       errors like too many or too long headers. [Ruediger Pluem]
+     - new option 'H2OutputBuffering on/off' which controls the buffering of stream output.
+       The default is on, which is the behaviour of older mod-h2 versions. When off, all
+       bytes are made available immediately to the main connection for sending them
+       out to the client. This fixes interop issues with certain flavours of gRPC, see
+       also <https://github.com/icing/mod_h2/issues/207>.
+       [Stefan Eissing]
+
   *) mod_unique_id: Fix potential duplicated ID generation under heavy load.
      PR 65159
      [Jonas Müntener <jonas.muentener ergon.ch>, Christophe Jaillet]

Modified: httpd/httpd/branches/2.4.x/STATUS
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/STATUS?rev=1888012&r1=1888011&r2=1888012&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/STATUS (original)
+++ httpd/httpd/branches/2.4.x/STATUS Wed Mar 24 14:30:04 2021
@@ -148,17 +148,6 @@ PATCHES PROPOSED TO BACKPORT FROM TRUNK:
     +1: minfrin
     ylavic: patch is 404
 
-  *) mod_http2: sync with github standalone version 1.15.17
-     - Log requests and sent the configured error response in case of early detected
-       errors like too many or too long headers. [Ruediger Pluem]
-     - new option 'H2OutputBuffering on/off' which controls the buffering of stream output.
-       The default is on, which is the behaviour of older mod-h2 versions. When off, all
-       bytes are made available immediately to the main connection for sending them
-       out to the client. This fixes interop issues with certain flavours of gRPC, see
-       also <https://github.com/icing/mod_h2/issues/207>.
-     PR: https://github.com/apache/httpd/pull/175
-     +1: icing, ylavic, jorton
-
   *) mod_lua: Support Lua 5.4 and use pkg-config to detect Lua
      properly on Debian systems.
      trunk patch: http://svn.apache.org/r1826206