]> granicus.if.org Git - apache/blob - CHANGES
"LDAPReferrals off" does not disable LDAPReferrals feature. Default OpenLDAP value...
[apache] / CHANGES
1                                                          -*- coding: utf-8 -*-
2 Changes with Apache 2.5.0
3
4   *) mod_ldap: Change "LDAPReferrals off" to actually set the underlying LDAP 
5      SDK option to OFF, and introduce "LDAPReferrals default" to take the SDK 
6      default, sans rebind authentication callback.
7      [Jan Kaluza <kaluze AT redhat.com>]
8
9   *) mod_authz_groupfile, mod_authz_user: Reduce severity of AH01671 and AH01663
10      from ERROR to DEBUG, since these modules do not know what mod_authz_core
11      is doing with their AUTHZ_DENIED return value. [Eric Covener]
12
13   *) mod_authnz_fcgi: New module to enable FastCGI authorizer
14      applications to authenticate and/or authorize clients.
15      [Jeff Trawick]
16
17   *) mod_auth_basic: Add AuthBasicUseDigestAlgorithm directive to
18      allow migration of passwords from digest to basic authentication.
19      [Chris Darroch]
20
21   *) core: Add util_fcgi.h and associated definitions and support
22      routines for FastCGI, based largely on mod_proxy_fcgi.
23      [Jeff Trawick]
24
25   *) core: Add ap_log_data(), ap_log_rdata(), etc. for logging buffers.
26      [Jeff Trawick]
27
28   *) mod_unique_id: Use output of the PRNG rather than IP address and
29      pid, avoiding sleep() call and possible DNS issues at startup,
30      plus improving randomness for IPv6-only hosts.
31      [Jan Kaluza <jkaluza redhat.com>]
32
33   *) core: Log a message at TRACE1 when the client aborts a connection.
34      [Eric Covener]
35
36   *) mod_authnz_ldap: Support primitive LDAP servers that do not accept
37      filters, such as "SDBM-backed LDAP" on z/OS, by allowing a special
38      filter "none" to be specified in AuthLDAPURL. [Eric Covener]
39
40   *) mod_file_cache: mod_file_cache should be able to serve files that
41      haven't had a Content-Type set via e.g. mod_mime. [Eric Covener]
42
43   *) core: merge AllowEncodedSlashes from the base configuration into
44      virtual hosts. [Eric Covener]
45
46   *) mod_headers: Add 'setifempty' command to Header and RequestHeader.
47      [Eric Covener]
48
49   *) AIX: Install DSO's with "cp" instead of "install" in instdso.sh
50      [Eric Covener]
51
52   *) mod_ldap: Retry transient LDAP connection errors when they occur 
53      during the authorization stage. 
54      [Eric Covener]
55
56   *) mod_ldap: Don't keep retrying if a new LDAP connection times out.
57      [Eric Covener]
58
59   *) mod_deflate: permit compilation of mod_deflate against a zlib that has
60      been configured with -D Z_PREFIX, which redefines the token "deflate".
61      [Eric Covener]
62
63   *) mod_socache_shmcb.c: Remove arbitrary restriction on shared memory size
64      previously limited to 64MB. [Jens Låås <jelaas gmail.com>]
65
66   *) mod_auth_digest: Use the secret when generating nonces in all cases and
67      not only when AuthName is used in .htaccess files (this change may cause
68      problems if used with round robin load balancers). Don't regenerate the
69      secret on graceful restarts. PR 54637  [Stefan Fritsch]
70
71   *) ab: Add a new -l parameter in order not to check the length of the responses.
72      This can be usefull with dynamic pages.
73      PR9945, PR27888, PR42040 [<ccikrs1 cranbrook edu>]
74      
75   *) mod_logio: new format-specifier %C (combined) which is the sum of received
76      and sent byte counts.
77      PR54015 [Christophe Jaillet]
78
79   *) core: Remove apr_brigade_flatten(), buffering and duplicated code
80      from the HTTP_IN filter, parse chunks in a single pass with zero copy.
81      Reduce memory usage by 48 bytes per request. [Graham Leggett]
82
83   *) core: Stop the HTTP_IN filter from attempting to write error buckets
84      to the output filters, which is bogus in the proxy case. Create a
85      clean mapping from APR codes to HTTP status codes, and use it where
86      needed. [Graham Leggett]
87
88   *) mod_proxy: Ensure network errors detected by the proxy are returned as
89      504 Gateway Timout as opposed to 502 Bad Gateway, in order to be
90      compliant with RFC2616 14.9.4 Cache Revalidation and Reload Controls.
91
92   *) mod_dav: mod_dav overrides dav_fs response on PUT failure. PR 35981
93      [Basant Kumar Kukreja <basant.kukreja sun.com>, Alejandro Alvarez
94      <alejandro.alvarez.ayllon cern.ch>]
95
96   *) core, mod_ssl: Enable the ability for a module to reverse the sense of
97      a poll event from a read to a write or vice versa. This is a step on
98      the way to allow mod_ssl taking full advantage of the event MPM.
99      [Graham Leggett]
100
101   *) mod_ldap: LDAP connections used for authentication were not respecting
102      LDAPConnectionPoolTimeout.  PR 54587
103
104   *) core: ap_rgetline_core now pulls from r->proto_input_filters.
105
106   *) mod_proxy_html: process parsed comments immediately. 
107      Fixes bug where parsed comments may be lost. [Nick Kew]
108
109   *) mod_proxy_html: introduce doctype for HTML 5 [Nick Kew]
110
111   *) mod_proxy_html: fix typo-bug processing "strict" vs "transitional"
112      HTML/XHTML [Nick Kew]
113
114   *) core: Add option to add valgrind support. Use it to reduce false positive
115      warnings in mod_ssl. [Stefan Fritsch]
116
117   *) mod_authn_file, mod_authn_dbd, mod_authn_dbm, mod_authn_socache:
118      Cache the result of the most recent password hash verification for every
119      keep-alive connection. This saves some expensive calculations.
120      [Stefan Fritsch]
121
122   *) http: Remove support for Request-Range header sent by Navigator 2-3 and
123      MSIE 3. [Stefan Fritsch]
124
125   *) core, http: Extend HttpProtocol with an option to enforce stricter HTTP
126      conformance or to only log the found problems. [Stefan Fritsch]
127
128   *) core: Correctly parse an IPv6 literal host specification in an absolute
129      URL in the request line. [Stefan Fritsch]
130
131   *) mod_ssl: Add support for OpenSSL configuration commands [Stephen Henson]
132
133   *) EventOpt MPM
134
135   *) core: Add LogLevelOverride directive that allows to override the
136      loglevel for clients from certain IPs. This also works for things
137      like the SSL handshake where <If> LogLevel ... </If> is evaluated
138      too late. [Stefan Fritsch]
139
140   *) core: Add new directive Warning to issue warnings from a configuration
141      file. Both Warning and Error now generate a timestamped log message.
142      [Fabien Coelho] 
143
144   *) ap_expr: Add SERVER_PROTOCOL_VERSION, ..._MAJOR, and ..._MINOR
145      variables. [Stefan Fritsch]
146
147   *) core: New directive RegisterHttpMethod for registering non-standard
148      HTTP methods. [Stefan Fritsch]
149
150   *) core: New directive HttpProtocol which allows to disable HTTP/0.9
151      support. [Stefan Fritsch]
152
153   *) mod_allowhandlers: New module to forbid specific handlers for specific
154      directories. [Stefan Fritsch]
155
156   *) mod_systemd: New module, for integration with systemd on Linux.
157      [Jan Kaluza <jkaluza redhat.com>]
158
159   *) WinNT MPM: Store pid and generation for each thread in scoreboard
160      to allow tracking of threads from exiting children via mod_status
161      or other such mechanisms.  [Jeff Trawick]
162
163   *) mod_ssl: Catch missing or mismatched client cert/key pairs with
164      SSLProxyMachineCertificateFile/Path directives.  PR 52212.  
165      [Keith Burdis <keith burdis.org>, Joe Orton]
166
167   *) The following now respect DefaultRuntimeDir/DEFAULT_REL_RUNTIMEDIR:
168      - APIs: ap_log_pid(), ap_remove_pid, ap_read_pid()
169      - core: the scoreboard (ScoreBoardFile), pid file (PidFile), and
170        mutexes (Mutex)
171      - mod_cache: thundering herd lock directory
172      - mod_lbmethod_heartbeat, mod_heartmonitor: heartbeat storage file
173      - mod_ldap: shared memory cache
174      - mod_socache_shmcb, mod_socache_dbm: shared memory or dbm for cache
175      [Jeff Trawick]
176
177   *) suexec: Add --enable-suexec-capabilites support on Linux, to use
178      setuid/setgid capability bits rather than a setuid root binary.
179      [Joe Orton]
180
181   *) suexec: Add support for logging to syslog as an alternative to logging
182      to a file; configure --without-suexec-logfile --with-suexec-syslog.  
183      [Joe Orton]
184
185   *) mod_ssl: Add support for TLS Next Protocol Negotiation.  PR 52210.
186      [Matthew Steele <mdsteele google.com>]
187
188   *) cross-compile: allow to provide CC_FOR_BUILD so that gen_test_char will
189      be compiled by the build compiler instead of the host compiler.
190      Also set CC_FOR_BUILD to 'cc' when cross-compilation is detected.
191      PR 51257. [Guenter Knauf]
192
193   *) core: In maintainer mode, replace apr_palloc with a version that
194      initializes the allocated memory with non-zero values, except if
195      AP_DEBUG_NO_ALLOC_POISON is defined. [Stefan Fritsch]
196
197   *) mod_policy: Add a new testing module to help server administrators
198      enforce a configurable level of protocol compliance on their
199      servers and application servers behind theirs. [Graham Leggett]
200
201   *) mod_firehose: Add a new debugging module able to record traffic
202      passing through the server in such a way that connections and/or
203      requests be reconstructed and replayed. [Graham Leggett]
204
205   *) mod_noloris
206
207   *) APREQ
208
209   *) Simple MPM
210
211   *) mod_serf
212
213   [Apache 2.5.0-dev includes those bug fixes and changes with the
214    Apache 2.4.xx tree as documented below, except as noted.]
215
216 Changes with Apache 2.4.x and later:
217
218   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/CHANGES?view=markup
219
220 Changes with Apache 2.2.x and later:
221
222   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/CHANGES?view=markup
223
224 Changes with Apache 2.0.x and later:
225
226   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.0.x/CHANGES?view=markup
227