]> granicus.if.org Git - apache/blob - CHANGES
Update common x-types that have been registered or will never
[apache] / CHANGES
1                                                         -*- coding: utf-8 -*-
2 Changes with Apache 2.3.0
3
4   *) log core: ensure we use a special pool for stderr logging, so that
5      the stderr channel remains valid from the time plog is destroyed,
6      until the time the open_logs hook is called again.  [William Rowe]
7
8   *) main core: Emit errors during the initial apr_app_initialize()
9      or apr_pool_create() (when apr-based error reporting is not ready).
10      [William Rowe]
11
12   *) mpm_winnt: Prevent the parent-child pipe from leaking into other
13      spawned processes, and ensure we have a /Device/null handle for
14      stdout when running as-a-service.  [William Rowe]
15
16   *) log core: fix the new piped logger case where we couldn't connect 
17      the replacement stderr logger's stderr to the NULL stdout stream.  
18      Continue in this case, since the previous alternative of no error 
19      logging at all (/dev/null) is far worse. [William Rowe]
20
21   *) mod_ldap: Avoid possible crashes, hangs, and busy loops due to
22      improper merging of the cache lock in vhost config
23      PR 43164 [Eric Covener]
24
25   *) mod_negotiation: preserve Query String in resolving a type map
26      PR 33112 [Jørgen Thomsen <apache jth.net>, Nick Kew]
27
28   *) mod_deflate: fix content_encoding detection in inflate_out filter
29      when it's not in response headers table.
30      PR 42993 [Nick Kew]
31
32   *) mod_proxy: Improve network performance by setting APR_TCP_NODELAY
33      (disable Nagle algorithm) on sockets if implemented.
34      PR 42871 [Christian BOITEL <christian_boitel yahoo.fr>, Jim Jagielski]
35
36   *) mod_info: mod_info outputs invalid XHTML 1.0 transitional.
37      PR 42847 [Rici Lake <rici ricilake.net>]
38
39   *) mime.types: add registered Apple installer type
40      PR 40379 [Peter Bierman <pmb+apache apple.com>]
41    
42   *) mod_ldap, mod_authnzldap: Add support for nested groups (i.e. the ability
43      to authorize an authenticated user via a "require ldap-group X" directive
44      where the user is not in group X, but is in a subgroup contained in X.
45      PR 42891 [Paul J. Reder]
46
47   *) mod_deflate: don't try to process metadata buckets as data.  what should
48      have been a 413 error was logged as a 500 and a blank screen appeared
49      at the browser.
50      [Greg Ames, Ruediger Pluem]
51
52   *) SECURITY: CVE-2007-3304 (cve.mitre.org)
53      prefork, worker, event MPMs: Ensure that the parent process cannot
54      be forced to kill processes outside its process group.  [Joe Orton]
55
56   *) SECURITY: CVE-2006-5752 (cve.mitre.org)
57      mod_status: Fix a possible XSS attack against a site with a public
58      server-status page and ExtendedStatus enabled, for browsers which
59      perform charset "detection".  Reported by Stefan Esser.  [Joe Orton]
60
61   *) Event MPM: Add support for running under mod_ssl, by reverting to the
62      Worker MPM behaviors, when run under an input filter that buffers
63      its own data. [Paul Querna]
64
65   *) mod_ssl: Add support for caching SSL Sessions in memcached. [Paul Querna]
66
67   *) SECURITY: CVE-2007-1862 (cve.mitre.org)
68      mod_mem_cache: Copy headers into longer lived storage; header names and 
69      values could previously point to cleaned up storage
70      PR 41551 [Davi Arnaut <davi haxent.com.br>]
71
72   *) mod_cache: Do not set Date or Expires when they are missing from
73      the original response or are invalid.  [Justin Erenkrantz]
74
75   *) mod_cache: Correctly handle HEAD requests on expired cache content.
76      PR 41230.  [Niklas Edmundsson]
77
78   *) mod_proxy: Added ProxyPassMatch directive, which is similar
79      to ProxyPass but takes a regex local path prefix. [Jim Jagielski]
80
81   *) mod_so: Solve dev's confusion by reporting expected/seen module
82      magic signatures when failing with a 'garbled' message, and solve
83      user's confusion by pointing out 'perhaps compiled for a different
84      version of apache?'.  [William Rowe]
85
86   *) mod_substitute: Added a new experimental output filter, which
87      performs inline response content pattern matching (including
88      regex) and substitution.  [Jim Jagielski]
89
90   *) mod_ssl: Version reporting update; displays 'compiled against'
91      Apache and build-time SSL Library versions at loglevel [info],
92      while reporting the run-time SSL Library version in the server
93      info tags.  Helps to identify a mod_ssl built against one flavor
94      of OpenSSL but running against another (also adds SSL-C version
95      number reporting.)  [William Rowe]
96
97   *) core: Change etag generation to produce identical results on 
98      32-bit and 64-bit platforms.  PR 40064.  [Joe Orton]
99
100   *) ab: Add -r option to continue after socket receive errors. 
101      [Filip Hanik <devlist hanik.com>]
102
103   *) mod_ldap: Fix the search limit parameter to ldap_search_ext_s()
104      for SDKs that define LDAP_NO_LIMIT to something other than -1.
105      [David Jones <oscaremma gmail.com>]
106
107   *) mod_dbd: Introduce configuration groups to allow inheritance by virtual
108      hosts of database configurations from the main server.  Determine the
109      minimal set of distinct configurations and share connection pools
110      whenever possible.  Allow virtual hosts to override inherited SQL
111      statements.  PR 41302.  [Chris Darroch]
112
113   *) core: Fix broken chunk filtering that causes all non blocking reads to be
114      converted into blocking reads.  PR 41056. [Jean-Frederic Clere, Jim Jagielski]
115
116   *) apxs: Enhance -q flag to print all known variables and their values
117      when invoked without variable name(s). 
118      [William Rowe, Sander Temme]
119
120   *) mod_dbd: Create memory sub-pools for each DB connection and close
121      DB connections in a pool cleanup function.  Ensure prepared statements
122      are destroyed before DB connection is closed.  When using reslists,
123      prevent segfaults when child processes exit, and stop memory leakage
124      of ap_dbd_t structures.  Avoid use of global s->process->pool, which
125      isn't destroyed by exiting child processes in most multi-process MPMs.
126      PR 39985.  [Chris Darroch, Nick Kew]
127
128   *) apxs: Eliminate run-time check for mod_so.  PR 40653.
129      [David M. Lee <dmlee crossroads.com>]
130
131   *) beos MPM: Create pmain pool and run modules' child_init hooks when
132      entering ap_mpm_run(), then destroy pmain when exiting ap_mpm_run().
133      [Chris Darroch]
134
135   *) netware MPM: Destroy pmain pool when exiting ap_mpm_run() so that
136      cleanups registered in modules' child_init hooks are performed.
137      [Chris Darroch]
138
139   *) mod_dbd: Handle error conditions in dbd_construct() properly.
140      Simplify ap_dbd_open() and use correct arguments to apr_dbd_error()
141      when non-threaded.  Register correct cleanup data in non-threaded
142      ap_dbd_acquire() and ap_dbd_cacquire().  Clean up configuration data
143      and merge function.  Use ap_log_error() wherever possible.
144      [Chris Darroch, Nick Kew]
145
146   *) core: Do not replace a Date header set by a proxied backend server.
147      PR 40232. [Ruediger Pluem]
148
149   *) mod_proxy: Ensure that at least scheme://hostname[:port] matches between
150      worker and URL when searching for the best fitting worker for a given URL.
151      PR 40910. [Ruediger Pluem]
152
153   *) mod_cache: Remove expired content from cache that cannot be revalidated.
154      PR 30370. [Ruediger Pluem]
155
156   *) mod_dbd: Stash DBD connections in request_config of initial request
157      only, or else sub-requests and internal redirections may cause
158      entire DBD pool to be stashed in a single HTTP request.  [Chris Darroch]
159
160   *) mod_proxy: Add a missing assignment in an error checking code path.
161      PR 40865. [Andrew Rucker Jones <arjones simultan.dyndns.org>]
162
163   *) mod_mem_cache: Increase the minimum and default value for
164      MCacheMinObjectSize from 0 to 1, as a MCacheMinObjectSize of 0 does not
165      make sense and leads to a division by zero.  PR 40576.
166      [Xuekun Hu <xuekun.hu gmail.com>]
167
168   *) Fix issue which could cause error messages to be written to access logs
169      on Win32.  PR 40476.  [Tom Donovan <Tom.Donovan acm.org>]
170
171   *) The LockFile directive, which specifies the location of
172      the accept() mutex lockfile, is deprecated. Instead, the
173      AcceptMutex directive now takes an optional lockfile
174      location parameter, ala SSLMutex. [Jim Jagielski]
175
176   *) mod_authn_dbd: Export any additional columns queried in the SQL select
177      into the environment with the name AUTHENTICATE_<COLUMN>. This brings
178      mod_authn_dbd behaviour in line with mod_authnz_ldap. [Graham Leggett]
179
180   *) mod_dbd: Key the storage of prepared statements on the hex string
181      value of server_rec, rather than the server name, as the server name
182      may change (eg when the server name is set) at any time, causing
183      weird behaviour in modules dependent on mod_dbd. [Graham Leggett]
184
185   *) mod_proxy_fcgi: Added win32 build. [Mladen Turk]
186
187   *) sendfile_nonblocking() takes the _brigade_ as an argument, gets 
188      the first bucket from the brigade, finds it not to be a FILE
189      bucket and barfs. The fix is to pass a bucket rather than a brigade.
190      [Niklas Edmundsson <nikke acc.umu.se>]
191
192   *) mod_rewrite: support rewritemap by SQL query [Nick Kew]
193
194   *) ap_get_server_version() has been removed.  Third-party modules must 
195      now use ap_get_server_banner() or ap_get_server_description().
196      [Jeff Trawick]
197
198   *) All MPMs: Introduce a check_config phase between pre_config and
199      open_logs, to allow modules to review interdependent configuration
200      directive values and adjust them while messages can still be logged
201      to the console.  Handle relevant MPM directives during this phase
202      and format messages for both the console and the error log, as
203      appropriate.  [Chris Darroch]
204
205   *) mod_proxy: don't URLencode tilde in path component
206      [Stijn Hoop <stijn sandcat.nl>]
207
208   *) mpm_winnt: Fix return values from wait_for_many_objects.
209      The return value is index to the signaled thread in the
210      creted_threads array. We can not use WAIT_TIMEOUT because
211      his value is defined as 258, thus limiting the MaxThreads
212      to that value. [Mladen Turk]
213
214   *) core: Do not allow internal redirects like the DirectoryIndex of mod_dir
215      to circumvent the symbolic link checks imposed by FollowSymLinks and
216      SymLinksIfOwnerMatch. [Nick Kew, Ruediger Pluem, William Rowe]
217
218   *) mod_proxy: Support environment variable interpolation in reverse
219      proxying directives. [Nick Kew]
220
221   *) core: Add the filename of the configuration file to the warning message
222      about the useless use of AllowOverride. PR 39992.
223      [Darryl Miles <darryl darrylmiles.org>]
224
225   *) New SSLLogLevelDebugDump [ None (default) | IO (not bytes) | Bytes ]
226      configures the I/O Dump of SSL traffic, when LogLevel is set to Debug.
227      The default is none as this is far greater debugging resolution than 
228      the typical administrator is prepared to untangle.  [William Rowe]
229
230   *) mod_disk_cache: If possible, check if the size of an object to cache is
231      within the configured boundaries before actually saving data.
232      [Niklas Edmundsson <nikke acc.umu.se>]
233
234   *) mod_cache: Convert all values to seconds before comparing them when
235      checking whether to send a Warning header for a stale response.
236      PR 39713. [Owen Taylor <otaylor redhat.com>]
237
238   *) mod_disk_cache: Delete temporary files if they cannot be renamed to their
239      final name. [Davi Arnaut <davi haxent.com.br>]
240
241   *) Worker and event MPMs: Remove improper scoreboard updates which were
242      performed in the event of a fork() failure.  [Chris Darroch]
243
244   *) Add support for fcgi:// proxies to mod_rewrite.
245      [Markus Schiegl <ms schiegl.com>]
246
247   *) Remove incorrect comments from scoreboard.h regarding conditional
248      loading of worker_score structure with mod_status, and remove unused
249      definitions relating to old life_status field.
250      [Chris Darroch <chrisd pearsoncmg.com>]
251
252   *) Remove allocation of memory for unused array of lb_score pointers
253      in ap_init_scoreboard().  [Chris Darroch <chrisd pearsoncmg.com>]
254
255   *) Add mod_proxy_fcgi, a FastCGI back end for mod_proxy.
256      [Garrett Rooney, Jim Jagielski, Paul Querna]
257
258   *) Event MPM: Fill in the scoreboard's tid field. PR 38736.
259      [Chris Darroch <chrisd pearsoncmg.com>]
260
261   *) mod_charset_lite: Remove Content-Length when output filter can 
262      invalidate it.  Warn when input filter can invalidate it.
263      [Jeff Trawick]
264
265   *) mod_ssl: Fix spurious hostname mismatch warning for valid
266      wildcard certificates.  PR 37911.  [Nick Burch <nick torchbox.com>]
267
268   *) Authz: Add the new module mod_authn_core that will provide common
269      authn directives such as 'AuthType', 'AuthName'.  Move the directives
270      'AuthType' and 'AuthName' out of the core module and merge mod_authz_alias 
271      into mod_authn_core. [Brad Nicholes]
272
273   *) Authz: Move the directives 'Order', 'Allow', 'Deny' and 'Satisfy' 
274      into the new module mod_access_compat which can be loaded to provide 
275      support for these directives.
276      [Brad Nicholes]
277
278   *) Authz: Move the 'Require' directive from the core module as well as 
279      add the directives '<SatisfyAll>', '<SatisfyOne>', '<RequireAlias>' 
280      and 'Reject' to mod_authz_core. The new directives introduce 'AND/OR' 
281      logic into the authorization processing. [Brad Nicholes]
282
283   *) Authz: Add the new module mod_authz_core which acts as the 
284      authorization provider vector and contains common authz 
285      directives. [Brad Nicholes]
286
287   *) Authz: Renamed mod_authz_dbm authz providers from 'group' and 
288      'file-group' to 'dbm-group' and 'dbm-file-group'. [Brad Nicholes]
289
290   *) Authz: Added the new authz providers 'env', 'ip', 'host', 'all' to handle
291      host-based access control provided by mod_authz_host and invoked 
292      through the 'Require' directive. [Brad Nicholes]
293
294   *) Authz: Convert all of the authz modules from hook based to 
295      provider based. [Brad Nicholes]
296
297   *) mod_cache: Add CacheMinExpire directive to set the minimum time in
298      seconds to cache a document.
299      [Brian Akins <brian.akins turner.com>, Ruediger Pluem]
300
301   *) mod_authz_dbd: SQL authz with Login/Session support [Nick Kew]
302
303   *) Fix typo in ProxyStatus syntax error message.
304      [Christophe Jaillet <christophe.jaillet wanadoo.fr>]
305
306   *) Asynchronous write completion for the Event MPM.  [Brian Pane]
307
308   *) Added an End-Of-Request bucket type.  The logging of a request and
309      the freeing of its pool are now done when the EOR bucket is destroyed.
310      This has the effect of delaying the logging until right after the last
311      of the response is sent; ap_core_output_filter() calls the access logger
312      indirectly when it destroys the EOR bucket.  [Brian Pane]
313
314   *) Rewrite of logresolve support utility: IPv6 addresses are now supported
315      and the format of statistical output has changed. [Colm MacCarthaigh]
316
317   *) Rewrite of ap_coreoutput_filter to do nonblocking writes  [Brian Pane]
318
319   *) Added new connection states for handler and write completion
320      [Brian Pane]
321
322   *) mod_cgid: Refuse to work on Solaris 10 due to OS bugs.  PR 34264.
323      [Justin Erenkrantz]
324
325   *) Teach mod_ssl to use arbitrary OIDs in an SSLRequire directive,
326      allowing string-valued client certificate attributes to be used for
327      access control, as in: SSLRequire "value" in OID("1.3.6.1.4.1.18060.1")
328      [Martin Kraemer, David Reid]
329
330 Changes with Apache 2.2.5
331
332   *) ApacheMonitor: Fix Windows Vista detection. [Mladen Turk]
333
334   *) mod_deflate: fix protocol handling in deflate input filter
335      PR 23287 [Nick Kew]
336
337   *) mod_proxy: fix buffer overflow issue
338      PR 41144 [Davi Arnaut]
339
340   *) mime.types: add Registered Javascript/ECMAScript MIME types (RFC4329)
341      PR 40299 [Dave Hodder <dmh dmh.org.uk>]
342
343   *) mod_filter: fix integer comparisons in dispatch rules
344      PR 41835 [Nick Kew]
345
346   *) mod_filter: fix merging of ! and = in FilterChain
347      PR 42186 [Issac Goldstand <margol beamartyr.net>]
348  
349   *) mod_cache: Let Cache-Control max-age set the expiration of the cached
350      representation if Expires is not set.  [Justin Erenkrantz]
351
352   *) mod_disk_cache: Allow Vary'd responses to be refreshed properly.
353      [Justin Erenkrantz]
354
355   *) mod_cache: Allow caching of requests with query arguments when
356      Cache-Control max-age is explicitly specified.  [Justin Erenkrantz]
357
358   *) mod_proxy: Print the correct error message for erroneous configured
359      ProxyPass directives. PR 40439. [serai lans-tv.com]
360
361   *) mod_so: Provide more helpful LoadModule feedback when an error occurs.
362      [William Rowe]
363
364   *) mod_alias: Accept path components (URL part) in Redirects.  PR 35314.
365      [Nick Kew]
366
367   *) mod_headers: Allow % at the end of a Header value.  PR 36609.
368      [Nick Kew, Ruediger Pluem]
369
370   *) mod_cache: Use the same cache key throughout the whole request processing
371      to handle escaped URLs correctly.  PR 41475. [Ruediger Pluem]
372
373   *) mod_cache: Add CacheIgnoreQueryString directive.  PR 41484.
374      [Fredrik Widlund <fredrik.widlund qbrick.com>]
375
376   *) mod_cache: While serving a cached entity ensure that filters that have
377      been applied to this cached entity before saving it to the cache are not
378      applied again. PR 40090. [Ruediger Pluem]
379
380   *) mod_cache: Correctly cache objects whose URL query string has been
381      modified by mod_rewrite. PR 40805. [Ruediger Pluem]
382
383   *) mod_proxy_http: Change handling of ProxyErrorOverride such that
384      3xx responses are no longer over-ridden (handling of 4xx and 5xx
385      responses is unchanged).  PR 39245.
386      [Jeff Trawick, Bart van der Schans <schans hippo.nl>]
387
388   *) htdbm: Enable crypt support on platforms with crypt() but not
389      <crypt.h>, such as z/OS. [David Jones <oscaremma gmail.com>]
390
391   *) mod_ssl: initialize thread locks before initializing the hardware
392      acceleration library, so the latter can make use of the former. 
393      PR 20951. [adunn at ncipher.com]
394
395   *) ab.c: Correct behavior of HTTP request headers sent by ab
396      in presence of -H command-line overrides. PR 31268, 26554.
397      [Arvind Srinivasan <arvind.srinivasan  sun.com>]
398
399   *) ab.c: The apr_port_t type is unsigned, but ab was using a
400      signed format code in its reports. PR 42070.
401      [Takashi Sato <serai  lans-tv.com>]
402
403   *) core: Correct a regression since 2.0.x in the handling of AllowOverride 
404      Options.  PR 41829.  [Torsten Förtsch <torsten.foertsch gmx.net>]
405
406   *) mod_proxy_http: Handle request bodies larger than 2 GB by converting
407      the Content-Length header of the request correctly. PR 40883.
408      [Ruediger Pluem, toadie <toadie643 gmail.com>]
409
410   *) mod_proxy: Fix some proxy setting inheritance problems (eg:
411      ProxyTimeout). PR 11540. [Stuart Children <stuart terminus.co.uk>]
412
413   *) Unix MPMs: Catch SIGFPE so that exception hooks and CoreDumpDirectory
414      can work after that terminating signal.
415      [Eric Covener <covener gmail.com>]
416
417   *) Win32: Makefile.win will now build with MS VC 8 (Visual Studio 2005)
418      including embedding the .manifest information into each binary.
419      [William Rowe]
420
421 Changes with Apache 2.2.4
422
423   *) mod_isapi: Correctly present SERVER_PORT_SECURE.
424      PR: 40573.  [Matt Eaton <asf divinehawk.com>]
425
426   *) Allow htcacheclean, httxt2dbm, and fcgistarter to link apr/apr-util
427      statically like the older support programs.
428      [Eric Covener <covener gmail.com>]
429
430   *) core: Fix NONBLOCK status of listening sockets on restart/graceful
431      PR 37680.  [Darius Davis <darius-abz free-range.com.au>]
432
433   *) mod_deflate: Rework inflate output and deflate output filter to fix several
434      issues: Incorrect handling of flush buckets, potential memory leaks,
435      excessive memory usage in inflate output filter for large compressed
436      content. PR 39854. [Ruediger Pluem, Nick Kew, Justin Erenkrantz]
437
438   *) mod_mem_cache: Memory leak fix: Unconditionally free the buffer.
439      [Davi Arnaut <davi haxent.com.br>]
440
441   *) Allow mod_dumpio to log at other than DEBUG levels via
442      the new DumpIOLogLevel directive. [Jim Jagielski]
443
444   *) rotatelogs: Improve error message for open failures.  PR 39487.
445      [Joe Orton]
446
447   *) Better detection and clean up of ldap connection that has been
448      terminated by the ldap server.  PR 40878.
449      [Rob Baily <rbaily servicebench com>]
450
451   *) mod_mem_cache: Convert mod_mem_cache to use APR memory pool functions
452      by creating a root pool for object persistence across requests. This
453      also eliminates the need for custom serialization code.
454      [Davi Arnaut <davi haxent.com.br>]
455
456   *) mod_authnz_ldap: Add an AuthLDAPRemoteUserAttribute directive. If
457      set, REMOTE_USER will be set to this attribute, rather than the
458      username supplied by the user. Useful for example when you want users
459      to log in using an email address, but need to supply a userid instead
460      to the backend.  [Graham Leggett]
461
462   *) mod_cgi and mod_cgid: Don't use apr_status_t error return
463      from input filters as HTTP return value from the handler.
464      PR 31579.  [Nick Kew]
465
466   *) mod_cache: Eliminate a bogus error in the log when a filter returns
467      AP_FILTER_ERROR.  [Niklas Edmundsson <nikke acc.umu.se>]
468
469   *) core: Fix issue which could cause piped loggers to be orphaned and never
470      terminate after a graceful restart.  PR 40651.  [Joe Orton, Ruediger Pluem]
471
472   *) core: Fix address-in-use startup failure caused by corruption of the list
473      of listen sockets in some configurations with multiple generic Listen
474      directives.  [Jeff Trawick]
475
476   *) mod_headers: Support regexp-based editing of HTTP headers.  [Nick Kew]
477
478   *) mod_proxy: Add explicit flushing feature. When Servlet container sends AJP
479      body message with size 0, this means that Servlet container has asked for
480      an explicit flush. Create flush bucket in that case. This feature has been
481      added to the recent Tomcat versions without breaking the AJP protocol.
482      [Mladen Turk]
483
484   *) mod_proxy_balancer: Set the new environment variable BALANCER_ROUTE_CHANGED
485      if a worker with a route different from the one supplied by the client
486      had been chosen or if the client supplied no routing information for
487      a balancer with sticky sessions. [Ruediger Pluem]
488
489   *) mod_proxy_balancer: Add information about the route, the sticky session
490      and the worker used during a request as environment variables. PR 39806.
491      [Brian <brectanu gmail.com>]
492
493   *) mod_proxy: Don't try to use dead backend connection. PR 37770.
494      [Olivier BOEL <ob dorrboel.com>]
495
496   *) mod_proxy_balancer: Extract stickysession routing information contained as
497      parameter in the URL correctly. PR 40400.
498      [Ruediger Pluem, Tomokazu Harada <harada sysrdc.ns-sol.co.jp>]
499
500   *) mod_proxy_ajp: Added cping/cpong support for the AJP protocol.
501      A new worker directive ping=timeout will cause CPING packet
502      to be send expecting CPONG packet within defined timeout.
503      In case the backend is too busy this will fail instead
504      sending the full header.  [Mladen Turk]
505
506   *) mod_cache: From RFC3986 (section 6.2.3.) if a URI contains an
507      authority component and an empty path, the empty path is to be equivalent
508      to "/". It explicitly cites the following four URIs as equivalents:
509        http://example.com
510        http://example.com/
511        http://example.com:/
512        http://example.com:80/
513      [Davi Arnaut <davi haxent.com.br>]
514
515   *) mod_cache: Don't cache requests with a expires date in the past;
516      otherwise mod_cache will always try to cache the URL. This bug
517      might lead to numerous rename() errors on win32 if the URL was
518      previously cached.  [Davi Arnaut <davi haxent.com.br>]
519
520   *) mod_disk_cache: Make sure that only positive integers are accepted
521      for the CacheMaxFileSize and CacheMinFileSize parameters in the
522      config file. PR39380.  [Niklas Edmundsson <nikke acc.umu.se>]
523
524   *) core: Deal with the widespread use of apr_status_t return values
525      as HTTP status codes, as documented in PR#31759 (a bug shared by
526      the default handler, mod_cgi, mod_cgid, mod_proxy, and probably
527      others). PR31759.  [Jeff Trawick, Ruediger Pluem, Joe Orton]
528
529   *) mod_ext_filter: Handle filter names which include capital letters.
530      PR 40323.  [Jeff Trawick]
531
532   *) mod_isapi: Avoid double trailing slashes in HSE_REQ_MAP_URL_TO_PATH
533      support.  Also corrects the slashes for Windows.
534      PR 15993.  [William Rowe]
535
536   *) mod_isapi: Handle "HTTP/1.1 200 OK" style status lines correctly, the
537      token parser worked while the resulting length was misinterpreted.
538      PR 29098.  [Brock Bland <bbland serena.com>]
539
540   *) mod_isapi: Return 0 (failure) for more of the various ap_pass_brigade
541      attempts to stream the response at the client.  Log these as well.
542      PR 30022, 40470.  [William Rowe, Matt Eaton <asf divinehawk.com>]
543
544   *) mod_isapi: Ensure we walk through all the methods the developer may have
545      employed to report their HTTP status result code.
546      PR 16637 30033 28089.  [Matt Lewandowsky <matt iamcode.net>, William Rowe]
547
548   *) mod_echo: Fix precedence problem in if statement. PR 40658.
549      [Larry Cipriani <lvc lucent.com>]
550
551   *) mod_mime_magic: Fix precedence problem in if statement. PR 40656.
552      [Larry Cipriani <lvc lucent.com>]
553
554   *) The full server version information is now included in the error log at
555      startup as well as server status reports, irrespective of the setting
556      of the ServerTokens directive.  ap_get_server_version() is now 
557      deprecated, and is replaced by ap_get_server_banner() and 
558      ap_get_server_description().  [Jeff Trawick]
559
560   *) mod_proxy_balancer: Workers can now be defined as part of
561      a balancer cluster "set" in which members of a lower-numbered set
562      are preferred over higher numbered ones.  [Jim Jagielski]
563
564   *) mod_proxy_balancer: Workers can now be defined as "hot standby" which
565      will only be used if all other workers are unusable (eg: in
566      error or disabled). Also, the balancer-manager displays the election
567      count and I/O counts of all workers.  [Jim Jagielski]
568
569   *) mod_proxy_ajp: Close connection to backend if reading of request body
570      fails. PR 40310.  [Ian Abel <ianabel mxtelecom.com>]
571
572   *) mod_proxy_balancer: Retry worker chosen by route / redirect worker if
573      it is in error state before sending "Service Temporarily Unavailable".
574      PR 38962.  [Christian Boitel <cboitel lfdj.com>]
575
576 Changes with Apache 2.2.3
577
578   *) SECURITY: CVE-2006-3747 (cve.mitre.org)
579      mod_rewrite: Fix an off-by-one security problem in the ldap scheme
580      handling.  For some RewriteRules this could lead to a pointer being
581      written out of bounds.  Reported by Mark Dowd of McAfee.
582      [Mark Cox]
583
584   *) mod_authn_alias: Add a check to make sure that the base provider and the
585      alias names are different and also that the alias has not been registered
586      before. PR 40051. [Brad Nicholes]
587
588   *) mod_authnz_ldap: Fix a problem with invalid auth error detection for LDAP
589      client SDKs that don't support the LDAP_SECURITY_ERROR macro. PR 39529.
590      [Ray Price <dohrayme yahoo.com>, Josh Fenlason <jfenlason ptc.com>]
591
592   *) mod_cache: Do not overwrite the Content-Type in the cache, for
593      successfully revalidated cached objects. PR 39647. [Ruediger Pluem]
594
595   *) mod_speling: Add directive to deal with case corrections only
596      and ignore other misspellings [Olivier Thereaux  <ot w3.org>]
597
598   *) mod_dbd: Fix dependence on virtualhost configuration in
599      defining prepared statements (possible segfault at startup
600      in user modules such as mod_authn_dbd).  [Nick Kew]
601
602   *) Add optional 'scheme://' prefix to ServerName directive,
603      allowing correct determination of the canonical server URL
604      for use behind a proxy or offload device handling SSL; fixing
605      redirect generation in those cases. PR 33398. [Sander Temme]
606
607   *) Added server_scheme field to server_rec for above. Minor MMN bump.
608      [Sander Temme]
609
610   *) mod_cache: Make caching of reverse SSL proxies possible again. PR 39593.
611      [Ruediger Pluem, Joe Orton]
612
613   *) Worker MPM: On graceless shutdown or restart, send signals to
614      each worker thread to wake them up if they're polling on a
615      Keep-Alive connection.  PR 38737.  [Chris Darroch]
616
617   *) worker and event MPMs: fix excessive forking if fork() or child_init
618      take a long time.  PR 39275.
619      [Greg Ames, Jeff Trawick, Chris Darroch <chrisd pearsoncmg.com> ]
620
621   *) configure: Add "--with-included-apr" flag to force use of the
622      bundled version of APR at build time.  [Joe Orton]
623
624   *) Respect GracefulShutdownTimeout in the worker and event MPMs.
625      [Chris Darroch, Garrett Rooney]
626
627   *) mod_mem_cache: Set content type correctly when delivering data from
628      cache. PR 39266. [Ruediger Pluem]
629
630   *) mod_autoindex: Fix filename escaping with FancyIndexing disabled.
631      PR 38910.  [Robby Griffin <rmg terc.edu>]
632
633   *) mod_charset_lite: Bypass translation when the source and dest charsets
634      are the same. [Jeff Trawick]
635
636 Changes with Apache 2.2.2
637
638   *) mod_deflate: Allow mod_deflate to handle internal redirects.
639      [Brian J. France <list firehawksystems.com>]
640
641   *) mod_proxy_balancer: Initialize members of a balancer correctly.
642      PR 38227. [James A. Robinson <jim.robinson stanford.edu>]
643
644   *) mod_proxy: Do not release connections from connection pool twice.
645      PR 38793. [Ruediger Pluem, matthias <mk-asf gigacodes.de>]
646
647   *) core: Prevent reading uninitialized memory while reading a line of
648      protocol input.  PR 39282. [Davi Arnaut <davi haxent.com.br>]
649
650   *) mod_dbd: Update defaults, improve error reporting.
651      [Chris Darroch <chrisd pearsoncmg com>, Nick Kew]
652
653   *) mod_dbd: Create own pool and mutex to avoid problem use of
654      process pool in request processing.
655      [Chris Darroch <chrisd pearsoncmg com>]
656
657   *) HTML-escape the Expect error message.  Not classed as security as
658      an attacker has no way to influence the Expect header a victim will
659      send to a target site.  Reported by Thiago Zaninotti
660      <thiango nstalker.com>. [Mark Cox]
661
662   *) htdbm: Fix crash processing -d option in 64-bit mode on HP-UX.
663      [Jeff Trawick]
664
665   *) htdbm: Warn the user when adding a plaintext password on a platform
666      where it wouldn't work with the server (i.e., anywhere that has
667      crypt()).  [Jeff Trawick]
668
669   *) mod_proxy: don't reuse a connection that may be to the wrong backend
670      PR 39253 [Ruediger Pluem]
671
672   *) Default handler: Don't return output filter apr_status_t values.
673      PR 31759.  [Jeff Trawick, Ruediger Pluem, Joe Orton]
674
675 Changes with Apache 2.2.1
676
677   *) SECURITY: CVE-2005-3357 (cve.mitre.org)
678      mod_ssl: Fix a possible crash during access control checks if a
679      non-SSL request is processed for an SSL vhost (such as the
680      "HTTP request received on SSL port" error message when an 400 
681      ErrorDocument is configured, or if using "SSLEngine optional").
682      PR 37791.  [Rüdiger Plüm, Joe Orton]
683
684   *) SECURITY: CVE-2005-3352 (cve.mitre.org)
685      mod_imagemap: Escape untrusted referer header before outputting
686      in HTML to avoid potential cross-site scripting.  Change also
687      made to ap_escape_html so we escape quotes.  Reported by JPCERT.
688      [Mark Cox]
689
690   *) mod_proxy_ajp: Flushing of the output after each AJP chunk is now
691      configurable at runtime via the 'flushpackets' and 'flushwait' worker
692      params. Minor MMN bump. [Jim Jagielski]
693
694   *) mod_proxy: Fix incorrect usage of local and shared worker init.
695      PR 38403. [Jim Jagielski]
696
697   *) mod_isapi: Fix compiler errors on Unix platforms.
698      [William Rowe]
699
700   *) mod_proxy_http: Send HTTP Keep-Alive Headers. PR 38524.
701      [Rüdiger Plüm, Joe Orton]
702
703   *) mod_disk_cache: Return the correct error codes from bucket read
704      failures, instead of APR_EGENERAL.
705      [Brian Akins <brian.akins turner.com>]
706
707   *) Add APR/APR-Util Compiled and Runtime Version numbers to the
708      output of 'httpd -V'. [William Rowe]
709
710   *) http: If a connection is aborted while waiting for a chunked line,
711      flag the connection as errored out.  [Justin Erenkrantz]
712
713   *) core: Reject invalid Expect header immediately. PR 38123.
714      [Ruediger Pluem]
715
716   *) mod_proxy: Fix KeepAlives not being allowed and set to
717      backend servers. PR 38602. [Ruediger Pluem, Jim Jagielski]
718
719   *) mod_proxy: If we get an error reading the upstream response,
720      close the connection.  [Justin Erenkrantz, Roy T. Fielding,
721      Jim Jagielski, Ruediger Pluem]
722
723   *) mod_proxy_ajp: Support common headers of the AJP protocol in responses.
724      PR 38340. [Aleksey Pesternikov <apesternikov yahoo.com>]
725
726   *) mod_proxy_balancer: Do not overwrite the status of initialized workers and
727      respect the configured status of uninitilized workers when creating a new
728      child process. [Ruediger Pluem]
729
730   *) mod_proxy_ajp: Crosscheck the length of the body chunk with the length of
731      the ajp message to prevent mod_proxy_ajp from reading beyond the buffer
732      boundaries and thus revealing possibly sensitive memory contents to the
733      client. [Ruediger Pluem]
734
735   *) Ensure that the proper status line is written to the client, fixing
736      incorrect status lines caused by filters which modify r->status without 
737      resetting r->status_line, such as the built-in byterange filter.
738      [Jeff Trawick]
739
740   *) mod_speling: Stop crashing with certain non-file requests.  [Jeff Trawick]
741
742   *) mod_cache: Make caching of reverse proxies possible again. PR 38017.
743      [Ruediger Pluem]
744
745   *) Modify apr[util] .h detection to avoid breakage on VPATH builds
746      using Solaris make (amoung others) and avoid breakage in ./buildconf
747      when srclib/apr[-util] are symlinks rather than directories proper.
748      [William Rowe]
749
750   *) Chunk filter: Fix chunk filter to create correct chunks in the case that
751      a flush bucket is surrounded by data buckets. [Ruediger Pluem]
752
753   *) Fix syntax error in httpd.h with strict compilers.  PR 38740.
754      [Per Olausson <pao darkheim.freeserve.co.uk>]
755
756   *) Preserve the Content-Length header for a proxied HEAD response.
757      PR 18757.  [Greg Ames]
758
759   *) Fix recursive ErrorDocument handling.  PR 36090.
760      [Chris Darroch <chrisd pearsoncmg.com>]
761
762   *) Don't hang on error return from post_read_request.  PR37790 [Nick Kew]
763
764   *) Fix off-by-one error in proxy_balancer.  PR37753
765      [Kazuhiro Osawa <ko yappo ne jp>]
766
767 Changes with Apache 2.2.0
768
769   *) mod_negotiation: Minor performance tweak by reusing already calculated
770      strlen.
771      [Ruediger Pluem, Christophe Jaillet <christophe.jaillet wanadoo.fr>]
772
773   *) Remove support for 'On' and 'Off' for AuthBasicProvider and
774      AuthDigestProvider.  [Joshua Slive, Justin Erenkrantz]
775
776   *) Add in new UseCanonicalPhysicalPort directive, which controls
777      whether or not Apache will ever use the actual physical port
778      when constructing the canonical port number. [Jim Jagielski]
779
780   *) mod_dav: Fix a null pointer dereference in an error code path during the
781      handling of MKCOL.
782      [Ruediger Pluem, Ghassan Misherghi <ghassanm ucdavis.edu>]
783
784   *) Fix DESTDIR=... installation when using bundled copy of APR.
785      [Torsten Foertsch <torsten.foertsch gmx.net>]
786
787   *) mod_proxy_balancer: When finding best worker, use case insensitive
788      match for scheme and host, but case sensitive for the rest of
789      the path. [Jim Jagielski, Ruediger Pluem]
790
791
792   [Apache 2.1.0-dev includes those bug fixes and changes with the
793    Apache 2.2.xx tree as documented, and except as noted, below.]
794
795 Changes with Apache 2.2.x and later:
796
797   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/CHANGES?view=markup
798
799 Changes with Apache 2.0.x and later:
800
801   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.0.x/CHANGES?view=markup
802
803 Changes with Apache 1.3.x and later:
804
805   *) http://svn.apache.org/viewvc/httpd/httpd/branches/1.3.x/src/CHANGES?view=markup