From: Ruediger Pluem Date: Fri, 24 Sep 2021 06:45:09 +0000 (+0000) Subject: * Update CHANGES [skip ci] X-Git-Tag: 2.5.0-alpha2-ci-test-only~784 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=df3a6135551e061a9dc27cde56c7fec25805a21d;p=thirdparty%2Fapache%2Fhttpd.git * Update CHANGES [skip ci] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1893590 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index e8f7b94fd9d..1e1ec0356a2 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,49 @@ -*- coding: utf-8 -*- Changes with Apache 2.5.1 + *) mod_dav: Correctly handle errors returned by dav providers on REPORT + requests. [Ruediger Pluem] + + *) mod_rewrite: Fix UDS ("unix:") scheme for [P] rules. PR 57691 + 65590. + [Janne Peltonen ] + + *) mod_proxy: Handle UDS URIs with empty hostname ("unix:///...") as if they + had no hostname ("unix:/..."). [Yann Ylavic] + + *) event mpm: Correctly count active child processes in parent process if + child process dies due to MaxConnectionsPerChild. + PR 65592 [Ruediger Pluem] + + *) core: Add ap_pre_connection() as a wrapper to ap_run_pre_connection() + and use it to prevent that failures in running the pre_connection + hook cause crashes afterwards. [Ruediger Pluem] + + *) mod_md: fixed a bug in handling multiple parallel OCSP requests. These could + run into an assertion which terminated (and restarted) the child process where + the task was running. Eventually, all OCSP responses were collected, but not + in the way that things are supposed to work. + See also . + The bug was possibly triggered when more than one OCSP status needed updating + at the same time. For example for several renewed certificates after a server + reload. + + *) mod_md: when MDMessageCmd for a 'challenge-setup::' + fails (!= 0 exit), the renewal process is aborted and an error is + reported for the MDomain. This provides scripts that distribute + information in a cluster to abort early with bothering an ACME + server to validate a dns name that will not work. The common + retry logic will make another attempt in the future, as with + other failures. + Fixed a bug when adding private key specs to an already working + MDomain, see . + [Stefan Eissing] + + *) core: Add ap_create_connection() to create either a server or client/proxy + connection. + + *) mod_http2: when a server is restarted gracefully, any idle h2 worker + threads are shut down immediately. [Stefan Eissing] + *) core: Initialize the request fields on read failure to avoid NULLs. [Yann Ylavic] diff --git a/changes-entries/ap_create_connection.txt b/changes-entries/ap_create_connection.txt deleted file mode 100644 index 834e5c4a3d2..00000000000 --- a/changes-entries/ap_create_connection.txt +++ /dev/null @@ -1,2 +0,0 @@ - *) core: Add ap_create_connection() to create either a server or client/proxy - connection. \ No newline at end of file diff --git a/changes-entries/ap_pre_connection.txt b/changes-entries/ap_pre_connection.txt deleted file mode 100644 index 0effce1195a..00000000000 --- a/changes-entries/ap_pre_connection.txt +++ /dev/null @@ -1,3 +0,0 @@ - *) core: Add ap_pre_connection() as a wrapper to ap_run_pre_connection() - and use it to prevent that failures in running the pre_connection - hook cause crashes afterwards. diff --git a/changes-entries/http2_graceful.txt b/changes-entries/http2_graceful.txt deleted file mode 100644 index 2956a4c9de2..00000000000 --- a/changes-entries/http2_graceful.txt +++ /dev/null @@ -1,4 +0,0 @@ - *) mod_http2: when a server is restarted gracefully, any idle h2 worker - threads are shut down immediately. [Stefan Eissing] - - diff --git a/changes-entries/md_ocsp_multi_update.txt b/changes-entries/md_ocsp_multi_update.txt deleted file mode 100644 index e927c79927f..00000000000 --- a/changes-entries/md_ocsp_multi_update.txt +++ /dev/null @@ -1,8 +0,0 @@ - *) mod_md: fixed a bug in handling multiple parallel OCSP requests. These could - run into an assertion which terminated (and restarted) the child process where - the task was running. Eventually, all OCSP responses were collected, but not - in the way that things are supposed to work. - See also . - The bug was possibly triggered when more than one OCSP status needed updating - at the same time. For example for several renewed certificates after a server - reload. diff --git a/changes-entries/md_pkeys_challenge_setup.txt b/changes-entries/md_pkeys_challenge_setup.txt deleted file mode 100644 index b722a3a4e9a..00000000000 --- a/changes-entries/md_pkeys_challenge_setup.txt +++ /dev/null @@ -1,10 +0,0 @@ - *) mod_md: when MDMessageCmd for a 'challenge-setup::' - fails (!= 0 exit), the renewal process is aborted and an error is - reported for the MDomain. This provides scripts that distribute - information in a cluster to abort early with bothering an ACME - server to validate a dns name that will not work. The common - retry logic will make another attempt in the future, as with - other failures. - Fixed a bug when adding private key specs to an already working - MDomain, see . - [Stefan Eissing] diff --git a/changes-entries/mod_dav_report_err.txt b/changes-entries/mod_dav_report_err.txt deleted file mode 100644 index c709e002116..00000000000 --- a/changes-entries/mod_dav_report_err.txt +++ /dev/null @@ -1,2 +0,0 @@ - *) mod_dav: Correctly handle errors returned by dav providers on REPORT - requests. [Ruediger Pluem] diff --git a/changes-entries/pr65592.txt b/changes-entries/pr65592.txt deleted file mode 100644 index 5b256e38c08..00000000000 --- a/changes-entries/pr65592.txt +++ /dev/null @@ -1,3 +0,0 @@ - *) event mpm: Correctly count active child processes in parent process if - child process dies due to MaxConnectionsPerChild. - PR 65592 [Ruediger Pluem] diff --git a/changes-entries/rewrite_uds.txt b/changes-entries/rewrite_uds.txt deleted file mode 100644 index 4b752a8b46c..00000000000 --- a/changes-entries/rewrite_uds.txt +++ /dev/null @@ -1,2 +0,0 @@ - *) mod_rewrite: Fix UDS ("unix:") scheme for [P] rules. PR 57691 + 65590. - [Janne Peltonen ] \ No newline at end of file diff --git a/changes-entries/uds_empty_hostname.txt b/changes-entries/uds_empty_hostname.txt deleted file mode 100644 index beff3023e90..00000000000 --- a/changes-entries/uds_empty_hostname.txt +++ /dev/null @@ -1,2 +0,0 @@ - *) mod_proxy: Handle UDS URIs with empty hostname ("unix:///...") as if they - had no hostname ("unix:/..."). [Yann Ylavic] \ No newline at end of file