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