From: Eric Covener Date: Mon, 24 Nov 2025 18:44:59 +0000 (+0000) Subject: make update-changes X-Git-Tag: 2.4.66-rc1-candidate~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=82b50642d420c6609793ee0cbb58abe3c57ac90a;p=thirdparty%2Fapache%2Fhttpd.git make update-changes git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1929947 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index d15c415132..37f337e6ec 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,34 @@ -*- coding: utf-8 -*- Changes with Apache 2.4.66 + *) mod_http2: Fix handling of 304 responses from mod_cache. PR 69580. + [Stefan Eissing] + + *) mod_http2/mod_proxy_http2: fix a bug in calculating the log2 value of + integers, used in push diaries and proxy window size calculations. + PR69741 [Benjamin P. Kallus] + + *) mod_md: update to version 2.6.5 + - New directive `MDInitialDelay`, controlling how longer to wait after + a server restart before checking certificates for renewal. + [Michael Kaufmann] + - Hardening: when build with OpenSSL older than 1.0.2 or old libressl + versions, the parsing of ASN.1 time strings did not do a length check. + - Hardening: when reading back OCSP responses stored in the local JSON + store, missing 'valid' key led to uninitialized values, resulting in + wrong refresh behaviour. + + *) mod_md: update to version 2.6.6 + - Fix a small memory leak when using OpenSSL's BIGNUMs. [Theo Buehler] + - Fix reuse of curl easy handles by resetting them. [Michael Kaufmann] + + *) mod_http2: update to version 2.0.35 + New directive `H2MaxStreamErrors` to control how much bad behaviour + by clients is tolerated before the connection is closed. + [Stefan Eissing] + + * mod_proxy_http2: add support for ProxyErrorOverride directive. PR69771 + *) mpm_common: Add new ListenTCPDeferAccept directive that allows to specify the value set for the TCP_DEFER_ACCEPT socket option on listen sockets. [Ruediger Pluem] diff --git a/changes-entries/h2_v2.0.35.txt b/changes-entries/h2_v2.0.35.txt deleted file mode 100644 index 288f6e1f17..0000000000 --- a/changes-entries/h2_v2.0.35.txt +++ /dev/null @@ -1,4 +0,0 @@ - *) mod_http2: update to version 2.0.35 - New directive `H2MaxStreamErrors` to control how much bad behaviour - by clients is tolerated before the connection is closed. - [Stefan Eissing] diff --git a/changes-entries/md_v2.6.5.txt b/changes-entries/md_v2.6.5.txt deleted file mode 100644 index 796bb0e1c1..0000000000 --- a/changes-entries/md_v2.6.5.txt +++ /dev/null @@ -1,9 +0,0 @@ - *) mod_md: update to version 2.6.5 - - New directive `MDInitialDelay`, controlling how longer to wait after - a server restart before checking certificates for renewal. - [Michael Kaufmann] - - Hardening: when build with OpenSSL older than 1.0.2 or old libressl - versions, the parsing of ASN.1 time strings did not do a length check. - - Hardening: when reading back OCSP responses stored in the local JSON - store, missing 'valid' key led to uninitialized values, resulting in - wrong refresh behaviour. diff --git a/changes-entries/md_v2.6.6.txt b/changes-entries/md_v2.6.6.txt deleted file mode 100644 index 700e0fbaeb..0000000000 --- a/changes-entries/md_v2.6.6.txt +++ /dev/null @@ -1,3 +0,0 @@ - *) mod_md: update to version 2.6.6 - - Fix a small memory leak when using OpenSSL's BIGNUMs. [Theo Buehler] - - Fix reuse of curl easy handles by resetting them. [Michael Kaufmann] diff --git a/changes-entries/pr69580.txt b/changes-entries/pr69580.txt deleted file mode 100644 index 08647ea5ae..0000000000 --- a/changes-entries/pr69580.txt +++ /dev/null @@ -1,2 +0,0 @@ - *) mod_http2: Fix handling of 304 responses from mod_cache. PR 69580. - [Stefan Eissing] diff --git a/changes-entries/pr69741.txt b/changes-entries/pr69741.txt deleted file mode 100644 index 2b1d876b50..0000000000 --- a/changes-entries/pr69741.txt +++ /dev/null @@ -1,3 +0,0 @@ - * mod_http2/mod_proxy_http2: fix a bug in calculating the log2 value of - integers, used in push diaries and proxy window size calculations. - PR69741 [Benjamin P. Kallus] diff --git a/changes-entries/pr69771.txt b/changes-entries/pr69771.txt deleted file mode 100644 index 8c8402e897..0000000000 --- a/changes-entries/pr69771.txt +++ /dev/null @@ -1 +0,0 @@ - * mod_proxy_http2: add support for ProxyErrorOverride directive. PR69771