Skip to content

Releases: icing/mod_h2

mod-h2 v2.0.35

14 Aug 07:37
v2.0.35
d2e6679

Choose a tag to compare

  • New directive H2MaxStreamErrors to control how much bad behaviour by clients is tolerated before the connection is closed.

mod-h2 v2.0.34

06 Aug 13:59
v2.0.34
0944787

Choose a tag to compare

  • Added support for "ProxyErrorOverride" directive in mod_proxy_http2.
  • Fix a bug in calculating the log2 value of integers, used in push
    diaries and proxy window size calculations. Apache PR69741.
    [Benjamin P. Kallus]

mod_h2 v2.0.33

10 Jul 17:34
12cd7a9

Choose a tag to compare

mod_h2 v2.0.32

30 May 11:42
v2.0.32
d8a6888

Choose a tag to compare

  • The connection window size was set wrong, preventing H2WindowSize to work. Fixed #300.

mod_h2 v2.0.31

24 Mar 12:42
v2.0.31
6061a09

Choose a tag to compare

  • mod_proxy_http2: revert r1912193 for detecting broken backend connections
    as this interferes with backend selection who a node is unresponsive.
    PR69624.
  • Fix issue with handling 304 responses from mod_cache. PR69580.

mod-h2 v2.0.30

03 Mar 12:17
v2.0.30
e6953bc

Choose a tag to compare

  • Fixed bug in handling over long response headers. When the 64 KB limit
    of nghttp2 was exceeded, the request was not reset and the client was
    left hanging, waiting for it. Now the stream is reset.
  • Added new directive H2MaxHeaderBlockLen to set the limit on response
    header sizes.
  • Fixed handling of Timeout vs. KeepAliveTimeout when first request on a
    connection was reset.

mod-h2 v2.0.29

10 Jul 11:11

Choose a tag to compare

  • fixed a compiler warning about an unused static var when AP_MPMQ_CAN_WAITIO is not defined.

mod-h2 v2.0.28

10 Jul 10:41

Choose a tag to compare

  • When HTTP/2 flow controls blocks further writes, return processing to an
    async mpm to free a worker thread. The connection needs window updates from
    the client in such a case and can leave monitoring the socket to the mpm.
    So far, only effective on Apache httpd 2.5.0 (trunk).
    [ylavic, icing]
  • Backport fix of CVE-2024-36387 from Apache 2.4.60.

mod-h2 v2.0.27

03 Apr 13:37

Choose a tag to compare

  • Added cmake support provided by @jfclere. Many thanks.
  • Improved handling of excess request headers to lead to an early stream reset.

mod_h2 v2.0.26

17 Jan 08:21

Choose a tag to compare

  • Fixed Date header on requests upgraded from HTTP/1.1 (h2c). Fixes #272.
  • Fixed small memory leak in h2 header bucket free. Thanks to
    Michael Kaufmann for finding this and providing the fix.