summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2021-03-01 20:16:50 +0000
committerYann Ylavic <ylavic@apache.org>2021-03-01 20:16:50 +0000
commitba708f0e78a58efdf210f6003eeb509bedb885f6 (patch)
tree788b312d21d663a38a6238798940b8d53959bcfe /CHANGES
parent7e09dd714fc62c08c5b0319ed7b9702594faf49b (diff)
downloadhttpd-ba708f0e78a58efdf210f6003eeb509bedb885f6.tar.gz
Sync CHANGES entries. [skip ci].
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1887053 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES39
1 files changed, 39 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 675e0f3bbb..5c61df237d 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,45 @@
-*- coding: utf-8 -*-
Changes with Apache 2.5.1
+ *) mod_session: Improve session parsing. [Yann Yalvic]
+
+ *) mod_proxy_hcheck: Don't pile up health checks if the previous one did
+ not finish before hcinterval. PR 63010. [Yann Ylavic]
+
+ *) core: Adding SSL related inquiry functions to the server API.
+ These function are always available, even when no module providing
+ SSL is loaded. They provide their own "shadowing" implementation for
+ the optional functions of similar name that mod_ssl and impersonators
+ of mod_ssl provide.
+ This enables loading of several SSL providing modules when all but
+ one of them registers itself into the new hooks. Two old-style SSL
+ modules will not work, as they replace the others optional functions
+ with their own.
+ Modules using the old-style optional functions will continue to work
+ as core supplies its own versions of those.
+ The following has been added so far:
+ - ap_ssl_conn_is_ssl() to query if a connection is using SSL.
+ - ap_ssl_var_lookup() to query SSL related variables for a
+ server/connection/request.
+ - Hooks for 'ssl_conn_is_ssl' and 'ssl_var_lookup' where modules
+ providing SSL can install their own value supplying functions.
+ [Stefan Eissing]
+
+ *) mod_http2: new option 'H2OutputBuffering on/off' which controls the
+ buffering of stream output. The default is on, which is the behaviour of
+ previous 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. [Stefan Eissing]
+
+ *) mod_authnz_ldap: Prevent authentications with empty passwords for the
+ initial bind to fail with status 500. [Ruediger Pluem]
+
+ *) mod_http2: Fixed reporting of transferred bytes for mod_logio for
+ modifiers %O (and %S) to report the number of transferred header and
+ body lengths. This is still only an approximation of the bytes on the
+ connection. The data is subject to header compression and h2 framing
+ afterwards. [Stefan Eissing]
+
*) mod_cgid: Intercept and log stderr output correctly on Unix systems
supporting fd passing. PR 54221. [Joe Orton]