]> granicus.if.org Git - apache/blob - CHANGES
Add -D DUMP_RUN_CFG option to dump some configuration items
[apache] / CHANGES
1                                                          -*- coding: utf-8 -*-
2 Changes with Apache 2.3.15
3
4   *) SECURITY: CVE-2011-3348 (cve.mitre.org)
5      mod_proxy_ajp: Respond with HTTP_NOT_IMPLEMENTED when the method is not
6      recognized.  [Jean-Frederic Clere]
7
8   *) SECURITY: CVE-2011-3192 (cve.mitre.org)
9      core: Fix handling of byte-range requests to use less memory, to avoid
10      denial of service. If the sum of all ranges in a request is larger than
11      the original file, ignore the ranges and send the complete file.
12      PR 51714. [Stefan Fritsch, Jim Jagielski, Ruediger Pluem, Eric Covener,
13      <lowprio20 gmail.com>]
14
15   *) core, unixd: Add -D DUMP_RUN_CFG option to dump some configuration items
16      from the parsed (or default) config. This is useful for init scripts that
17      need to setup temporary directories and permissions. [Stefan Fritsch]
18
19   *) core, mod_actions, mod_asis: Downgrade error log messages which accompany
20      a 404 request status from loglevel error to info. PR: 35768. [Stefan
21      Fritsch]
22
23   *) core: Fix hook sorting with perl modules. PR: 45076. [Torsten Foertsch
24      <torsten foertsch gmx net>]
25
26   *) core: Enforce LimitRequestFieldSize after multiple headers with the same
27      name have been merged. [Stefan Fritsch]
28
29   *) mod_ssl: If MaxMemFree is set, ask OpenSSL >= 1.0.0 to reduce memory
30      usage.  PR 51618. [Cristian Rodríguez <crrodriguez opensuse org>,
31      Stefan Fritsch]
32
33   *) mod_ssl: At startup, when checking a server certificate whether it
34      matches the configured ServerName, also take dNSName entries in the
35      subjectAltName extension into account. PR 32652, PR 47051. [Kaspar Brand]
36
37   *) mod_substitute: Reduce memory usage and copying of data. PR 50559.
38      [Stefan Fritsch]
39
40   *) mod_ssl/proxy: enable the SNI extension for backend TLS connections
41      [Kaspar Brand]
42
43   *) Add wrappers for malloc, calloc, realloc that check for out of memory
44      situations and use them in many places. PR 51568, PR 51569, PR 51571.
45      [Stefan Fritsch]
46
47   *) Fix cross-compilation of mod_cgi/mod_cgid when APR_HAVE_STRUCT_RLIMIT is 
48      false but RLIMIT_* are defined.  PR51371. [Eric Covener]
49
50   *) core: Correctly obey ServerName / ServerAlias if the Host header from the
51      request matches the VirtualHost address.
52      PR 51709. [Micha Lenk <micha lenk.info>]
53
54   *) mod_unique_id: Use random number generator to initialize counter.
55      PR 45110. [Stefan Fritsch]
56
57   *) core: Add convenience API for apr_random. [Stefan Fritsch]
58
59   *) core: Add MaxRangeOverlaps and MaxRangeReversals directives to control
60      the number of overlapping and reversing ranges (respectively) permitted
61      before returning the entire resource, with a default limit of 20.
62      [Jim Jagielski]
63
64   *) mod_ldap: Optional function uldap_ssl_supported(r) always returned false
65      if called from a virtual host with mod_ldap directives in it.  Did not
66      affect mod_authnz_ldap's usage of mod_ldap.  [Eric Covener]
67
68   *) mod_filter: Instead of dropping the Accept-Ranges header when a filter
69      registered with AP_FILTER_PROTO_NO_BYTERANGE is present,
70      set the header value to "none". [Eric Covener, Ruediger Pluem]
71
72   *) core: Allow MaxRanges none|unlimited|default and set 'Accept-Ranges: none'
73      in the case Ranges are being ignored with MaxRanges none.
74      [Eric Covener]
75
76   *) mod_ssl: revamp CRL-based revocation checking when validating
77      certificates of clients or proxied servers. Completely delegate
78      CRL processing to OpenSSL, and add a new [Proxy]CARevocationCheck
79      directive for controlling the revocation checking mode. [Kaspar Brand]
80
81   *) core: Add MaxRanges directive to control the number of ranges permitted
82      before returning the entire resource, with a default limit of 200.
83      [Eric Covener]
84
85   *) mod_cache: Ensure that CacheDisable can correctly appear within
86      a LocationMatch. [Graham Leggett]
87
88   *) mod_cache: Fix the moving of the CACHE filter, which erroneously
89      stood down if the original filter was not added by configuration.
90      [Graham Leggett]
91
92   *) mod_ssl: improve certificate error logging. PR 47408. [Kaspar Brand]
93
94   *) mod_authz_groupfile: Increase length limit of lines in the group file to
95      16MB. PR 43084. [Stefan Fritsch]
96
97   *) core: Increase length limit of lines in the configuration file to 16MB.
98      PR 45888. PR 50824. [Stefan Fritsch]
99
100   *) core: Add API for resizable buffers. [Stefan Fritsch]
101
102   *) mod_ldap: Enable LDAPConnectionTimeout for LDAP toolkits that have
103      LDAP_OPT_CONNECT_TIMEOUT instead of LDAP_OPT_NETWORK_TIMEOUT, such
104      as Tivoli Directory Server 6.3 and later. [Eric Covener]
105
106   *) mod_ldap: Change default number of retries from 10 to 3, and add
107      an LDAPRetries and LDAPRetryDelay directives. [Eric Covener]
108
109   *) mod_authnz_ldap: Don't retry during authentication, because this just
110      multiplies the ample retries already being done by mod_ldap. [Eric Covener]
111
112   *) configure: Allow to explicitly disable modules even with module selection
113      'reallyall'. [Stefan Fritsch]
114
115   *) mod_rewrite: Check validity of each internal (int:) RewriteMap even if the
116      RewriteEngine is disabled in server context, avoiding a crash while
117      referencing the invalid int: map at runtime. PR 50994.
118      [Ben Noordhuis <info noordhuis nl>]
119
120   *) mod_ssl, configure: require OpenSSL 0.9.7 or later. [Kaspar Brand]
121
122   *) mod_ssl: remove ssl_toolkit_compat layer. [Kaspar Brand]
123
124   *) mod_ssl, configure, ab: drop support for RSA BSAFE SSL-C toolkit.
125      [Kaspar Brand]
126
127   *) mod_usertrack: Run mod_usertrack earlier in the fixups hook to ensure the
128      cookie is set when modules such as mod_rewrite trigger a redirect. Also
129      use r->err_headers_out for the cookie, for the same reason.  PR29755.
130      [Sami J. Mäkinen <sjm almamedia fi>, Eric Covener]
131
132   *) mod_proxy_http, mod_proxy_connect: Add 'proxy-status' and
133      'proxy-source-port' request notes for logging. PR 30195. [Stefan Fritsch]
134
135   *) configure: Enable ldap modules in 'all' and 'most' selections if ldap
136      is compiled into apr-util. [Stefan Fritsch]
137
138   *) core: Add ap_check_cmd_context()-check if a command is executed in
139      .htaccess file. [Stefan Fritsch]
140
141   *) mod_deflate: Fix endless loop if first bucket is metadata. PR 51590.
142      [Torsten Foertsch <torsten foertsch gmx net>]
143
144   *) mod_authn_socache: Fix to work in .htaccess if not configured anywhere
145      in httpd.conf, and introduce an AuthnCacheEnable directive.
146      PR 51991 [Nick Kew]
147
148 Changes with Apache 2.3.14
149
150   *) mod_proxy_ajp: Improve trace logging.  [Rainer Jung]
151
152   *) mod_proxy_ajp: Respect "reuse" flag in END_REPONSE packets.
153      [Rainer Jung]
154
155   *) mod_proxy: enable absolute URLs to be rewritten with ProxyPassReverse,
156      e.g. to reverse proxy "Location: https://other-internal-server/login"
157      [Nick Kew]
158
159   *) prefork, worker, event: Make sure crashes are logged to the error log if
160      httpd has already detached from the console. [Stefan Fritsch]
161
162   *) prefork, worker, event: Reduce period during startup/restart where a
163      successive signal may be lost. PR 43696. [Arun Bhalla <arun shme net>]
164
165   *) mod_allowmethods: Correct Merging of "reset" and do not allow an
166      empty parameter list for the AllowMethods directive. [Rainer Jung]
167
168   *) configure: Update selection of modules for 'all' and 'most'. 'all' will
169      now enable all modules except for example and test modules. Make the
170      selection for 'most' more useful (including ssl and proxy). Both 'all'
171      and 'most' will now disable modules if dependencies are missing instead
172      of aborting. If a specific module is requested with --enable-XXX=yes,
173      missing dependencies will still cause configure to exit with an error.
174      [Stefan Fritsch]
175
176   *) mod_ldap: Revert the integration of apr-ldap as ap_ldap which was done
177      in 2.3.13. [Stefan Fritsch]
178
179   *) core: For '*' or '_default_' vhosts, use a wildcard address of any
180      address family, rather than IPv4 only.  [Joe Orton]
181
182   *) core, mod_rewrite, mod_ssl, mod_nw_ssl: Make the SERVER_NAME variable
183      include [ ] for literal IPv6 addresses, as mandated by RFC 3875.
184      PR 26005. [Stefan Fritsch]
185
186   *) mod_negotiation: Fix parsing of Content-Length in type maps. PR 42203.
187      [Nagae Hidetake <nagae eagan jp>]
188
189   *) core: Add more logging to ap_scan_script_header_err* functions. Add
190      ap_scan_script_header_err*_ex functions that take a module index for
191      logging.
192      mod_cgi, mod_cgid, mod_proxy_fcgi, mod_proxy_scgi, mod_isapi: Use the
193      new functions in order to make logging configurable per-module.
194      [Stefan Fritsch]
195
196   *) mod_dir: Add DirectoryIndexRedirect to send an external redirect to
197      the proper index.  [Eric Covener]
198
199   *) mod_deflate: Don't try to compress requests with a zero sized body.
200      PR 51350. [Stefan Fritsch]
201
202   *) core: Fix startup on IP6-only systems. PR 50592. [Joe Orton,
203      <root linkage white-void net>]
204
205   *) suexec: Add environment variables CONTEXT_DOCUMENT_ROOT, CONTEXT_PREFIX,
206      REDIRECT_ERROR_NOTES, REDIRECT_SCRIPT_FILENAME, REQUEST_SCHEME to the
207      whitelist in suexec. PR 51499. [Graham Laverty <graham reg ca>,
208      Stefan Fritsch]
209
210   *) mod_rewrite: Fix regexp RewriteCond with NoCase. [Stefan Fritsch]
211
212   *) mod_log_debug: New module that allows to log custom messages at various
213      phases in the request processing. [Stefan Fritsch]
214
215   *) mod_ssl: Add some debug logging when loading server certificates.
216      PR 37912. [Nick Burch <nick burch alfresco com>]
217
218   *) configure: Support reallyall option also for --enable-mods-static.
219      [Rainer Jung]
220
221   *) mod_socache_dc: add --with-distcache to configure for choosing
222      the distcache installation directory. [Rainer Jung]
223
224   *) mod_socache_dc: use correct build variable MOD_SOCACHE_DC_LDADD
225      instead of MOD_SOCACHE_LDADD in build macro. [Rainer Jung]
226
227   *) mod_lua, mod_deflate: respect platform specific runpath linker
228      flag. [Rainer Jung]
229
230   *) configure: Only link the httpd binary against PCRE. No other support
231      binary needs PCRE. [Rainer Jung]
232
233   *) configure: tolerate dependency checking failures for modules if
234      they have been enabled implicitely. [Rainer Jung]
235
236   *) configure: Allow to specify module specific custom linker flags via
237      the MOD_XXX_LDADD variables. [Rainer Jung]
238
239 Changes with Apache 2.3.13
240
241   *) ab: Support specifying the local address to use. PR 48930.
242      [Peter Schuller <scode spotify com>]
243
244   *) core: Add support to ErrorLogFormat for logging the system unique
245      thread id under Linux. [Stefan Fritsch]
246
247   *) event: New AsyncRequestWorkerFactor directive to influence how many
248      connections will be accepted per process. [Stefan Fritsch]
249
250   *) prefork, worker, event: Rename MaxClients to MaxRequestWorkers which
251      describes more accurately what it does. [Stefan Fritsch]
252
253   *) rotatelogs: Add -p argument to specify custom program to invoke
254      after a log rotation.  PR 51285. [Sven Ulland <sveniu ifi.uio.no>,
255      Joe Orton]
256
257   *) mod_ssl: Don't do OCSP checks for valid self-issued certs. [Kaspar Brand]
258
259   *) mod_ssl: Avoid unnecessary renegotiations with SSLVerifyDepth 0.
260      PR 48215. [Kaspar Brand]
261
262   *) mod_status: Display information about asynchronous connections in the
263      server-status. PR 44377. [Stefan Fritsch]
264
265   *) mpm_event: If the number of connections of a process is very high, or if
266      all workers are busy, don't accept new connections in that process.
267      [Stefan Fritsch]
268
269   *) mpm_event: Process lingering close asynchronously instead of tying up
270      worker threads. [Jeff Trawick, Stefan Fritsch]
271
272   *) mpm_event: If MaxMemFree is set, limit the number of pools that is kept
273      around. [Stefan Fritsch]
274
275   *) mpm_event: Fix graceful restart aborting connections. PR 43359.
276      [Takashi Sato <takashi lans-tv com>]
277
278   *) mod_ssl: Disable AECDH ciphers in example config. PR 51363.
279      [Rob Stradling <rob comodo com>]
280
281   *) core: Introduce new function ap_get_conn_socket() to access the socket of
282      a connection. [Stefan Fritsch]
283
284   *) mod_data: Introduce a filter to support RFC2397 data URLs. [Graham
285      Leggett]
286
287   *) mod_userdir/mod_alias/mod_vhost_alias: Correctly set DOCUMENT_ROOT,
288      CONTEXT_DOCUMENT_ROOT, CONTEXT_PREFIX. PR 26052. PR 46198.
289      [Stefan Fritsch]
290
291   *) core: Allow to override document_root on a per-request basis. Introduce
292      new context_document_root and context_prefix which provide information
293      about non-global URI-to-directory mappings (from e.g. mod_userdir or
294      mod_alias) to scripts. PR 49705. [Stefan Fritsch]
295
296   *) core: Add <ElseIf> and <Else> to complement <If> sections.
297      [Stefan Fritsch]
298
299   *) mod_ext_filter: Remove DebugLevel option in favor of per-module loglevel.
300      [Stefan Fritsch]
301
302   *) mod_include: Make the "#if expr" element use the new "ap_expr" expression
303      parser. The old parser can still be used by setting the new directive
304      SSILegacyExprParser. [Stefan Fritsch]
305
306   *) core: Add some features to ap_expr for use by mod_include: a restricted
307      mode that does not allow to bypass request access restrictions; new
308      variables DOCUMENT_URI (alias for REQUEST_URI), LAST_MODIFIED; -A as an
309      alias for -U; an additional data entry in ap_expr_eval_ctx_t for use by
310      the consumer; an extensible ap_expr_exec_ctx() API that allows to use that
311      data entry. [Stefan Fritsch]
312
313   *) mod_include: Merge directory configs instead of one SSI* config directive
314      causing all other per-directory SSI* config directives to be reset.
315      [Stefan Fritsch]
316
317   *) mod_charset_lite: Remove DebugLevel option in favour of per-module
318      loglevel. [Stefan Fritsch]
319
320   *) core: Add ap_regexec_len() function that works with non-null-terminated
321      strings. PR 51231. [Yehezkel Horowitz <horowity checkpoint com>]
322
323   *) mod_authnz_ldap: If the LDAP server returns constraint violation,
324      don't treat this as an error but as "auth denied". [Stefan Fritsch]
325
326   *) mod_proxy_fcgi|scgi: Add support for "best guess" of PATH_INFO
327      for SCGI/FCGI. PR 50880, 50851. [Mark Montague <mark catseye.org>,
328      Jim Jagielski]
329
330   *) mod_cache: When content is served stale, and there is no means to
331      revalidate the content using ETag or Last-Modified, and we have
332      mandated no stale-on-error behaviour, stand down and don't cache.
333      Saves a cache write that will never be read.
334      [Graham Leggett]
335
336   *) mod_reqtimeout: Fix a timed out connection going into the keep-alive
337      state after a timeout when discarding a request body. PR 51103.
338      [Stefan Fritsch]
339
340   *) core: Add various file existance test operators to ap_expr.
341      [Stefan Fritsch]
342
343   *) mod_proxy_express: New mass reverse-proxy switch extension for
344      mod_proxy. [Jim Jagielski]
345
346   *) configure: Fix script error when configuring module set "reallyall".
347      [Rainer Jung]
348
349 Changes with Apache 2.3.12
350
351   *) configure, core: Provide easier support for APR's hook probe
352      capability. [Jim Jagielski, Jeff Trawick]
353
354   *) Silence autoconf 2.68 warnings.  [Rainer Jung]
355
356   *) mod_authnz_ldap: Resolve crash when LDAP is used for authorization only
357      [Scott Hill <shill genscape.com>]
358
359   *) support: Make sure check_forensic works with mod_unique_id loaded
360      [Joe Schaefer]
361
362   *) Add child_status hook for tracking creation/termination of MPM child
363      processes.  Add end_generation hook for notification when the last
364      MPM child of a generation exits. [Jeff Trawick]
365
366   *) mod_ldap: Make LDAPSharedCacheSize 0 create a non-shared-memory cache per
367      process as opposed to disabling caching completely. This allows to use
368      the non-shared-memory cache as a workaround for the shared memory cache
369      not being available during graceful restarts. PR 48958. [Stefan Fritsch]
370
371   *) Add new ap_reserve_module_slots/ap_reserve_module_slots_directive API,
372      necessary if a module (like mod_perl) registers additional modules late
373      in the startup phase. [Stefan Fritsch]
374
375   *) core: Prevent segfault if DYNAMIC_MODULE_LIMIT is reached. PR 51072.
376      [Torsten Förtsch <torsten foertsch gmx net>]
377
378   *) WinNT MPM: Improve robustness under heavy load.  [Jeff Trawick]
379
380   *) MinGW build improvements.  PR 49535.  [John Vandenberg
381      <jayvdb gmail.com>, Jeff Trawick]
382
383   *) core: Support module names with colons in loglevel configuration.
384      [Torsten Förtsch <torsten foertsch gmx net>]
385
386   *) mod_ssl, ab: Support OpenSSL compiled without SSLv2 support.
387      [Stefan Fritsch]
388
389   *) core: Abort if the MPM is changed across restart.  [Jeff Trawick]
390
391   *) mod_proxy_ajp: Add support for 'ProxyErrorOverride on'. PR 50945.
392      [Peter Pramberger <peter pramberger.at>, Jim Jagielski]
393
394   *) mod_proxy_fcgi: Add support for 'ProxyErrorOverride on'. PR 50913.
395      [Mark Montague <mark catseye.org>, Jim Jagielski]
396
397   *) core: Change the APIs of ap_cfg_getline() and ap_cfg_getc() to return an
398      error code. Abort with a nice error message if a config line is too long.
399      Partial fix for PR 50824. [Stefan Fritsch]
400
401   *) mod_info: Dump config to stdout during startup if -DDUMP_CONFIG is
402      specified. PR 31956. [Stefan Fritsch]
403
404   *) Restore visibility of DEFAULT_PIDLOG to core and modules.  MPM
405      helper function ap_remove_pid() added.  [Jeff Trawick]
406
407   *) Enable DEFAULT_REL_RUNTIMEDIR on Windows and NetWare.  [various]
408
409   *) Correct C++ incompatibility with http_log.h.  [Stefan Fritsch, Jeff
410      Trawick]
411
412   *) mod_log_config: Prevent segfault. PR 50861. [Torsten Förtsch
413      <torsten.foertsch gmx.net>]
414
415   *) core: AllowEncodedSlashes new option NoDecode to allow encoded slashes
416      in request URL path info but not decode them. Change behavior of option
417      "On" to decode the encoded slashes as 2.0 and 2.2 do.  PR 35256,
418      PR 46830.  [Dan Poirier]
419
420   *) mod_ssl: Check SNI hostname against Host header case-insensitively.
421      PR 49491.  [Mayank Agrawal <magrawal.08 gmail.com>]
422
423   *) mod_ldap: Add LDAPConnectionPoolTTL to give control over lifetime
424      of bound backend LDAP connections.  PR47634 [Eric Covener]
425
426   *) mod_cache: Make CacheEnable and CacheDisable configurable per
427      directory in addition to per server, making them work from within
428      a LocationMatch. [Graham Leggett]
429
430   *) worker, event, prefork: Correct several issues when built as
431      DSOs; most notably, the scoreboard was reinitialized during graceful
432      restart, such that processes of the previous generation were not
433      observable.  [Jeff Trawick]
434
435 Changes with Apache 2.3.11
436
437   *) mod_win32: Added shebang check for '! so that .vbs scripts work as CGI.
438      Win32's cscript interpreter can only use a single quote as comment char.
439      [Guenter Knauf]
440
441   *) mod_proxy: balancer-manager now uses POST instead of GET.
442      [Jim Jagielski]
443
444   *) core: new util function: ap_parse_form_data(). Previously,
445      this capability was tucked away in mod_request. [Jim Jagielski]
446
447   *) core: new hook: ap_run_pre_read_request. [Jim Jagielski]
448
449   *) mod_cache: When a request other than GET or HEAD arrives, we must
450      invalidate existing cache entities as per RFC2616 13.10. PR 15868.
451      [Graham Leggett]
452
453   *) modules: Fix many modules that were not correctly initializing if they
454      were not active during server startup but got enabled later during a
455      graceful restart. [Stefan Fritsch]
456
457   *) core: Create new ap_state_query function that allows modules to determine
458      if the current configuration run is the initial one at server startup,
459      and if the server is started for testing/config dumping only.
460      [Stefan Fritsch]
461
462   *) mod_proxy: Runtime configuration of many parameters for existing
463      balancers via the balancer-manager. [Jim Jagielski]
464
465   *) mod_proxy: Runtime addition of new workers (BalancerMember) for existing
466      balancers via the balancer-manager. [Jim Jagielski]
467
468   *) mod_cache: When a bad Expires date is present, we need to behave as if
469      the Expires is in the past, not as if the Expires is missing. PR 16521.
470      [Co-Advisor <coad@measurement-factory.com>]
471
472   *) mod_cache: We must ignore quoted-string values that appear in a
473      Cache-Control header. PR 50199. [Graham Leggett]
474
475   *) mod_dav: Revert change to send 501 error if unknown Content-* header is
476     received for a PUT request. PR 42978. [Stefan Fritsch]
477
478   *) mod_cache: Respect s-maxage as described by RFC2616 14.9.3, which must
479      take precedence if present. PR 35247. [Graham Leggett]
480
481   *) mod_ssl: Fix a possible startup failure if multiple SSL vhosts
482      are configured with the same ServerName and private key file.
483      [Masahiro Matsuya <mmatsuya redhat.com>, Joe Orton]
484
485   *) mod_socache_dc: Make module compile by fixing some typos.
486      PR 50735 [Mark Montague <mark catseye.org>]
487
488   *) prefork: Update MPM state in children during a graceful stop or
489      restart.  PR 41743.  [Andrew Punch <andrew.punch 247realmedia.com>]
490
491   *) mod_mime: Ignore leading dots when looking for mime extensions.
492      PR 50434 [Stefan Fritsch]
493
494   *) core: Add support to set variables with the 'Define' directive. The
495      variables that can then be used in the config using the ${VAR} syntax
496      known from envvar interpolation. [Stefan Fritsch]
497
498   *) mod_proxy_http: make adding of X-Forwarded-* headers configurable.
499      ProxyAddHeaders defaults to On. [Vincent Deffontaines]
500
501   *) mod_slotmem_shm: Increase memory alignment for slotmem data.
502      [Rainer Jung]
503
504   *) mod_ssl: Add config options for OCSP: SSLOCSPResponderTimeout,
505      SSLOCSPResponseMaxAge, SSLOCSPResponseTimeSkew.
506      [Kaspar Brand <httpd-dev.2011 velox.ch>]
507
508   *) mod_ssl: Revamp output buffering to reduce network overhead for
509      output fragmented into many buckets, such as chunked HTTP responses.
510      [Joe Orton]
511
512   *) core: Apply <If> sections to all requests, not only to file base requests.
513      Allow to use <If> inside <Directory>, <Location>, and <Files> sections.
514      The merging of <If> sections now happens after the merging of <Location>
515      sections, even if an <If> section is embedded inside a <Directory> or
516      <Files> section.  [Stefan Fritsch]
517
518   *) mod_proxy: Refactor usage of shared data by dropping the scoreboard
519      and using slotmem. Create foundation for dynamic growth/changes of
520      members within a balancer. Remove BalancerNonce in favor of a
521      per-balancer 'nonce' parameter. [Jim Jagielski]
522
523   *) mod_status: Don't show slots which are disabled by MaxClients as open.
524      PR: 47022 [Jordi Prats <jordi prats gmail com>, Stefan Fritsch]
525
526   *) mpm_prefork: Fix ap_mpm_query results for AP_MPMQ_MAX_DAEMONS and
527      AP_MPMQ_MAX_THREADS.
528
529   *) mod_authz_core: Fix bug in merging logic if user-based and non-user-based
530      authorization directives were mixed. [Stefan Fritsch]
531
532   *) mod_authn_socache: change directive name from AuthnCacheProvider
533      to AuthnCacheProvideFor.  The term "provider" is overloaded in
534      this module, and we should avoid confusion between the provider
535      of a backend (AuthnCacheSOCache) and the authn provider(s) for
536      which this module provides cacheing (AuthnCacheProvideFor).
537      [Nick Kew]
538
539   *) mod_proxy_http: Allocate the fake backend request from a child pool
540      of the backend connection, instead of misusing the pool of the frontend
541      request. Fixes a thread safety issue where buckets set aside in the
542      backend connection leak into other threads, and then disappear when
543      the frontend request is cleaned up, in turn causing corrupted buckets
544      to make other threads spin. [Graham Leggett]
545
546   *) mod_ssl: Change the format of the SSL_{CLIENT,SERVER}_{I,S}_DN variables
547      to be RFC 2253 compatible, convert non-ASCII characters to UTF8, and
548      escape other special characters with backslashes. The old format can
549      still be used with the LegacyDNStringFormat argument to SSLOptions.
550
551   *) core, mod_rewrite: Make the REQUEST_SCHEME variable available to
552      scripts and mod_rewrite. [Stefan Fritsch]
553
554   *) mod_rewrite: Allow to use arbitrary boolean expressions (ap_expr) in
555      RewriteCond. [Stefan Fritsch]
556
557   *) mod_rewrite: Allow to unset environment variables using E=!VAR.
558      PR 49512. [Mark Drayton <mark markdrayton info>, Stefan Fritsch]
559
560   *) mod_headers: Restore the 2.3.8 and earlier default for the first
561      argument of the Header directive ("onsuccess").  [Eric Covener]
562
563   *) core: Disallow the mixing of relative and absolute Options PR 33708.
564      [Sönke Tesch <st kino-fahrplan.de>]
565
566   *) core: When exporting request headers to HTTP_* environment variables,
567      drop variables whose names contain invalid characters. Describe in the
568      docs how to restore the old behaviour. [Malte S. Stretz <mss apache org>]
569
570   *) core: When selecting an IP-based virtual host, favor an exact match for
571      the port over a wildcard (or omitted) port instead of favoring the one
572      that came first in the configuration file. [Eric Covener]
573
574   *) core: Overlapping virtual host address/port combinations  now implicitly
575      enable name-based virtual hosting for that address.  The NameVirtualHost
576      directive has no effect, and _default_ is interpreted the same as "*".
577      [Eric Covener]
578
579   *) core: In the absence of any Options directives, the default is now
580      "FollowSymlinks" instead of "All".  [Igor Galić]
581
582   *) rotatelogs: Add -e option to write logs through to stdout for optional
583      further processing. [Graham Leggett]
584
585   *) mod_ssl: Correctly read full lines in input filter when the line is
586      incomplete during first read. PR 50481. [Ruediger Pluem]
587
588   *) mod_authz_core: Add AuthzSendForbiddenOnFailure directive to allow
589      sending '403 FORBIDDEN' instead of '401 UNAUTHORIZED' if authorization
590      fails for an authenticated user. PR 40721. [Stefan Fritsch]
591
592 Changes with Apache 2.3.10
593
594   *) mod_rewrite: Don't implicitly URL-escape the original query string
595      when no substitution has changed it. PR 50447. [Eric Covener]
596
597   *) core: Honor 'AcceptPathInfo OFF' during internal redirects,
598      such as per-directory mod_rewrite substitutions.  PR 50349.
599      [Eric Covener]
600
601   *) mod_rewrite: Add 'RewriteOptions InheritBefore' to put the base
602      rules/conditions before the overridden rules/conditions.  PR 39313.
603      [Jérôme Grandjanny <jerome.grandjanny cea.fr>]
604
605   *) mod_autoindex: add IndexIgnoreReset to reset the list of IndexIgnored
606      filenames in higher precedence configuration sections.  PR 24243.
607      [Eric Covener]
608
609   *) mod_cgid: RLimit* directive support for mod_cgid.  PR 42135
610      [Eric Covener]
611
612   *) core: Fail startup when the argument to ServerName looks like a glob
613      or a regular expression instead of a hostname (*?[]).  PR 39863
614      [Rahul Nair <rahul.g.nair gmail.com>]
615
616   *) mod_userdir: Add merging of enable, disable, and filename arguments
617      to UserDir directive, leaving enable/disable of userlists unmerged.
618      PR 44076 [Eric Covener]
619
620   *) httpd: When no -k option is provided on the httpd command line, the server
621      was starting without checking for an existing pidfile.  PR 50350
622      [Eric Covener]
623
624   *) mod_proxy: Put the worker in error state if the SSL handshake with the
625      backend fails. PR 50332.
626      [Daniel Ruggeri <DRuggeri primary.net>, Ruediger Pluem]
627
628   *) mod_cache_disk: Fix Windows build which was broken after renaming
629      the module. [Gregg L. Smith]
630
631 Changes with Apache 2.3.9
632
633   *) SECURITY: CVE-2010-1623 (cve.mitre.org)
634      Fix a denial of service attack against mod_reqtimeout.
635      [Stefan Fritsch]
636
637   *) mod_headers: Change default first argument of Header directive
638      from "onsuccess" to "always". [Eric Covener]
639
640   *) mod_include: Add the onerror attribute to the include element,
641      allowing an URL to be specified to include on error. [Graham
642      Leggett]
643
644   *) mod_cache_disk: mod_disk_cache renamed to mod_cache_disk, to be
645      consistent with the naming of other modules. [Graham Leggett]
646
647   *) mod_setenvif: Add SetEnvIfExpr directive to set env var depending on
648      expression. [Stefan Fritsch]
649
650   *) mod_proxy: Fix ProxyPassInterpolateEnv directive. PR 50292.
651      [Stefan Fritsch]
652
653   *) suEXEC: Add Suexec directive to disable suEXEC without renaming the
654      binary (Suexec Off), or force startup failure if suEXEC is required
655      but not supported (Suexec On).  Change SuexecUserGroup to fail
656      startup instead of just printing a warning if suEXEC is disabled.
657      [Jeff Trawick]
658
659   *) core: Add Error directive for aborting startup or htaccess processing
660      with a specified error message.  [Jeff Trawick]
661
662   *) mod_rewrite: Fix the RewriteEngine directive to work within a
663      location. Previously, once RewriteEngine was switched on globally,
664      it was impossible to switch off. [Graham Leggett]
665
666   *) core, mod_include, mod_ssl: Move the expression parser derived from
667      mod_include back into mod_include. Replace ap_expr with a parser
668      derived from mod_ssl's parser. Make mod_ssl use the new parser. Rework
669      ap_expr's public interface and provide hooks for modules to add variables
670      and functions. [Stefan Fritsch]
671
672   *) core: Do the hook sorting earlier so that the hooks are properly sorted
673      for the pre_config hook and during parsing the config. [Stefan Fritsch]
674
675   *) core: In the absence of any AllowOverride directives, the default is now
676      "None" instead of "All".  PR49823 [Eric Covener]
677
678   *) mod_proxy: Don't allow ProxyPass or ProxyPassReverse in
679      <Directory> or <Files>. PR47765 [Eric Covener]
680
681   *) prefork/worker/event MPMS: default value (when no directive is present)
682      of MaxConnectionsPerChild/MaxRequestsPerChild is changed to 0 from 10000
683      to match default configuration and manual. PR47782 [Eric Covener]
684
685   *) proxy_connect: Don't give up in the middle of a CONNECT tunnel
686      when the child process is starting to exit.  PR50220. [Eric Covener]
687
688   *) mod_autoindex: Fix inheritance of mod_autoindex directives into
689      contexts that don't have any mod_autoindex directives. PR47766.
690      [Eric Covener]
691
692   *) mod_rewrite: Add END flag for RewriteRule to prevent further rounds
693      of rewrite processing when a per-directory substitution occurs.
694      [Eric Covener]
695
696   *) mod_ssl: Make sure to always log an error if loading of CA certificates
697      fails. PR 40312. [Paul Tiemann <issues apache org ourdetour com>]
698
699   *) mod_dav: Send 501 error if unknown Content-* header is received for a PUT
700      request (RFC 2616 9.6). PR 42978. [Stefan Fritsch]
701
702   *) mod_dav: Send 400 error if malformed Content-Range header is received for
703      a put request (RFC 2616 14.16). PR 49825. [Stefan Fritsch]
704
705   *) mod_proxy: Release the backend connection as soon as EOS is detected,
706      so the backend isn't forced to wait for the client to eventually
707      acknowledge the data. [Graham Leggett]
708
709   *) mod_proxy: Optimise ProxyPass within a Location so that it is stored
710      per-directory, and chosen during the location walk. Make ProxyPass
711      work correctly from within a LocationMatch. [Graham Leggett]
712
713   *) core: Fix segfault if per-module LogLevel is on virtual host
714      scope. PR 50117. [Stefan Fritsch]
715
716   *) mod_proxy: Move the ProxyErrorOverride directive to have per
717      directory scope. [Graham Leggett]
718
719   *) mod_allowmethods: New module to deny certain HTTP methods without
720      interfering with authentication/authorization. [Paul Querna,
721      Igor Galić, Stefan Fritsch]
722
723   *) mod_ssl: Log certificate information and improve error message if client
724      cert verification fails. PR 50093, PR 50094. [Lassi Tuura <lat cern ch>,
725      Stefan Fritsch]
726
727   *) htcacheclean: Teach htcacheclean to limit cache size by number of
728      inodes in addition to size of files. Prevents a cache disk from
729      running out of space when many small files are cached.
730      [Graham Leggett]
731
732   *) core: Rename MaxRequestsPerChild to MaxConnectionsPerChild, which
733      describes more accurately what the directive does. The old name
734      still works but logs a warning. [Stefan Fritsch]
735
736   *) mod_cache: Optionally serve stale data when a revalidation returns a
737      5xx response, controlled by the CacheStaleOnError directive.
738      [Graham Leggett]
739
740   *) htcacheclean: Allow the listing of valid URLs within the cache, with
741      the option to list entry metadata such as sizes and times. [Graham
742      Leggett]
743
744   *) mod_cache: correctly parse quoted strings in cache headers.
745      PR 50199 [Nick Kew]
746
747   *) mod_cache: Allow control over the base URL of reverse proxied requests
748      using the CacheKeyBaseURL directive, so that the cache key can be
749      calculated from the endpoint URL instead of the server URL. [Graham
750      Leggett]
751
752   *) mod_cache: CacheLastModifiedFactor, CacheStoreNoStore, CacheStorePrivate,
753      CacheStoreExpired, CacheIgnoreNoLastMod, CacheDefaultExpire,
754      CacheMinExpire and CacheMaxExpire can be set per directory/location.
755      [Graham Leggett]
756
757   *) mod_disk_cache: CacheMaxFileSize, CacheMinFileSize, CacheReadSize and
758      CacheReadTime can be set per directory/location. [Graham Leggett]
759
760   *) core: Speed up config parsing if using a very large number of config
761      files. PR 50002 [andrew cloudaccess net]
762
763   *) mod_cache: Support the caching of HEAD requests. [Graham Leggett]
764
765   *) htcacheclean: Allow the option to round up file sizes to a given
766      block size, improving the accuracy of disk usage. [Graham Leggett]
767
768   *) mod_ssl: Add authz providers for use with mod_authz_core and its
769      RequireAny/RequireAll containers: 'ssl' (equivalent to SSLRequireSSL),
770      'ssl-verify-client' (for use with 'SSLVerifyClient optional'), and
771      'ssl-require' (expressions with same syntax as SSLRequire).
772      [Stefan Fritsch]
773
774   *) mod_ssl: Make the ssl expression parser thread-safe. It now requires
775      bison instead of yacc. [Stefan Fritsch]
776
777   *) mod_disk_cache: Change on-disk header file format to support the
778      link of the device/inode of the data file to the matching header
779      file, and to support the option of not writing a data file when
780      the data file is empty. [Graham Leggett]
781
782   *) core/mod_unique_id: Add generate_log_id hook to allow to use
783      the ID generated by mod_unique_id as error log ID for requests.
784      [Stefan Fritsch]
785
786   *) mod_cache: Make sure that we never allow a 304 Not Modified response
787      that we asked for to leak to the client should the 304 response be
788      uncacheable. PR45341 [Graham Leggett]
789
790   *) mod_cache: Add the cache_status hook to register the final cache
791      decision hit/miss/revalidate. Add optional support for an X-Cache
792      and/or an X-Cache-Detail header to add the cache status to the
793      response. PR48241 [Graham Leggett]
794
795   *) mod_authz_host: Add 'local' provider that matches connections originating
796      on the local host. PR 19938. [Stefan Fritsch]
797
798   *) Event MPM: Fix crash accessing pollset on worker thread when child
799      process is exiting.  [Jeff Trawick]
800
801   *) core: For process invocation (cgi, fcgid, piped loggers and so forth)
802      pass the system library path (LD_LIBRARY_PATH or platform-specific
803      variables) along with the system PATH, by default.  Both should be
804      overridden together as desired using PassEnv etc; see mod_env.
805      [William Rowe]
806
807   *) mod_cache: Introduce CacheStoreExpired, to allow administrators to
808      capture a stale backend response, perform If-Modified-Since requests
809      against the backend, and serving from the cache all 304 responses.
810      This restores pre-2.2.4 cache behavior.  [William Rowe]
811
812   *) mod_rewrite: Introduce <=, >= string comparison operators, and integer
813      comparators -lt, -le, -eq, -ge, and -gt.  To help bash users and drop
814      the ambiguity of the symlink test "-ltest", introduce -h or -L as
815      symlink test operators.  [William Rowe]
816
817   *) mod_cache: Give the cache provider the opportunity to choose to cache
818      or not cache based on the buckets present in the brigade, such as the
819      presence of a FILE bucket.
820      [Graham Leggett]
821
822   *) mod_authz_core: Allow authz providers to check args while reading the
823      config and allow to cache parsed args. Move 'all' and 'env' authz
824      providers from mod_authz_host to mod_authz_core. Add 'method' authz
825      provider depending on the HTTP method.  [Stefan Fritsch]
826
827   *) mod_include: Move the request_rec within mod_include to be
828      exposed within include_ctx_t. [Graham Leggett]
829
830   *) mod_include: Reinstate support for UTF-8 character sets by allowing a
831      variable being echoed or set to be decoded and then encoded as separate
832      steps. PR47686 [Graham Leggett]
833
834   *) mod_cache: Add a discrete commit_entity() provider function within the
835      mod_cache provider interface which is called to indicate to the
836      provider that caching is complete, giving the provider the opportunity
837      to commit temporary files permanently to the cache in an atomic
838      fashion. Replace the inconsistent use of error cleanups with a formal
839      set of pool cleanups attached to a subpool, which is destroyed on error.
840      [Graham Leggett]
841
842   *) mod_cache: Change the signature of the store_body() provider function
843      within the mod_cache provider interface to support an "in" brigade
844      and an "out" brigade instead of just a single input brigade. This
845      gives a cache provider the option to consume only part of the brigade
846      passed to it, rather than the whole brigade as was required before.
847      This fixes an out of memory and a request timeout condition that would
848      occur when the original document was a large file. Introduce
849      CacheReadSize and CacheReadTime directives to mod_disk_cache to control
850      the amount of data to attempt to cache at a time. [Graham Leggett]
851
852   *) core: Add ErrorLogFormat to allow configuring error log format, including
853      additional information that is logged once per connection or request. Add
854      error log IDs for connections and request to allow correlating error log
855      lines and the corresponding access log entry. [Stefan Fritsch]
856
857   *) core: Disable sendfile by default. [Stefan Fritsch]
858
859   *) mod_cache: Check the request to determine whether we are allowed
860      to return cached content at all, and respect a "Cache-Control:
861      no-cache" header from a client. Previously, "no-cache" would
862      behave like "max-age=0". [Graham Leggett]
863
864   *) mod_cache: Use a proper filter context to hold filter data instead
865      of misusing the per-request configuration. Fixes a segfault on trunk
866      when the normal handler is used. [Graham Leggett]
867
868   *) mod_cgid: Log a warning if the ScriptSock path is truncated because
869      it is too long. PR 49388.  [Stefan Fritsch]
870
871   *) vhosts: Do not allow _default_ in NameVirtualHost, or mixing *
872      and non-* ports on NameVirtualHost, or multiple NameVirtualHost
873      directives for the same address:port, or NameVirtualHost
874      directives with no matching VirtualHosts, or multiple ip-based
875      VirtualHost sections for the same address:port.  These were
876      previously accepted with a warning, but the behavior was
877      undefined.  [Dan Poirier]
878
879   *) mod_remoteip: Fix a segfault when using mod_remoteip in conjunction with
880      Allow/Deny. PR 49838.  [Andrew Skalski <voltara gmail.com>]
881
882   *) core: DirectoryMatch can now match on the end of line character ($),
883      and sub-directories of matched directories are no longer implicitly
884      matched.  PR49809 [Eric Covener]
885
886   *) Regexps: introduce new higher-level regexp utility including parsing
887      and executing perl-style regexp ops (e.g s/foo/bar/i) and regexp memory
888      [Nick Kew]
889
890   *) Proxy: support setting source address.  PR 29404
891      [Multiple contributors iterating through bugzilla,
892       Aron Ujvari <xanco nikhok.hu>, Aleksey Midenkov <asm uezku.kemsu.ru>,
893       <dan listening-station.net; trunk version Nick Kew]
894
895   *) HTTP protocol: return 400 not 503 if we have to abort due to malformed
896      chunked encoding. [Nick Kew]
897
898 Changes with Apache 2.3.8
899
900   *) suexec: Support large log files. PR 45856. [Stefan Fritsch]
901
902   *) core: Abort with sensible error message if no or more than one MPM is
903      loaded. [Stefan Fritsch]
904
905   *) mod_proxy: Rename erroronstatus to failonstatus.
906      [Daniel Ruggeri <DRuggeri primary.net>]
907
908   *) mod_dav_fs: Fix broken "creationdate" property.
909      Regression in version 2.3.7. [Rainer Jung]
910
911 Changes with Apache 2.3.7
912
913   *) SECURITY: CVE-2010-1452 (cve.mitre.org)
914      mod_dav, mod_cache, mod_session: Fix Handling of requests without a path
915      segment. PR: 49246 [Mark Drayton, Jeff Trawick]
916
917   *) mod_ldap: Properly check the result returned by apr_ldap_init. PR 46076.
918      [Stefan Fritsch]
919
920   *) mod_rewrite: Log errors if rewrite map files cannot be opened. PR 49639.
921      [Stefan Fritsch]
922
923   *) mod_proxy_http: Support the 'ping' property for backend HTTP/1.1 servers
924      via leveraging 100-Continue as the initial "request".
925      [Jim Jagielski]
926
927   *) core/mod_authz_core: Introduce new access_checker_ex hook that enables
928      mod_authz_core to bypass authentication if access should be allowed by
929      IP address/env var/... [Stefan Fritsch]
930
931   *) core: Introduce note_auth_failure hook to allow modules to add support
932      for additional auth types. This makes ap_note_auth_failure() work with
933      mod_auth_digest again. PR 48807. [Stefan Fritsch]
934
935   *) socache modules: return APR_NOTFOUND when a lookup is not found [Nick Kew]
936
937   *) mod_authn_socache: new module [Nick Kew]
938
939   *) configure: Add reallyall option for --enable-mods-shared. [Stefan Fritsch]
940
941   *) Fix Windows build when using VC6. [Gregg L. Smith <lists glewis com>]
942
943   *) mod_rewrite: Allow to set environment variables without explicitly
944      giving a value. [Rainer Jung]
945
946   *) mod_rewrite: Remove superfluous EOL from rewrite logging. [Rainer Jung]
947
948   *) mod_include: recognise "text/html; parameters" as text/html
949      PR 49616 [Andrey Chernov <ache nagual.pp.ru>]
950
951   *) CGI vars: allow PATH to be set by SetEnv, consistent with LD_LIBRARY_PATH
952      PR 43906 [Nick Kew]
953
954   *) Core: Extra robustness: don't try authz and segfault if authn
955      fails to set r->user.  Log bug and return 500 instead.
956      PR 42995 [Nick Kew]
957
958   *) HTTP protocol filter: fix handling of longer chunk extensions
959      PR 49474 [<tee.bee gmx.de>]
960
961   *) Update SSL cipher suite and add example for SSLHonorCipherOrder.
962      [Lars Eilebrecht, Rainer Jung]
963
964   *) move AddOutputFilterByType from core to mod_filter.  This should
965      fix nasty side-effects that happen when content_type is set
966      more than once in processing a request, and make it fully
967      compatible with dynamic and proxied contents. [Nick Kew]
968
969   *) mod_log_config: Implement logging for sub second timestamps and
970      request end time.  [Rainer Jung]
971
972 Changes with Apache 2.3.6
973
974   *) SECURITY: CVE-2009-3555 (cve.mitre.org)
975      mod_ssl: Comprehensive fix of the TLS renegotiation prefix injection
976      attack when compiled against OpenSSL version 0.9.8m or later. Introduces
977      the 'SSLInsecureRenegotiation' directive to reopen this vulnerability
978      and offer unsafe legacy renegotiation with clients which do not yet
979      support the new secure renegotiation protocol, RFC 5746.
980      [Joe Orton, and with thanks to the OpenSSL Team]
981
982   *) SECURITY: CVE-2009-3555 (cve.mitre.org)
983      mod_ssl: A partial fix for the TLS renegotiation prefix injection attack
984      by rejecting any client-initiated renegotiations. Forcibly disable
985      keepalive for the connection if there is any buffered data readable. Any
986      configuration which requires renegotiation for per-directory/location
987      access control is still vulnerable, unless using OpenSSL >= 0.9.8l.
988      [Joe Orton, Ruediger Pluem, Hartmut Keil <Hartmut.Keil adnovum.ch>]
989
990   *) SECURITY: CVE-2010-0408 (cve.mitre.org)
991      mod_proxy_ajp: Respond with HTTP_BAD_REQUEST when the body is not sent
992      when request headers indicate a request body is incoming; not a case of
993      HTTP_INTERNAL_SERVER_ERROR.  [Niku Toivola <niku.toivola sulake.com>]
994
995   *) SECURITY: CVE-2010-0425 (cve.mitre.org)
996      mod_isapi: Do not unload an isapi .dll module until the request
997      processing is completed, avoiding orphaned callback pointers.
998      [Brett Gervasoni <brettg senseofsecurity.com>, Jeff Trawick]
999
1000   *) core: Filter init functions are now run strictly once per request
1001      before handler invocation.  The init functions are no longer run
1002      for connection filters.  PR 49328.  [Joe Orton]
1003
1004   *) core: Adjust the output filter chain correctly in an internal
1005      redirect from a subrequest, preserving filters from the main
1006      request as necessary.  PR 17629.  [Joe Orton]
1007
1008   *) mod_cache: Explicitly allow cache implementations to cache a 206 Partial
1009      Response if they so choose to do so. Previously an attempt to cache a 206
1010      was arbitrarily allowed if the response contained an Expires or
1011      Cache-Control header, and arbitrarily denied if both headers were missing.
1012      [Graham Leggett]
1013
1014   *) core: Add microsecond timestamp fractions, process id and thread id
1015      to the error log. [Rainer Jung]
1016
1017   *) configure: The "most" module set gets build by default.  [Rainer Jung]
1018
1019   *) configure: Building dynamic modules (DSO) by default.  [Rainer Jung]
1020
1021   *) configure: Fix broken VPATH build when using included APR.
1022      [Rainer Jung]
1023
1024   *) mod_session_crypto: Fix configure problem when building
1025      with APR 2 and for VPATH builds with included APR.
1026      [Rainer Jung]
1027
1028   *) mod_session_crypto: API compatibility with APR 2 crypto and
1029      APR Util 1.x crypto. [Rainer Jung]
1030
1031   *) ab: Fix memory leak with -v2 and SSL. PR 49383.
1032      [Pavel Kankovsky <peak argo troja mff cuni cz>]
1033
1034   *) core: Add per-module and per-directory loglevel configuration.
1035            Add some more trace logging.
1036      mod_rewrite: Replace RewriteLog/RewriteLogLevel with trace log levels.
1037      mod_ssl: Replace LogLevelDebugDump with trace log levels.
1038      mod_ssl/mod_proxy*: Adjust loglevels to be less verbose at levels info
1039            and debug.
1040      mod_dumpio:  Replace DumpIOLogLevel with trace log levels.
1041      [Stefan Fritsch]
1042
1043   *) mod_ldap: LDAP caching was suppressed (and ldap-status handler returns
1044      title page only) when any mod_ldap directives were used in VirtualHost
1045      context.  [Eric Covener]
1046
1047   *) mod_disk_cache: Decline the opportunity to cache if the response is
1048      a 206 Partial Content. This stops a reverse proxied partial response
1049      from becoming cached, and then being served in subsequent responses.
1050      [Graham Leggett]
1051
1052   *) mod_deflate: avoid the risk of forwarding data before headers are set.
1053      PR 49369 [Matthew Steele <mdsteele google.com>]
1054
1055   *) mod_authnz_ldap: Ensure nested groups are checked when the
1056      top-level group doesn't have any direct non-group members
1057      of attributes in AuthLDAPGroupAttribute. [Eric Covener]
1058
1059   *) mod_authnz_ldap: Search or Comparison during authorization phase
1060      can use the credentials from the authentication phase
1061      (AuthLDAPSearchAsUSer,AuthLDAPCompareAsUser).
1062      PR 48340 [Domenico Rotiroti, Eric Covener]
1063
1064   *) mod_authnz_ldap: Allow the initial DN search during authentication
1065      to use the HTTP username/pass instead of an anonymous or hard-coded
1066      LDAP id (AuthLDAPInitialBindAsUser, AuthLDAPInitialBindPattern).
1067      [Eric Covener]
1068
1069   *) mod_authnz_ldap: Publish requested LDAP data with an AUTHORIZE_ prefix
1070      when this module is used for authorization. See AuthLDAPAuthorizePrefix.
1071      PR 45584 [Eric Covener]
1072
1073   *) apxs -q: Stop filtering out ':' characters from the reported values.
1074      PR 45343.  [Bill Cole]
1075
1076   *) prefork MPM: Work around possible crashes on child exit in APR reslist
1077      cleanup code.  PR 43857.  [Tom Donovan]
1078
1079   *) ab: fix number of requests sent by ab when keepalive is enabled.  PR 48497.
1080      [Bryn Dole <dole blekko.com>]
1081
1082   *) Log an error for failures to read a chunk-size, and return 408 instead of
1083      413 when this is due to a read timeout.  This change also fixes some cases
1084      of two error documents being sent in the response for the same scenario.
1085      [Eric Covener] PR49167
1086
1087   *) mod_proxy_balancer: Add new directive BalancerNonce to allow admin
1088      to control/set the nonce used in the balancer-manager application.
1089      [Jim Jagielski]
1090
1091   *) mod_proxy_connect: Support port ranges in AllowConnect. PR 23673.
1092      [Stefan Fritsch]
1093
1094   *) Proxy balancer: support setting error status according to HTTP response
1095      code from a backend.  PR 48939.  [Daniel Ruggeri <DRuggeri primary.net>]
1096
1097   *) htcacheclean: Introduce the ability to clean specific URLs from the
1098      cache, if provided as an optional parameter on the command line.
1099      [Graham Leggett]
1100
1101   *) core: Introduce the IncludeStrict directive, which explicitly fails
1102      server startup if no files or directories match a wildcard path.
1103      [Graham Leggett]
1104
1105   *) htcacheclean: Report additional statistics about entries deleted.
1106      PR 48944. [Mark Drayton mark markdrayton.info]
1107
1108   *) Introduce SSLFIPS directive to support OpenSSL FIPS_mode; permits all
1109      builds of mod_ssl to use 'SSLFIPS off' for portability, but the proper
1110      build of openssl is required for 'SSLFIPS on'.  PR 46270.
1111      [Dr Stephen Henson <steve openssl.org>, William Rowe]
1112
1113   *) mod_proxy_http: Log the port of the remote server in various messages.
1114      PR 48812. [Igor Galić <i galic brainsware org>]
1115
1116   *) mod_reqtimeout: Do not wrongly enforce timeouts for mod_proxy's backend
1117      connections and other protocol handlers (like mod_ftp). [Stefan Fritsch]
1118
1119   *) mod_proxy_ajp: Really regard the operation a success, when the client
1120      aborted the connection. In addition adjust the log message if the client
1121      aborted the connection. [Ruediger Pluem]
1122
1123   *) mod_ssl: Add the 'SSLInsecureRenegotiation' directive, which
1124      allows insecure renegotiation with clients which do not yet
1125      support the secure renegotiation protocol.  [Joe Orton]
1126
1127   *) mod_ssl: Fix a potential I/O hang if a long list of trusted CAs
1128      is configured for client cert auth. PR 46952.  [Joe Orton]
1129
1130   *) core: Only log a 408 if it is no keepalive timeout. PR 39785
1131      [Ruediger Pluem,  Mark Montague <markmont umich.edu>]
1132
1133   *) support/rotatelogs: Add -L option to create a link to the current
1134      log file.  PR 48761 [<lyndon orthanc.ca>, Dan Poirier]
1135
1136   *) mod_ldap: Update LDAPTrustedClientCert to consistently be a per-directory
1137      setting only, matching most of the documentation and examples.
1138      PR 46541 [Paul Reder, Eric Covener]
1139
1140   *) mod_ldap: LDAPTrustedClientCert now accepts CA_DER/CA_BASE64 argument
1141      types previously allowed only in LDAPTrustedGlobalCert. [Eric Covener]
1142
1143   *) mod_negotiation: Preserve query string over multiviews negotiation.
1144      This buglet was fixed for type maps in 2.2.6, but the same issue
1145      affected multiviews and was overlooked.
1146      PR 33112 [Joergen Thomsen <apache jth.net>]
1147
1148   *) mod_ldap: Eliminate a potential crash with multiple LDAPTrustedClientCert
1149      when some are not password-protected. [Eric Covener]
1150
1151   *) Fix startup segfault when the Mutex directive is used but no loaded
1152      modules use httpd mutexes.  PR 48787.  [Jeff Trawick]
1153
1154   *) Proxy: get the headers right in a HEAD request with
1155      ProxyErrorOverride, by checking for an overridden error
1156      before not after going into a catch-all code path.
1157      PR 41646.  [Nick Kew, Stuart Children]
1158
1159   *) support/rotatelogs: Support the simplest log rotation case, log
1160      truncation. Useful when the log is being processed in real time
1161      using a command like tail. [Graham Leggett]
1162
1163   *) support/htcacheclean: Teach it how to write a pid file (modelled on
1164      httpd's writing of a pid file) so that it becomes possible to run
1165      more than one instance of htcacheclean on the same machine.
1166      [Graham Leggett]
1167
1168   *) Log command line on startup, so there's a record of command line
1169      arguments like -f.  PR 48752.  [Dan Poirier]
1170
1171   *) Introduce mod_reflector, a handler capable of reflecting POSTed
1172      request bodies back within the response through the output filter
1173      stack. Can be used to turn an output filter into a web service.
1174      [Graham Leggett]
1175
1176   *) mod_proxy_http: Make sure that when an ErrorDocument is served
1177      from a reverse proxied URL, that the subrequest respects the status
1178      of the original request. This brings the behaviour of proxy_handler
1179      in line with default_handler. PR 47106. [Graham Leggett]
1180
1181   *) Support wildcards in both the directory and file components of
1182      the path specified by the Include directive. [Graham Leggett]
1183
1184   *) mod_proxy, mod_proxy_http: Support remote https proxies
1185      by using HTTP CONNECT.  PR 19188.
1186      [Philippe Dutrueux <lilas evidian.com>, Rainer Jung]
1187
1188   *) apxs: Fix -A and -a options to ignore whitespace in httpd.conf
1189      [Philip M. Gollucci]
1190
1191   *) worker: Don't report server has reached MaxClients until it has.
1192      Add message when server gets within MinSpareThreads of MaxClients.
1193      PR 46996.  [Dan Poirier]
1194
1195   *) mod_session: Session expiry was being initialised, but not updated
1196      on each session save, resulting in timed out sessions when there
1197      should not have been. Fixed. [Graham Leggett]
1198
1199   *) mod_log_config: Add the R option to log the handler used within the
1200      request. [Christian Folini <christian.folini netnea com>]
1201
1202   *) mod_include: Allow fine control over the removal of Last-Modified and
1203      ETag headers within the INCLUDES filter, making it possible to cache
1204      responses if desired. Fix the default value of the SSIAccessEnable
1205      directive.  [Graham Leggett]
1206
1207   *) Add new UnDefine directive to undefine a variable. PR 35350.
1208      [Stefan Fritsch]
1209
1210   *) Make ap_pregsub(), used by AliasMatch and friends, use the same syntax
1211      for regex backreferences as mod_rewrite and mod_include: Remove the use
1212      of '&' as an alias for '$0' and allow to escape any character with a
1213      backslash. PR 48351. [Stefan Fritsch]
1214
1215   *) mod_authnz_ldap: If AuthLDAPCharsetConfig is set, also convert the
1216      password to UTF-8. PR 45318.
1217      [Johannes Müller <joh_m gmx.de>, Stefan Fritsch]
1218
1219   *) ab: Fix calculation of requests per second in HTML output. PR 48594.
1220      [Stefan Fritsch]
1221
1222   *) mod_authnz_ldap: Failures to map a username to a DN, or to check a user
1223      password now result in an informational level log entry instead of
1224      warning level.  [Eric Covener]
1225
1226 Changes with Apache 2.3.5
1227
1228   *) SECURITY: CVE-2010-0434 (cve.mitre.org)
1229      Ensure each subrequest has a shallow copy of headers_in so that the
1230      parent request headers are not corrupted.  Eliminates a problematic
1231      optimization in the case of no request body.  PR 48359
1232      [Jake Scott, William Rowe, Ruediger Pluem]
1233
1234   *) Turn static function get_server_name_for_url() into public
1235      ap_get_server_name_for_url() and use it where appropriate. This
1236      fixes mod_rewrite generating invalid URLs for redirects to IPv6
1237      literal addresses. [Stefan Fritsch]
1238
1239   *) mod_ldap: Introduce new config option LDAPTimeout to set the timeout
1240      for LDAP operations like bind and search. [Stefan Fritsch]
1241
1242   *) mod_proxy, mod_proxy_ftp: Move ProxyFtpDirCharset from mod_proxy to
1243      mod_proxy_ftp. [Takashi Sato]
1244
1245   *) mod_proxy, mod_proxy_connect: Move AllowCONNECT from mod_proxy to
1246      mod_proxy_connect. [Takashi Sato]
1247
1248   *) mod_cache: Do an exact match of the keys defined by
1249      CacheIgnoreURLSessionIdentifiers against the querystring instead of
1250      a partial match.  PR 48401.
1251      [Dodou Wang <wangdong.08 gmail.com>, Ruediger Pluem]
1252
1253   *) mod_proxy_balancer: Fix crash in balancer-manager. [Rainer Jung]
1254
1255   *) Core HTTP: disable keepalive when the Client has sent
1256      Expect: 100-continue
1257      but we respond directly with a non-100 response.
1258      Keepalive here led to data from clients continuing being treated as
1259      a new request.
1260      PR 47087 [Nick Kew]
1261
1262   *) Core: reject NULLs in request line or request headers.
1263      PR 43039 [Nick Kew]
1264
1265   *) Core: (re)-introduce -T commandline option to suppress documentroot
1266      check at startup.
1267      PR 41887 [Jan van den Berg <janvdberg gmail.com>]
1268
1269   *) mod_autoindex: support XHTML as equivalent to HTML in IndexOptions,
1270                     ScanHTMLTitles, ReadmeName, HeaderName
1271      PR 48416 [Dmitry Bakshaev <dab18 izhnet.ru>, Nick Kew]
1272
1273   *) Proxy: Fix ProxyPassReverse with relative URL
1274      Derived (slightly erroneously) from PR 38864 [Nick Kew]
1275
1276   *) mod_headers: align Header Edit with Header Set when used on Content-Type
1277      PR 48422 [Cyril Bonté <cyril.bonte free.fr>, Nick Kew>]
1278
1279   *) mod_headers: Enable multi-match-and-replace edit option
1280      PR 46594 [Nick Kew]
1281
1282   *) mod_filter: enable it to act on non-200 responses.
1283      PR 48377 [Nick Kew]
1284
1285 Changes with Apache 2.3.4
1286
1287   *) Replace AcceptMutex, LockFile, RewriteLock, SSLMutex, SSLStaplingMutex,
1288      and WatchdogMutexPath with a single Mutex directive.  Add APIs to
1289      simplify setup and user customization of APR proc and global mutexes.
1290      (See util_mutex.h.)  Build-time setting DEFAULT_LOCKFILE is no longer
1291      respected; set DEFAULT_REL_RUNTIMEDIR instead.  [Jeff Trawick]
1292
1293   *) http_core: KeepAlive no longer accepts other than On|Off.
1294      [Takashi Sato]
1295
1296   *) mod_dav: Remove errno from dav_error interface.  Calls to dav_new_error()
1297      and dav_new_error_tag() must be adjusted to add an apr_status_t parameter.
1298      [Jeff Trawick]
1299
1300   *) mod_authnz_ldap: Add AuthLDAPBindAuthoritative to allow Authentication to
1301      try other providers in the case of an LDAP bind failure.
1302      PR 46608 [Justin Erenkrantz, Joe Schaefer, Tony Stevenson]
1303
1304   *) Build: fix --with-module to work as documented
1305      PR 43881 [Gez Saunders <gez.saunders virgin.net>]
1306
1307 Changes with Apache 2.3.3
1308
1309   *) SECURITY: CVE-2009-3095 (cve.mitre.org)
1310      mod_proxy_ftp: sanity check authn credentials.
1311      [Stefan Fritsch <sf fritsch.de>, Joe Orton]
1312
1313   *) SECURITY: CVE-2009-3094 (cve.mitre.org)
1314      mod_proxy_ftp: NULL pointer dereference on error paths.
1315      [Stefan Fritsch <sf fritsch.de>, Joe Orton]
1316   *) mod_ssl: enable support for ECC keys and ECDH ciphers.  Tested against
1317      OpenSSL 1.0.0b3.  [Vipul Gupta <vipul.gupta sun.com>, Sander Temme]
1318
1319   *) mod_dav: Include uri when logging a PUT error due to connection abort.
1320      PR 38149. [Stefan Fritsch]
1321
1322   *) mod_dav: Return 409 instead of 500 for a LOCK request if the parent
1323      resource does not exist or is not a collection. PR 43465. [Stefan Fritsch]
1324
1325   *) mod_dav_fs: Return 409 instead of 500 for Litmus test case copy_nodestcoll
1326      (a COPY request where the parent of the destination resource does not
1327      exist). PR 39299. [Stefan Fritsch]
1328
1329   *) mod_dav_fs: Don't delete the whole file if a PUT with content-range failed.
1330      PR 42896. [Stefan Fritsch]
1331
1332   *) mod_dav_fs: Make PUT create files atomically and no longer destroy the
1333      old file if the transfer aborted. PR 39815. [Paul Querna, Stefan Fritsch]
1334
1335   *) mod_dav_fs: Remove inode keyed locking as this conflicts with atomically
1336      creating files. On systems with inode numbers, this is a format change of
1337      the DavLockDB. The old DavLockDB must be deleted on upgrade.
1338      [Stefan Fritsch]
1339
1340   *) mod_log_config: Make ${cookie}C correctly match whole cookie names
1341      instead of substrings. PR 28037. [Dan Franklin <dan dan-franklin.com>,
1342      Stefan Fritsch]
1343
1344   *) vhost: A purely-numeric Host: header should not be treated as a port.
1345      PR 44979 [Nick Kew]
1346
1347   *) mod_ldap: Avoid 500 errors with "Unable to set LDAP_OPT_REFHOPLIMIT option to 5"
1348      when built against openldap by using SDK LDAP_OPT_REFHOPLIMIT defaults unless
1349      LDAPReferralHopLimit is explicitly configured.
1350      [Eric Covener]
1351
1352   *) mod_charset_lite: Honor 'CharsetOptions NoImplicitAdd'.
1353      [Eric Covener]
1354
1355   *) mod_ssl: Add support for OCSP Stapling.  PR 43822.
1356      [Dr Stephen Henson <shenson oss-institute.org>]
1357
1358   *) mod_socache_shmcb: Allow parens in file name if cache size is given.
1359      Fixes SSLSessionCache directive mis-parsing parens in pathname.
1360      PR 47945. [Stefan Fritsch]
1361
1362   *) htpasswd: Improve out of disk space handling. PR 30877. [Stefan Fritsch]
1363
1364   *) htpasswd: Use MD5 hash by default on all platforms. [Stefan Fritsch]
1365
1366   *) mod_sed: Reduce memory consumption when processing very long lines.
1367      PR 48024 [Basant Kumar Kukreja <basant.kukreja sun.com>]
1368
1369   *) ab: Fix segfault in case the argument for -n is a very large number.
1370      PR 47178. [Philipp Hagemeister <oss phihag.de>]
1371
1372   *) Allow ProxyPreserveHost to work in <Proxy> sections. PR 34901.
1373      [Stefan Fritsch]
1374
1375   *) configure: Fix THREADED_MPMS so that mod_cgid is enabled again
1376      for worker MPM. [Takashi Sato]
1377
1378   *) mod_dav: Provide a mechanism to obtain the request_rec and pathname
1379      from the dav_resource. [Jari Urpalainen <jari.urpalainen nokia.com>,
1380      Brian France <brian brianfrance.com>]
1381
1382   *) Build: Use install instead of cp if available on installing
1383      modules to avoid segmentation fault. PR 47951. [hirose31 gmail.com]
1384
1385   *) mod_cache: correctly consider s-maxage in cacheability
1386      decisions.  [Dan Poirier]
1387
1388   *) mod_logio/core: Report more accurate byte counts in mod_status if
1389      mod_logio is loaded. PR 25656. [Stefan Fritsch]
1390
1391   *) mod_ldap: If LDAPSharedCacheSize is too small, try harder to purge
1392      some cache entries and log a warning. Also increase the default
1393      LDAPSharedCacheSize to 500000. This is a more realistic size suitable
1394      for the default values of 1024 for LdapCacheEntries/LdapOpCacheEntries.
1395      PR 46749. [Stefan Fritsch]
1396
1397   *) mod_rewrite: Make sure that a hostname:port isn't fully qualified if
1398      the request is a CONNECT request. [Bill Zajac <billz consultla.com>]
1399
1400   *) mod_cache: Teach CacheEnable and CacheDisable to work from within a
1401      Location section, in line with how ProxyPass works. [Graham Leggett]
1402
1403   *) mod_reqtimeout: New module to set timeouts and minimum data rates for
1404      receiving requests from the client. [Stefan Fritsch]
1405
1406   *) core: Fix potential memory leaks by making sure to not destroy
1407      bucket brigades that have been created by earlier filters.
1408      [Stefan Fritsch]
1409
1410   *) core, mod_deflate, mod_sed: Reduce memory usage by reusing bucket
1411      brigades in several places. [Stefan Fritsch]
1412
1413   *) mod_cache: Fix uri_meets_conditions() so that CacheEnable will
1414      match by scheme, or by a wildcarded hostname. PR 40169
1415      [Peter Grandi <pg_asf asf.for.sabi.co.uk>, Graham Leggett]
1416
1417   *) suxec: Allow to log an error if exec fails by setting FD_CLOEXEC
1418      on the log file instead of closing it. PR 10744. [Nicolas Rachinsky]
1419
1420   *) mod_mime: Make RemoveType override the info from TypesConfig.
1421      PR 38330. [Stefan Fritsch]
1422
1423   *) mod_cache: Introduce the option to run the cache from within the
1424      normal request handler, and to allow fine grained control over
1425      where in the filter chain content is cached. [Graham Leggett]
1426
1427   *) core: Treat timeout reading request as 408 error, not 400.
1428      Log 408 errors in access log as was done in Apache 1.3.x.
1429      PR 39785 [Nobutaka Mantani <nobutaka nobutaka.org>,
1430      Stefan Fritsch <sf fritsch.de>, Dan Poirier]
1431
1432   *) mod_ssl: Reintroduce SSL_CLIENT_S_DN, SSL_CLIENT_I_DN, SSL_SERVER_S_DN,
1433      SSL_SERVER_I_DN back to the environment variables to be set by mod_ssl.
1434      [Peter Sylvester <peter.sylvester edelweb.fr>]
1435
1436   *) mod_disk_cache: don't cache incomplete responses, per RFC 2616, 13.8.
1437      PR15866.  [Dan Poirier]
1438
1439   *) ab: ab segfaults in verbose mode on https sites
1440      PR46393.  [Ryan Niebur]
1441
1442   *) mod_dav: Allow other modules to become providers and add resource types
1443      to the DAV response. [Jari Urpalainen <jari.urpalainen nokia.com>,
1444      Brian France <brian brianfrance.com>]
1445
1446   *) mod_dav: Allow other modules to add things to the DAV or Allow headers
1447      of an OPTIONS request. [Jari Urpalainen <jari.urpalainen nokia.com>,
1448      Brian France <brian brianfrance.com>]
1449
1450   *) core: Lower memory usage of core output filter.
1451      [Stefan Fritsch <sf sfritsch.de>]
1452
1453   *) mod_mime: Detect invalid use of MultiviewsMatch inside Location and
1454      LocationMatch sections.  PR47754. [Dan Poirier]
1455
1456   *) mod_request: Make sure the KeptBodySize directive rejects values
1457      that aren't valid numbers. [Graham Leggett]
1458
1459   *) mod_session_crypto: Sanity check should the potentially encrypted
1460      session cookie be too short. [Graham Leggett]
1461
1462   *) mod_session.c: Prevent a segfault when session is added but not
1463      configured. [Graham Leggett]
1464
1465   *) htcacheclean: 19 ways to fail, 1 error message. Fixed. [Graham Leggett]
1466
1467   *) mod_auth_digest: Fail server start when nonce count checking
1468      is configured without shared memory, or md5-sess algorithm is
1469      configured. [Dan Poirier]
1470
1471   *) mod_proxy_connect: The connect method doesn't work if the client is
1472      connecting to the apache proxy through an ssl socket. Fixed.
1473      PR29744. [Brad Boyer, Mark Cave-Ayland, Julian Gilbey, Fabrice Durand,
1474      David Gence, Tim Dodge, Per Gunnar Hans, Emmanuel Elango,
1475      Kevin Croft, Rudolf Cardinal]
1476
1477   *) mod_ssl: The error message when SSLCertificateFile is missing should
1478      at least give the name or position of the problematic virtual host
1479      definition. [Stefan Fritsch sf sfritsch.de]
1480
1481   *) mod_auth_digest: Fix null pointer when qop=none. [Dan Poirier]
1482
1483   *) Add support for HTTP PUT to ab. [Jeff Barnes <jbarnesweb yahoo.com>]
1484
1485   *) mod_headers: generalise the envclause to support expression
1486      evaluation with ap_expr parser [Nick Kew]
1487
1488   *) mod_cache: Introduce the thundering herd lock, a mechanism to keep
1489      the flood of requests at bay that strike a backend webserver as
1490      a cached entity goes stale. [Graham Leggett]
1491
1492   *) mod_auth_digest: Fix usage of shared memory and re-enable it.
1493      PR 16057 [Dan Poirier]
1494
1495   *) Preserve Port information over internal redirects
1496      PR 35999 [Jonas Ringh <jonas.ringh cixit.se>]
1497
1498   *) Proxy: unable to connect to a backend is SERVICE_UNAVAILABLE,
1499      rather than BAD_GATEWAY or (especially) NOT_FOUND.
1500      PR 46971 [evanc nortel.com]
1501
1502   *) Various modules: Do better checking of pollset operations in order to
1503      avoid segmentation faults if they fail. PR 46467
1504      [Stefan Fritsch <sf sfritsch.de>]
1505
1506   *) mod_autoindex: Correctly create an empty cell if the description
1507      for a file is missing. PR 47682 [Peter Poeml <poeml suse.de>]
1508
1509   *) ab: Fix broken error messages after resolver or connect() failures.
1510      [Jeff Trawick]
1511
1512   *) SECURITY: CVE-2009-1890 (cve.mitre.org)
1513      Fix a potential Denial-of-Service attack against mod_proxy in a
1514      reverse proxy configuration, where a remote attacker can force a
1515      proxy process to consume CPU time indefinitely.  [Nick Kew, Joe Orton]
1516
1517   *) SECURITY: CVE-2009-1191 (cve.mitre.org)
1518      mod_proxy_ajp: Avoid delivering content from a previous request which
1519      failed to send a request body. PR 46949 [Ruediger Pluem]
1520
1521   *) htdbm: Fix possible buffer overflow if dbm database has very
1522      long values.  PR 30586 [Dan Poirier]
1523
1524   *) core: Return APR_EOF if request body is shorter than the length announced
1525      by the client. PR 33098 [ Stefan Fritsch <sf sfritsch.de>]
1526
1527   *) mod_suexec: correctly set suexec_enabled when httpd is run by a
1528      non-root user and may have insufficient permissions.
1529      PR 42175 [Jim Radford <radford blackbean.org>]
1530
1531   *) mod_ssl: Fix SSL_*_DN_UID variables to use the 'userID' attribute
1532      type.  PR 45107.  [Michael Ströder <michael stroeder.com>,
1533      Peter Sylvester <peter.sylvester edelweb.fr>]
1534
1535   *) mod_proxy_http: fix case sensitivity checking transfer encoding
1536      PR 47383 [Ryuzo Yamamoto <ryuzo.yamamoto gmail.com>]
1537
1538   *) mod_alias: ensure Redirect issues a valid URL.
1539      PR 44020 [HÃ¥kon Stordahl <hakon stordahl.org>]
1540
1541   *) mod_dir: add FallbackResource directive, to enable admin to specify
1542      an action to happen when a URL maps to no file, without resorting
1543      to ErrorDocument or mod_rewrite.  PR 47184 [Nick Kew]
1544
1545   *) mod_cgid: Do not leak the listening Unix socket file descriptor to the
1546      CGI process. PR 47335 [Kornél Pál <kornelpal gmail.com>]
1547
1548   *) mod_rewrite: Remove locking for writing to the rewritelog.
1549      PR 46942 [Dan Poirier <poirier pobox.com>]
1550
1551   *) mod_alias: check sanity in Redirect arguments.
1552      PR 44729 [Sönke Tesch <st kino-fahrplan.de>, Jim Jagielski]
1553
1554   *) mod_proxy_http: fix Host: header for literal IPv6 addresses.
1555      PR 47177 [Carlos Garcia Braschi <cgbraschi gmail.com>]
1556
1557   *) mod_cache: Add CacheIgnoreURLSessionIdentifiers directive to ignore
1558      defined session identifiers encoded in the URL when caching.
1559      [Ruediger Pluem]
1560
1561   *) mod_rewrite: Fix the error string returned by RewriteRule.
1562      RewriteRule returned "RewriteCond: bad flag delimiters" when the 3rd
1563      argument of RewriteRule was not started with "[" or not ended with "]".
1564      PR 45082 [Vitaly Polonetsky <m_vitaly topixoft.com>]
1565
1566   *) Windows: Fix usage message.
1567      [Rainer Jung]
1568
1569   *) apachectl: When passing through arguments to httpd in
1570      non-SysV mode, use the "$@" syntax to preserve arguments.
1571      [Eric Covener]
1572
1573   *) mod_dbd: add DBDInitSQL directive to enable SQL statements to
1574      be run when a connection is opened.  PR 46827
1575      [Marko Kevac <mkevac gmail.com>]
1576
1577   *) mod_cgid: Improve handling of long AF_UNIX socket names (ScriptSock).
1578      PR 47037.  [Jeff Trawick]
1579
1580   *) mod_proxy_ajp: Check more strictly that the backend follows the AJP
1581      protocol. [Mladen Turk]
1582
1583   *) mod_proxy_ajp: Forward remote port information by default.
1584      [Rainer Jung]
1585
1586   *) Allow MPMs to be loaded dynamically, as with most other modules.  Use
1587      --enable-mpms-shared={list|"all"} to enable.  This required changes to
1588      the MPM interfaces.  Removed: mpm.h, mpm_default.h (as an installed
1589      header), APACHE_MPM_DIR, MPM_NAME, ap_threads_per_child,
1590      ap_max_daemons_limit, ap_my_generation, etc.  ap_mpm_query() can't be
1591      called until after the register-hooks phase.  [Jeff Trawick]
1592
1593   *) mod_ssl: Add SSLProxyCheckPeerExpire and SSLProxyCheckPeerCN directives
1594      to enable stricter checking of remote server certificates.
1595      [Ruediger Pluem]
1596
1597   *) ab: Fix a 100% CPU loop on platforms where a failed non-blocking connect
1598      returns EINPROGRESS and a subsequent poll() returns only POLLERR.
1599      Observed on HP-UX.  [Eric Covener]
1600
1601   *) Remove broken support for BeOS, TPF, and even older platforms such
1602      as A/UX, Next, and Tandem.  [Jeff Trawick]
1603
1604   *) mod_proxy_ftp: Add ProxyFtpListOnWildcard directive to allow files with
1605      globbing characters to be retrieved instead of converted into a
1606      directory listing.  PR 46789 [Dan Poirier <poirier pobox.com>]
1607
1608   *) Provide ap_retained_data_create()/ap_retained_data_get() for preservation
1609      of module state across unload/load.  [Jeff Trawick]
1610
1611   *) mod_substitute: Fix a memory leak. PR 44948
1612      [Dan Poirier <poirier pobox.com>]
1613
1614 Changes with Apache 2.3.2
1615
1616   *) mod_mime_magic: Fix detection of compressed content. [Rainer Jung]
1617
1618   *) mod_negotiation: Escape pathes of filenames in 406 responses to avoid
1619      HTML injections and HTTP response splitting.  PR 46837.
1620      [Geoff Keating <geoffk apple.com>]
1621
1622   *) mod_ssl: add support for type-safe STACK constructs in OpenSSL
1623      development HEAD.  PR 45521.  [Kaspar Brand, Sander Temme]
1624
1625   *) ab: Fix maintenance of the pollset to resolve EALREADY errors
1626      with kqueue (BSD/OS X) and excessive CPU with event ports (Solaris).
1627      PR 44584.  Use APR_POLLSET_NOCOPY for better performance with some
1628      pollset implementations.  [Jeff Trawick]
1629
1630   *) mod_disk_cache: The module now turns off sendfile support if
1631      'EnableSendfile off' is defined globally. [Lars Eilebrecht]
1632
1633   *) mod_deflate: Adjust content metadata before bailing out on 304
1634      responses so that the metadata does not differ from 200 response.
1635      [Roy T. Fielding]
1636
1637   *) mod_deflate: Fix creation of invalid Etag headers. We now make sure
1638      that the Etag value is properly quoted when adding the gzip marker.
1639      PR 39727, 45023. [Lars Eilebrecht, Roy T. Fielding]
1640
1641   *) Added 20x22 icons for ODF, SVG, and XML documents.  PR 37185.
1642      [Peter Harlow]
1643
1644   *) Disabled DefaultType directive and removed ap_default_type()
1645      from core.  We now exclude Content-Type from responses for which
1646      a media type has not been configured via mime.types, AddType,
1647      ForceType, or some other mechanism. PR 13986. [Roy T. Fielding]
1648
1649   *) mod_rewrite: Add IPV6 variable to RewriteCond
1650      [Ryan Phillips <ryan-apache trolocsis.com>]
1651
1652   *) core: Enhance KeepAliveTimeout to support a value in milliseconds.
1653      PR 46275. [Takashi Sato]
1654
1655   *) rotatelogs: Allow size units B, K, M, G and combination of
1656      time and size based rotation. [Rainer Jung]
1657
1658   *) rotatelogs: Add flag for verbose (debug) output. [Rainer Jung]
1659
1660   *) mod_ssl: Fix merging of SSLRenegBufferSize directive. PR 46508
1661      [<tlhackque yahoo.com>]
1662
1663   *) core: Translate the the status line to ASCII on EBCDIC platforms in
1664      ap_send_interim_response() and for locally generated "100 Continue"
1665      responses.  [Eric Covener]
1666
1667   *) prefork: Fix child process hang during graceful restart/stop in
1668      configurations with multiple listening sockets.  PR 42829.  [Joe Orton,
1669      Jeff Trawick]
1670
1671   *) mod_session_crypto: Ensure that SessionCryptoDriver can only be
1672      set in the global scope. [Graham Leggett]
1673
1674   *) mod_ext_filter: We need to detect failure to startup the filter
1675      program (a mangled response is not acceptable).  Fix to detect
1676      failure, and offer configuration option either to abort or
1677      to remove the filter and continue.
1678      PR 41120 [Nick Kew]
1679
1680   *) mod_session_crypto: Rewrite the session_crypto module against the
1681      apr_crypto API. [Graham Leggett]
1682
1683   *) mod_auth_form: Fix a pool lifetime issue, don't remove the subrequest
1684      until the main request is cleaned up. [Graham Leggett]
1685
1686 Changes with Apache 2.3.1
1687
1688   *) ap_slotmem: Add in new slot-based memory access API impl., including
1689      2 providers (mod_sharedmem and mod_plainmem) [Jim Jagielski,
1690      Jean-Frederic Clere, Brian Akins <brian.akins turner.com>]
1691
1692   *) mod_include: support generating non-ASCII characters as entities in SSI
1693      PR 25202 [Nick Kew]
1694
1695   *) core/utils: Enhance ap_escape_html API to support escaping non-ASCII chars
1696      PR 25202 [Nick Kew]
1697
1698   *) mod_rewrite: fix "B" flag breakage by reverting r5589343
1699     PR 45529 [Bob Ionescu <bobsiegen googlemail.com>]
1700
1701   *) CGI: return 504 (Gateway timeout) rather than 500 when a script
1702      times out before returning status line/headers.
1703      PR 42190 [Nick Kew]
1704
1705   *) mod_cgid: fix segfault problem on solaris.
1706      PR 39332 [Masaoki Kobayashi <masaoki techfirm.co.jp>]
1707
1708   *) mod_proxy_scgi: Added. [André Malo]
1709
1710   *) mod_cache: Introduce 'no-cache' per-request environment variable
1711      to prevent the saving of an otherwise cacheable response.
1712      [Eric Covener]
1713
1714   *) mod_rewrite: Introduce DiscardPathInfo|DPI flag to stop the troublesome
1715      way that per-directory rewrites append the previous notion of PATH_INFO
1716      to each substitution before evaluating subsequent rules.
1717      PR 38642 [Eric Covener]
1718
1719   *) mod_cgid: Do not add an empty argument when calling the CGI script.
1720      PR 46380 [Ruediger Pluem]
1721
1722   *) scoreboard: Remove unused sb_type from process_score.
1723      [Torsten Foertsch <torsten.foertsch gmx.net>, Chris Darroch]
1724
1725   *) mod_ssl: Add SSLRenegBufferSize directive to allow changing the
1726      size of the buffer used for the request-body where necessary
1727      during a per-dir renegotiation.  PR 39243.  [Joe Orton]
1728
1729   *) mod_proxy_fdpass: New module to pass a client connection over to a separate
1730      process that is reading from a unix daemon socket.
1731
1732   *) mod_ssl: Improve environment variable extraction to be more
1733      efficient and to correctly handle DNs with duplicate tags.
1734      PR 45975.  [Joe Orton]
1735
1736   *) Remove the obsolete serial attribute from the RPM spec file. Compile
1737      against the external pcre. Add missing binaries fcgistarter, and
1738      mod_socache* and mod_session*. [Graham Leggett]
1739
1740 Changes with Apache 2.3.0
1741
1742   *) mod_ratelimit: New module to do bandwidth rate limiting. [Paul Querna]
1743
1744   *) Remove X-Pad header which was added as a work around to a bug in
1745      Netscape 2.x to 4.0b2. [Takashi Sato <takashi lans-tv.com>]
1746
1747   *) Add DTrace Statically Defined Tracing (SDT) probes.
1748     [Theo Schlossnagle <jesus omniti.com>, Paul Querna]
1749
1750   *) mod_proxy_balancer: Move all load balancing implementations
1751      as individual, self-contained mod_proxy submodules under
1752      modules/proxy/balancers [Jim Jagielski]
1753
1754   *) Rename APIs to include ap_ prefix:
1755         find_child_by_pid -> ap_find_child_by_pid
1756         suck_in_APR -> ap_suck_in_APR
1757         sys_privileges_handlers -> ap_sys_privileges_handlers
1758         unixd_accept -> ap_unixd_accept
1759         unixd_config -> ap_unixd_config
1760         unixd_killpg -> ap_unixd_killpg
1761         unixd_set_global_mutex_perms -> ap_unixd_set_global_mutex_perms
1762         unixd_set_proc_mutex_perms -> ap_unixd_set_proc_mutex_perms
1763         unixd_set_rlimit -> ap_unixd_set_rlimit
1764      [Paul Querna]
1765
1766   *) mod_lbmethod_heartbeat: New module to load balance mod_proxy workers
1767      based on heartbeats. [Paul Querna]
1768
1769   *) mod_heartmonitor: New module to collect heartbeats, and write out a file
1770      so that other modules can load balance traffic as needed. [Paul Querna]
1771
1772   *) mod_heartbeat: New module to generate multicast heartbeats to know if a
1773      server is online. [Paul Querna]
1774
1775   *) mod_buffer: Honour the flush bucket and flush the buffer in the
1776      input filter. Make sure that metadata buckets are written to
1777      the buffer, not to the final brigade. [Graham Leggett]
1778
1779   *) mod_buffer: Optimise the buffering of heap buckets when the heap
1780      buckets stay exactly APR_BUCKET_BUFF_SIZE long. [Graham Leggett,
1781      Ruediger Pluem]
1782
1783   *) mod_buffer: Optional support for buffering of the input and output
1784      filter stacks. Can collapse many small buckets into fewer larger
1785      buckets, and prevents excessively small chunks being sent over
1786      the wire. [Graham Leggett]
1787
1788   *) mod_privileges: new module to make httpd on Solaris privileges-aware
1789      and to enable different virtualhosts to run with different
1790      privileges and Unix user/group IDs [Nick Kew]
1791
1792   *) mod_mem_cache: this module has been removed. [William Rowe]
1793
1794   *) authn/z: Remove mod_authn_default and mod_authz_default.
1795      [Chris Darroch]
1796
1797   *) authz: Fix handling of authz configurations, make default authz
1798      logic replicate 2.2.x authz logic, and replace <Satisfy*>, Reject,
1799      and AuthzMergeRules directives with Match, <Match*>, and AuthzMerge
1800      directives.  [Chris Darroch]
1801
1802   *) mod_authn_core: Prevent crash when provider alias created to
1803      provider which is not yet registered.  [Chris Darroch]
1804
1805   *) mod_authn_core: Add AuthType of None to support disabling
1806      authentication.  [Chris Darroch]
1807
1808   *) core: Allow <Limit> and <LimitExcept> directives to nest, and
1809      constrain their use to conform with that of other access control
1810      and authorization directives.  [Chris Darroch]
1811
1812   *) unixd: turn existing code into a module, and turn the set user/group
1813      and chroot into a child_init function. [Nick Kew]
1814
1815   *) mod_dir: Support "DirectoryIndex disabled"
1816      Suggested By André Warnier <aw ice-sa.com> [Eric Covener]
1817
1818   *) mod_ssl: Send Content-Type application/ocsp-request for POST requests to
1819      OSCP responders. PR 46014 [Dr Stephen Henson <steve openssl.org>]
1820
1821   *) mod_authnz_ldap: don't return NULL-valued environment variables to
1822      other modules.  PR 39045 [Francois Pesce <francois.pesce gmail.com>]
1823
1824   *) Don't adjust case in pathname components that are not of interest
1825      to mod_mime.  Fixes mod_negotiation's use of such components.
1826      PR 43250 [Basant Kumar Kukreja <basant.kukreja sun.com>]
1827
1828   *) Be tolerant in what you accept - accept slightly broken
1829      status lines from a backend provided they include a valid status code.
1830      PR 44995 [Rainer Jung <rainer.jung kippdata.de>]
1831
1832   *) New module mod_sed: filter Request/Response bodies through sed
1833      [Basant Kumar Kukreja <basant.kukreja sun.com>]
1834
1835   *) mod_auth_form: Make sure that basic authentication is correctly
1836      faked directly after login. [Graham Leggett]
1837
1838   *) mod_session_cookie, mod_session_dbd: Make sure cookies are set both
1839      within the output headers and error output headers, so that the
1840      session is maintained across redirects. [Graham Leggett]
1841
1842   *) mod_auth_form: Make sure the logged in user is populated correctly
1843      after a form login. Fixes a missing REMOTE_USER variable directly
1844      following a login. [Graham Leggett]
1845
1846   *) mod_session_cookie: Make sure that cookie attributes are correctly
1847      included in the blank cookie when cookies are removed. This fixes an
1848      inability to log out when using mod_auth_form. [Graham Leggett]
1849
1850   *) mod_session: Prevent a segfault when a CGI script sets a cookie with a
1851      null value. [David Shane Holden <dpejesh apache.org>]
1852
1853   *) core, authn/z: Determine registered authn/z providers directly in
1854      ap_setup_auth_internal(), which allows optional functions that just
1855      wrapped ap_list_provider_names() to be removed from authn/z modules.
1856      [Chris Darroch]
1857
1858   *) authn/z: Convert common provider version strings to macros.
1859      [Chris Darroch]
1860
1861   *) core: When testing for slash-terminated configuration paths in
1862      ap_location_walk(), don't look past the start of an empty string
1863      such as that created by a <Location ""> directive.
1864      [Chris Darroch]
1865
1866   *) core, mod_proxy: If a kept_body is present, it becomes safe for
1867      subrequests to support message bodies. Make sure that safety
1868      checks within the core and within the proxy are not triggered
1869      when kept_body is present. This makes it possible to embed
1870      proxied POST requests within mod_include. [Graham Leggett]
1871
1872   *) mod_auth_form: Make sure the input filter stack is properly set
1873      up before reading the login form. Make sure the kept body filter
1874      is correctly inserted to ensure the body can be read a second
1875      time safely should the authn be successful. [Graham Leggett,
1876      Ruediger Pluem]
1877
1878   *) mod_request: Insert the KEPT_BODY filter via the insert_filter
1879      hook instead of during fixups. Add a safety check to ensure the
1880      filters cannot be inserted more than once. [Graham Leggett,
1881      Ruediger Pluem]
1882
1883   *) ap_cache_cacheable_headers_out() will (now) always
1884      merge an error headers _before_ clearing them and _before_
1885      merging in the actual entity headers and doing normal
1886      hop-by-hop cleansing. [Dirk-Willem van Gulik].
1887
1888   *) cache: retire ap_cache_cacheable_hdrs_out() which was used
1889      for both in- and out-put headers; and replace it by a single
1890      ap_cache_cacheable_headers() wrapped in a in- and out-put
1891      specific ap_cache_cacheable_headers_in()/out(). The latter
1892      which will also merge error and ensure content-type. To keep
1893      cache modules consistent with ease. This API change bumps
1894      up the minor MM by one [Dirk-Willem van Gulik].
1895
1896   *) Move the KeptBodySize directive, kept_body filters and the
1897      ap_parse_request_body function out of the http module and into a
1898      new module called mod_request, reducing the size of the core.
1899      [Graham Leggett]
1900
1901   *) mod_dbd: Handle integer configuration directive parameters with a
1902      dedicated function.
1903
1904   *) Change the directives within the mod_session* modules to be valid
1905      both inside and outside the location/directory sections, as
1906      suggested by wrowe. [Graham Leggett]
1907
1908   *) mod_auth_form: Add a module capable of allowing end users to log
1909      in using an HTML form, storing the credentials within mod_session.
1910      [Graham Leggett]
1911
1912   *) Add a function to the http filters that is able to parse an HTML
1913      form request with the type of application/x-www-form-urlencoded.
1914      [Graham Leggett]
1915
1916   *) mod_session_crypto: Initialise SSL in the post config hook.
1917      [Ruediger Pluem, Graham Leggett]
1918
1919   *) mod_session_dbd: Add a session implementation capable of storing
1920      session information in a SQL database via the dbd interface. Useful
1921      for sites where session privacy is important. [Graham Leggett]
1922
1923   *) mod_session_crypto: Add a session encoding implementation capable
1924      of encrypting and decrypting sessions wherever they may be stored.
1925      Introduces a level of privacy when sessions are stored on the
1926      browser. [Graham Leggett]
1927
1928   *) mod_session_cookie: Add a session implementation capable of storing
1929      session information within cookies on the browser. Useful for high
1930      volume sites where server bound sessions are too resource intensive.
1931      [Graham Leggett]
1932
1933   *) mod_session: Add a generic session interface to unify the different
1934      attempts at saving persistent sessions across requests.
1935      [Graham Leggett]
1936
1937   *) core, authn/z: Avoid calling access control hooks for internal requests
1938      with configurations which match those of initial request.  Revert to
1939      original behaviour (call access control hooks for internal requests
1940      with URIs different from initial request) if any access control hooks or
1941      providers are not registered as permitting this optimization.
1942      Introduce wrappers for access control hook and provider registration
1943      which can accept additional mode and flag data.  [Chris Darroch]
1944
1945   *) Introduced ap_expr API for expression evaluation.
1946      This is adapted from mod_include, which is the first module
1947      to use the new API.
1948      [Nick Kew]
1949
1950   *) mod_authz_dbd: When redirecting after successful login/logout per
1951      AuthzDBDRedirectQuery, do not report authorization failure, and use
1952      first row returned by database query instead of last row.
1953      [Chris Darroch]
1954
1955   *) mod_ldap: Correctly return all requested attribute values
1956      when some attributes have a null value.
1957      PR 44560 [Anders Kaseorg <anders kaseorg.com>]
1958
1959   *) core: check symlink ownership if both FollowSymlinks and
1960      SymlinksIfOwnerMatch are set [Nick Kew]
1961
1962   *) core: fix origin checking in SymlinksIfOwnerMatch
1963      PR 36783 [Robert L Mathews <rob-apache.org.bugs tigertech.net>]
1964
1965   *) Activate mod_cache, mod_file_cache and mod_disk_cache as part of the
1966      'most' set for '--enable-modules' and '--enable-shared-mods'. Include
1967      mod_mem_cache in 'all' as well. [Dirk-Willem van Gulik]
1968
1969   *) Also install mod_so.h, mod_rewrite.h and mod_cache.h; as these
1970      contain public function declarations which are useful for
1971      third party module authors. PR 42431 [Dirk-Willem van Gulik].
1972
1973   *) mod_dir, mod_negotiation: pass the output filter information
1974      to newly created sub requests; as these are later on used
1975      as true requests with an internal redirect. This allows for
1976      mod_cache et.al. to trap the results of the redirect.
1977      [Dirk-Willem van Gulik, Ruediger Pluem]
1978
1979   *) mod_ldap: Add support (taking advantage of the new APR capability)
1980      for ldap rebind callback while chasing referrals. This allows direct
1981      searches on LDAP servers (in particular MS Active Directory 2003+)
1982      using referrals without the use of the global catalog.
1983      PRs 26538, 40268, and 42557 [Paul J. Reder]
1984
1985   *) ApacheMonitor.exe: Introduce --kill argument for use by the
1986      installer.  This will permit the installation tool to remove
1987      all running instances before attempting to remove the .exe.
1988      [William Rowe]
1989
1990   *) mod_ssl: Add support for OCSP validation of client certificates.
1991      PR 41123.  [Marc Stern <marc.stern approach.be>, Joe Orton]
1992
1993   *) mod_serf: New module for Reverse Proxying. [Paul Querna]
1994
1995   *) core: Add the option to keep aside a request body up to a certain
1996      size that would otherwise be discarded, to be consumed by filters
1997      such as mod_include. When enabled for a directory, POST requests
1998      to shtml files can be passed through to embedded scripts as POST
1999      requests, rather being downgraded to GET requests. [Graham Leggett]
2000
2001   *) mod_ssl: Fix TLS upgrade (RFC 2817) support.  PR 41231.  [Joe Orton]
2002
2003   *) scoreboard: Correctly declare ap_time_process_request.
2004      PR 43789 [Tom Donovan <Tom.Donovan acm.org>]
2005
2006   *) core; scoreboard: ap_get_scoreboard_worker(sbh) now takes the sbh member
2007      from the connection rec, ap_get_scoreboard_worker(proc, thread) will now
2008      provide the unusual legacy lookup.  [William Rowe]
2009
2010   *) mpm winnt: fix null pointer dereference
2011      PR 42572 [Davi Arnaut]
2012
2013   *) mod_authnz_ldap, mod_authn_dbd: Tidy up the code to expose authn
2014      parameters to the environment. Improve portability to
2015      EBCDIC machines by using apr_toupper(). [Martin Kraemer]
2016
2017   *) mod_ldap, mod_authnz_ldap: Add support for nested groups (i.e. the ability
2018      to authorize an authenticated user via a "require ldap-group X" directive
2019      where the user is not in group X, but is in a subgroup contained in X.
2020      PR 42891 [Paul J. Reder]
2021
2022   *) mod_ssl: Add support for caching SSL Sessions in memcached. [Paul Querna]
2023
2024   *) apxs: Enhance -q flag to print all known variables and their values
2025      when invoked without variable name(s).
2026      [William Rowe, Sander Temme]
2027
2028   *) apxs: Eliminate run-time check for mod_so.  PR 40653.
2029      [David M. Lee <dmlee crossroads.com>]
2030
2031   *) beos MPM: Create pmain pool and run modules' child_init hooks when
2032      entering ap_mpm_run(), then destroy pmain when exiting ap_mpm_run().
2033      [Chris Darroch]
2034
2035   *) netware MPM: Destroy pmain pool when exiting ap_mpm_run() so that
2036      cleanups registered in modules' child_init hooks are performed.
2037      [Chris Darroch]
2038
2039   *) Fix issue which could cause error messages to be written to access logs
2040      on Win32.  PR 40476.  [Tom Donovan <Tom.Donovan acm.org>]
2041
2042   *) The LockFile directive, which specifies the location of
2043      the accept() mutex lockfile, is deprecated. Instead, the
2044      AcceptMutex directive now takes an optional lockfile
2045      location parameter, ala SSLMutex. [Jim Jagielski]
2046
2047   *) mod_authn_dbd: Export any additional columns queried in the SQL select
2048      into the environment with the name AUTHENTICATE_<COLUMN>. This brings
2049      mod_authn_dbd behaviour in line with mod_authnz_ldap. [Graham Leggett]
2050
2051   *) mod_dbd: Key the storage of prepared statements on the hex string
2052      value of server_rec, rather than the server name, as the server name
2053      may change (eg when the server name is set) at any time, causing
2054      weird behaviour in modules dependent on mod_dbd. [Graham Leggett]
2055
2056   *) mod_proxy_fcgi: Added win32 build. [Mladen Turk]
2057
2058   *) sendfile_nonblocking() takes the _brigade_ as an argument, gets
2059      the first bucket from the brigade, finds it not to be a FILE
2060      bucket and barfs. The fix is to pass a bucket rather than a brigade.
2061      [Niklas Edmundsson <nikke acc.umu.se>]
2062
2063   *) mod_rewrite: support rewritemap by SQL query [Nick Kew]
2064
2065   *) ap_get_server_version() has been removed.  Third-party modules must
2066      now use ap_get_server_banner() or ap_get_server_description().
2067      [Jeff Trawick]
2068
2069   *) All MPMs: Introduce a check_config phase between pre_config and
2070      open_logs, to allow modules to review interdependent configuration
2071      directive values and adjust them while messages can still be logged
2072      to the console.  Handle relevant MPM directives during this phase
2073      and format messages for both the console and the error log, as
2074      appropriate.  [Chris Darroch]
2075
2076   *) core: Do not allow internal redirects like the DirectoryIndex of mod_dir
2077      to circumvent the symbolic link checks imposed by FollowSymLinks and
2078      SymLinksIfOwnerMatch. [Nick Kew, Ruediger Pluem, William Rowe]
2079
2080   *) New SSLLogLevelDebugDump [ None (default) | IO (not bytes) | Bytes ]
2081      configures the I/O Dump of SSL traffic, when LogLevel is set to Debug.
2082      The default is none as this is far greater debugging resolution than
2083      the typical administrator is prepared to untangle.  [William Rowe]
2084
2085   *) mod_disk_cache: If possible, check if the size of an object to cache is
2086      within the configured boundaries before actually saving data.
2087      [Niklas Edmundsson <nikke acc.umu.se>]
2088
2089   *) Worker and event MPMs: Remove improper scoreboard updates which were
2090      performed in the event of a fork() failure.  [Chris Darroch]
2091
2092   *) Add support for fcgi:// proxies to mod_rewrite.
2093      [Markus Schiegl <ms schiegl.com>]
2094
2095   *) Remove incorrect comments from scoreboard.h regarding conditional
2096      loading of worker_score structure with mod_status, and remove unused
2097      definitions relating to old life_status field.
2098      [Chris Darroch <chrisd pearsoncmg.com>]
2099
2100   *) Remove allocation of memory for unused array of lb_score pointers
2101      in ap_init_scoreboard().  [Chris Darroch <chrisd pearsoncmg.com>]
2102
2103   *) Add mod_proxy_fcgi, a FastCGI back end for mod_proxy.
2104      [Garrett Rooney, Jim Jagielski, Paul Querna]
2105
2106   *) Event MPM: Fill in the scoreboard's tid field. PR 38736.
2107      [Chris Darroch <chrisd pearsoncmg.com>]
2108
2109   *) mod_charset_lite: Remove Content-Length when output filter can
2110      invalidate it.  Warn when input filter can invalidate it.
2111      [Jeff Trawick]
2112
2113   *) Authz: Add the new module mod_authn_core that will provide common
2114      authn directives such as 'AuthType', 'AuthName'.  Move the directives
2115      'AuthType' and 'AuthName' out of the core module and merge mod_authz_alias
2116      into mod_authn_core. [Brad Nicholes]
2117
2118   *) Authz: Move the directives 'Order', 'Allow', 'Deny' and 'Satisfy'
2119      into the new module mod_access_compat which can be loaded to provide
2120      support for these directives.
2121      [Brad Nicholes]
2122
2123   *) Authz: Move the 'Require' directive from the core module as well as
2124      add the directives '<SatisfyAll>', '<SatisfyOne>', '<RequireAlias>'
2125      and 'Reject' to mod_authz_core. The new directives introduce 'AND/OR'
2126      logic into the authorization processing. [Brad Nicholes]
2127
2128   *) Authz: Add the new module mod_authz_core which acts as the
2129      authorization provider vector and contains common authz
2130      directives. [Brad Nicholes]
2131
2132   *) Authz: Renamed mod_authz_dbm authz providers from 'group' and
2133      'file-group' to 'dbm-group' and 'dbm-file-group'. [Brad Nicholes]
2134
2135   *) Authz: Added the new authz providers 'env', 'ip', 'host', 'all' to handle
2136      host-based access control provided by mod_authz_host and invoked
2137      through the 'Require' directive. [Brad Nicholes]
2138
2139   *) Authz: Convert all of the authz modules from hook based to
2140      provider based. [Brad Nicholes]
2141
2142   *) mod_cache: Add CacheMinExpire directive to set the minimum time in
2143      seconds to cache a document.
2144      [Brian Akins <brian.akins turner.com>, Ruediger Pluem]
2145
2146   *) mod_authz_dbd: SQL authz with Login/Session support [Nick Kew]
2147
2148   *) Fix typo in ProxyStatus syntax error message.
2149      [Christophe Jaillet <christophe.jaillet wanadoo.fr>]
2150
2151   *) Asynchronous write completion for the Event MPM.  [Brian Pane]
2152
2153   *) Added an End-Of-Request bucket type.  The logging of a request and
2154      the freeing of its pool are now done when the EOR bucket is destroyed.
2155      This has the effect of delaying the logging until right after the last
2156      of the response is sent; ap_core_output_filter() calls the access logger
2157      indirectly when it destroys the EOR bucket.  [Brian Pane]
2158
2159   *) Rewrite of logresolve support utility: IPv6 addresses are now supported
2160      and the format of statistical output has changed. [Colm MacCarthaigh]
2161
2162   *) Rewrite of ap_coreoutput_filter to do nonblocking writes  [Brian Pane]
2163
2164   *) Added new connection states for handler and write completion
2165      [Brian Pane]
2166
2167   *) mod_cgid: Refuse to work on Solaris 10 due to OS bugs.  PR 34264.
2168      [Justin Erenkrantz]
2169
2170   *) Teach mod_ssl to use arbitrary OIDs in an SSLRequire directive,
2171      allowing string-valued client certificate attributes to be used for
2172      access control, as in: SSLRequire "value" in OID("1.3.6.1.4.1.18060.1")
2173      [Martin Kraemer, David Reid]
2174
2175   [Apache 2.3.0-dev includes those bug fixes and changes with the
2176    Apache 2.2.xx tree as documented, and except as noted, below.]
2177
2178 Changes with Apache 2.2.x and later:
2179
2180   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/CHANGES?view=markup
2181
2182 Changes with Apache 2.0.x and later:
2183
2184   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.0.x/CHANGES?view=markup
2185