summaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2016-11-14 12:50:17 +0100
committerYann Ylavic <ylavic@apache.org>2016-11-14 12:50:17 +0100
commitf3659554bb8cbef4103b5108a8676b83948614b6 (patch)
tree18f8471d4c052db150c3c7b08cbc421b3f4f6db0 /CHANGES
parentmod_http2: fixes for compiler warnings (diff)
downloadapache2-f3659554bb8cbef4103b5108a8676b83948614b6.tar.xz
apache2-f3659554bb8cbef4103b5108a8676b83948614b6.zip
Axe backported CHANGES entries.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1769606 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--CHANGES60
1 files changed, 0 insertions, 60 deletions
diff --git a/CHANGES b/CHANGES
index 530da199de..c0d159d169 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,14 +1,6 @@
-*- coding: utf-8 -*-
Changes with Apache 2.5.0
- *) mpm_unix: Apache fails to start if previously crashed then restarted with
- the same PID (e.g. in container). PR 60261.
- [Val <valentin.bremond gmail.com>, Yann Ylavic]
-
- *) mod_dav: Fix a potential cause of unbounded memory usage or incorrect
- behavior in a routine that sends <DAV:response>'s to the output filters.
- [Evgeny Kotkov]
-
*) event: Avoid listener periodic wake ups by using the pollset wake-ability
when available. PR 57399. [Yann Ylavic, Luca Toscano]
@@ -19,12 +11,6 @@ Changes with Apache 2.5.0
Location: response headers. Corresponds to modern browser behavior.
[William Rowe]
- *) mpm_winnt: Prevent a denial of service when the 'data' AcceptFilter is in
- use by replacing it with the 'connect' filter. PR 59970. [Jacob Champion]
-
- *) mod_proxy_hcheck: Set health check URI and expression correctly for health
- check worker. PR 60038 [zdeno <zdeno@scnet.sk>]
-
*) mod_cache: Use the actual URI path and query-string for identifying the
cached entity (key), such that rewrites are taken into account when
running afterwards (CacheQuickHandler off). PR 21935. [Yann Ylavic]
@@ -36,36 +22,9 @@ Changes with Apache 2.5.0
triggering mod_proxy_connect's AH01018 once the tunnel is established.
[Yann Ylavic]
- *) mod_proxy_balancer: Prevent redirect loops between workers within a
- balancer by limiting the number of redirects to the number balancer
- members. PR 59864 [Ruediger Pluem]
-
- *) mod_proxy: Correctly consider error response codes by the backend when
- processing failonstatus. PR 59869 [Ruediger Pluem]
-
- *) mod_proxy_fcgi: avoid loops when ProxyErrorOverride is enabled
- and the error documents are proxied. PR 55415. [Luca Toscano]
-
- *) mod_proxy_fcgi: read the whole FCGI response even when the content
- has not been modified (HTTP 304) or in case of a precondition failure
- (HTTP 412) to avoid subsequent bogus reads and confusing
- error messages logged. [Luca Toscano]
-
*) mod_crypto: Add the all purpose crypto filters with support for HLS.
[Graham Leggett]
- *) ab: Add option -I to use the Server Name Indication (SNI) extension on
- outgoing TLS connections, according to the Host header (if any) or the
- requested URL's hostname otherwise. [Yann Ylavic]
-
- *) mod_ssl: reset client-verify state of ssl when aborting renegotiations.
- [Erki Aring <erki@example.ee>, Stefan Eissing]
-
- *) mod_proxy_{http,ajp,fcgi}: don't reuse backend connections with data
- available before the request is sent. PR 57832. [Yann Ylavic]
-
- *) mod_sed: Fix 'x' command processing. [Christophe Jaillet]
-
*) core: Drop an invalid Last-Modified header value coming
from a FCGI/CGI script instead of replacing it with Unix epoch.
Warn the users about Last-Modified header value replacements
@@ -81,24 +40,12 @@ Changes with Apache 2.5.0
dav_failed_proppatch, dav_success_proppatch to mod_dav.h.
[Jari Urpalainen <jari.urpalainen nokia.com>, Graham Leggett]
- *) core: Add -DDUMP_INCLUDES configtest option to show the tree
- of Included configuration files. [Jacob Champion <champion.pxi gmail.com>]
-
- *) mod_dav: Add support for childtags to dav_error.
- [Jari Urpalainen <jari.urpalainen nokia.com>]
-
*) mod_proxy, mod_ssl: Handle SSLProxy* directives in <Proxy> sections,
allowing per backend TLS configuration. [Yann Ylavic]
*) core: explicitly exclude 'h2' from protocols announced via an Upgrade:
header as commanded by http-wg. [Stefan Eissing]
- *) http: Respond with "408 Request Timeout" when a timeout occurs while
- reading the request body. [Yann Ylavic]
-
- *) scoreboard/status: Keep workers' previous Client, VHost and Request values
- when idle, like in 2.4.18 and earlier. [Yann Ylavic]
-
*) mod_proxy_ajp: Add "secret" parameter to proxy workers to implement legacy
AJP13 authentication. PR 53098. [Dmitry A. Bakshaev <dab1818 gmail com>]
@@ -108,19 +55,12 @@ Changes with Apache 2.5.0
*) mod_status: Display the process slot number in the async connection
overview. [Stefan Fritsch]
- *) mpm_event, mpm_worker: Fix computation of MinSpareThreads' lower bound
- according the number of listeners buckets. [Yann Ylavic]
-
*) mpm: Generalise the ap_mpm_register_socket functions to accept pipes
or sockets. [Graham Leggett]
*) core: Extend support for setting aside data from the network input filter
to any connection or request input filter. [Graham Leggett]
- *) mod_ssl: Add "no_crl_for_cert_ok" flag to SSLCARevocationCheck directive
- to opt-in previous behaviour (2.2) with CRLs verification when checking
- certificate(s) with no corresponding CRL. [Yann Ylavic]
-
*) core: Split ap_create_request() from ap_read_request(). [Graham Leggett]
*) ab: Use caseless matching for HTTP tokens (e.g. content-length). PR 59111.