summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorGraham Leggett <minfrin@apache.org>2020-06-27 23:41:00 +0000
committerGraham Leggett <minfrin@apache.org>2020-06-27 23:41:00 +0000
commit8de97e5fabff6069844cc14f41a4bcb7759d5cdc (patch)
treec301ae85767d05e69653d264bbb4c2c581b0aa21 /CHANGES
parent1f6d74d465f2db2cbde89589989469296d8ca385 (diff)
downloadhttpd-8de97e5fabff6069844cc14f41a4bcb7759d5cdc.tar.gz
"[mod_dav_fs etag handling] should really honor the FileETag setting".
- It now does. - Add "Digest" to FileETag directive, allowing a strong ETag to be generated using a file digest. - Add ap_make_etag_ex() and ap_set_etag_fd() to allow full control over ETag generation. - Add concept of "binary notes" to request_rec, allowing packed bit flags to be added to a request. - First binary note - AP_REQUEST_STRONG_ETAG - allows modules to force the ETag to a strong ETag to comply with RFC requirements, such as those mandated by various WebDAV extensions. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1879285 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES13
1 files changed, 13 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 2ef98d168d..ae5c7e715f 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,19 @@
-*- coding: utf-8 -*-
Changes with Apache 2.5.1
+ *) "[mod_dav_fs etag handling] should really honor the FileETag setting".
+ - It now does.
+ - Add "Digest" to FileETag directive, allowing a strong ETag to be
+ generated using a file digest.
+ - Add ap_make_etag_ex() and ap_set_etag_fd() to allow full control over
+ ETag generation.
+ - Add concept of "binary notes" to request_rec, allowing packed bit flags
+ to be added to a request.
+ - First binary note - AP_REQUEST_STRONG_ETAG - allows modules to force
+ the ETag to a strong ETag to comply with RFC requirements, such as those
+ mandated by various WebDAV extensions.
+ [Graham Leggett]
+
*) mod_ssl: Fix a race condition and possible crash when using a proxy client
certificate (SSLProxyMachineCertificateFile).
[Armin Abfalterer <a.abfalterer gmail.com>]