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