]> granicus.if.org Git - apache/blob - CHANGES
Drop an invalid Last-Modified header value returned by a FCGI/CGI
[apache] / CHANGES
1                                                          -*- coding: utf-8 -*-
2 Changes with Apache 2.5.0
3
4   *) core: Drop an invalid Last-Modified header value coming
5      from a FCGI/CGI script instead of replacing it with Unix epoch.
6      [Luca Toscano]
7
8   *) mod_dav: Allow other modules to become providers and add ACLs
9      to the DAV response.
10      [Jari Urpalainen <jari.urpalainen nokia.com>, Graham Leggett]
11
12   *) mod_dav: Add dav_begin_multistatus, dav_send_one_response,
13      dav_finish_multistatus, dav_send_multistatus, dav_handle_err,
14      dav_failed_proppatch, dav_success_proppatch to mod_dav.h.
15      [Jari Urpalainen <jari.urpalainen nokia.com>, Graham Leggett]
16
17   *) core: Add -DDUMP_INCLUDES configtest option to show the tree
18      of Included configuration files.  [Jacob Champion <champion.pxi gmail.com>]
19
20   *) mod_dav: Add support for childtags to dav_error.
21      [Jari Urpalainen <jari.urpalainen nokia.com>]
22
23   *) abs: include OpenSSL_Applink when compiling on Visual Studio 2015 
24           and up. PR59630 [Jan Ehrhardt <phpdev ehrhardt.nl>]
25
26   *) mod_proxy, mod_ssl: Handle SSLProxy* directives in <Proxy> sections,
27      allowing per backend TLS configuration.  [Yann Ylavic]
28
29   *) core: explicitly exclude 'h2' from protocols announced via an Upgrade: 
30      header as commanded by http-wg. [Stefan Eissing]
31      
32   *) http: Respond with "408 Request Timeout" when a timeout occurs while
33      reading the request body.  [Yann Ylavic]
34
35   *) scoreboard/status: Keep workers' previous Client, VHost and Request values
36      when idle, like in 2.4.18 and earlier.  [Yann Ylavic]
37
38   *) mod_proxy_ajp: Add "secret" parameter to proxy workers to implement legacy
39      AJP13 authentication.  PR 53098.  [Dmitry A. Bakshaev <dab1818 gmail com>]
40
41   *) mpm_event: Don't take over scoreboard slots from gracefully finishing
42      threads. [Stefan Fritsch]
43
44   *) mod_status: Display the process slot number in the async connection
45      overview. [Stefan Fritsch]
46
47   *) mpm_event, mpm_worker: Fix computation of MinSpareThreads' lower bound
48      according the number of listeners buckets.  [Yann Ylavic]
49
50   *) mpm: Generalise the ap_mpm_register_socket functions to accept pipes
51      or sockets. [Graham Leggett]
52
53   *) core: Extend support for setting aside data from the network input filter
54      to any connection or request input filter. [Graham Leggett]
55
56   *) mod_ssl: Add "no_crl_for_cert_ok" flag to SSLCARevocationCheck directive
57      to opt-in previous behaviour (2.2) with CRLs verification when checking
58      certificate(s) with no corresponding CRL.  [Yann Ylavic]
59
60   *) core: Split ap_create_request() from ap_read_request(). [Graham Leggett]
61
62   *) ab: Use caseless matching for HTTP tokens (e.g. content-length). PR 59111.
63      [Yann Ylavic]
64
65   *) mod_auth_digest: Fix compatibility with expression-based Authname. PR59039.
66      [Eric Covener]
67
68   *) mpm: Add a complete_connection hook that confirms whether an MPM is allowed
69      to leave the WRITE_COMPLETION phase. Move filter code out of the MPMs.
70      [Graham Leggett]
71
72   *) core: Added support for HTTP code 451. PR58985.
73      [Yehuda Katz <yehuda ymkatz.net>, Jim Jagielski]
74
75   *) mod_ssl: Add support for OpenSSL 1.1.0. [Rainer Jung]
76  
77   *) mod_filter: Fix AddOutputFilterByType with non-content-level filters.
78      PR58856 [Micha Lenk <micha lenk.info>]
79
80   *) mod_cache: Consider Cache-Control: s-maxage in expiration
81      calculations.  [Eric Covener]
82
83   *) mod_cache: Allow caching of responses with an Expires header
84      in the past that also has Cache-Control: max-age or s-maxage.
85      PR55156. [Eric Covener]
86
87   *) Added many log numbers to log statements that had none.
88
89   *) mod_session: Introduce SessionExpiryUpdateInterval which allows to
90      configure the session/cookie expiry's update interval. PR 57300.
91      [Paul Spangler <paul.spangler ni.com>]
92
93   *) core: Extend support for asynchronous write completion from the
94      network filter to any connection or request filter. [Graham Leggett]
95
96   *) mpm_event: Free memory earlier when shutting down processes.
97      [Stefan Fritsch]
98
99   *) mod_auth_digest: remove AuthDigestEnableQueryStringHack which is no
100      more documented since dec 2012 (r1415960). [Christophe Jaillet]
101
102   *) mod_charset_lite: On EBCDIC platforms, make sure mod_charset_lite runs
103      after other resource-level filters. [Eric Covener]
104
105   *) mod_dir: Responses that go through "FallbackResource" might appear to
106      hang due to unterminated chunked encoding. PR58292. [Eric Covener]
107
108   *) http: Don't remove the Content-Length of zero from a HEAD response if
109      it comes from an origin server, module or script.  [Yann Ylavic]
110
111   *) http: Add support for RFC2324/RFC7168. [Graham Leggett]
112
113   *) mod_rewrite: Add support for starting External Rewriting Programs
114      as non-root user on UNIX systems by specifying username and group name
115      as third argument of RewriteMap directive. [Jan Kaluza]
116
117   *) mod_authn_core: Add expression support to AuthName and AuthType.
118      [Graham Leggett]
119
120   *) suexec: Filter out the HTTP_PROXY environment variable because it is
121      treated as alias for http_proxy by some programs. [Stefan Fritsch]
122
123   *) mod_proxy_http: Don't establish or reuse a backend connection before pre-
124      fetching the request body, so to minimize the delay between it is supposed
125      to be alive and the first bytes sent: this is a best effort to prevent the
126      backend from closing because of idle or keepalive timeout in the meantime.
127      Also, handle a new "proxy-flushall" environment variable which allows to
128      flush any forwarded body data immediately. PR 56541+37920. [Yann Ylavic]
129
130   *) core: Define and UnDefine are no longer permitted in
131      directory context. Previously they would always be evaulated
132      as the configuration was read without regard for the directory
133      context. [Eric Covener]
134
135   *) config: For directives that do not expect any arguments, enforce
136      that none are specified in the configuration file. 
137      [Joachim Zobel <jzobel heute-morgen.de>, Eric Covener]
138
139   *) mod_rewrite: Improve 'bad flag delimeters' startup error by showing
140      how the input was tokenized.  PR 56528. [Edward Lu <Chaosed0 gmail.com>]
141
142   *) mod_proxy: Don't put non balancer-member workers in error state by
143      default for connection or 500/503 errors, and honor status=+I for
144      any error.  PR 48388.  [Yann Ylavic]
145
146   *) mod_socache_memcache: Pass expiration time through to memcached. PR 55445.
147      [Faidon Liambotis <paravoid debian.org>, Joe Orton]
148
149   *) ap_expr: Add filemod function for checking file modification dates
150      [Daniel Gruno]
151
152   *) mod_authnz_ldap: Resolve crashes with LDAP authz and non-LDAP authn since 
153      r1608202. [Eric Covener]
154
155   *) apreq: Content-Length header should be always interpreted as a decimal.
156      Leading 0 could be erroneously considered as an octal value. PR 56598.
157      [Chris Card <ctcard hotmail com>]
158
159   *) mod_proxy: Now allow for 191 character worker names, with non-fatal
160      errors if name is truncated. PR53218. [Jim Jagielski]
161
162   *) mod_ssl: Add optional function "ssl_get_tls_cb" to allow support
163      for channel bindings.  [Simo Sorce <simo redhat.com>]
164
165   *) mod_proxy_wstunnel: Concurrent websockets messages could be 
166      lost or delayed with ProxyWebsocketAsync enabled.  
167      [Edward Lu <Chaosed0 gmail.com>]
168
169   *) core, mod_info: Add compiled and loaded PCRE versions to version
170      number display.  [Rainer Jung]
171
172   *) mod_authnz_ldap: Return LDAP connections to the pool before the handler
173      is run, instead of waiting until the end of the request. [Eric Covener]
174
175   *) mod_proxy_html: support automatic detection of doctype and processing
176      of FPIs.  PR56285 [Micha Lenk <micha lenk info>, Nick Kew]
177
178   *) mod_proxy_html: skip documents shorter than 4 bytes
179      PR 56286 [Micha Lenk <micha lenk info>]
180
181   *) mod_proxy_fdpass: Fix computation of the size of 'struct sockaddr_un'
182      when passed to 'connect()'.
183      [Graham Dumpleton <grahamd apache org>]
184
185   *) core: Add ap_mpm_resume_suspended() API to allow a suspended connection
186      to resume. PR56333 
187      [Artem <artemciy gmail.com>, Edward Lu <Chaosed0 gmail.com>]
188
189   *) core: Add ap_mpm_register_socket_callback_timeout() API. [Eric Covener]
190
191   *) mod_proxy_wstunnel: Honor ProxyWebsocketIdleTimeout in asynchronous
192      processing mode. [Eric Covener]
193
194   *) mod_authnz_ldap: Fail explicitly when the filter is too long. Remove
195      unnecessary apr_pstrdup() and strlen(). [Graham Leggett]
196
197   *) Add the ldap-search option to mod_authnz_ldap, allowing authorization
198      to be based on arbitrary expressions that do not include the username.
199      [Graham Leggett]
200
201   *) Add the ldap function to the expression API, allowing LDAP filters and
202      distinguished names based on expressions to be escaped correctly to
203      guard against LDAP injection. [Graham Leggett]
204
205   *) Add module mod_ssl_ct, which provides an implementation of Certificate
206      Transparency (RFC 6962) for httpd.  [Jeff Trawick]
207
208   *) mod_proxy_wstunnel: Avoid sending error responses down an upgraded
209      websockets connection as it is being close down. [Eric Covener]
210
211   *) mod_proxy_wstunnel: Allow the administrator to cap the amount
212      of time a synchronous websockets connection stays idle with 
213      ProxyWebsocketIdleTimeout. [Eric Covener]
214
215   *) mod_proxy_wstunnel: Change to opt-in for asynchronous support, adding 
216      directives ProxyWebsocketAsync and ProxyWebsocketAsyncDelay. 
217      [Eric Covener]
218
219   *) mod_proxy_wstunnel: Stop leaking websockets backend connections under
220      event MPM (trunk-only). [Eric Covener]
221
222   *) mod_proxy_http: Add detach_backend hook (potentially usable
223      in other proxy scheme handlers).  [Jeff Trawick]
224
225   *) mod_deflate: Add DeflateAlterETag to control how the ETag
226      is modified. The 'NoChange' parameter mimics 2.2.x behavior.
227      PR 45023, PR 39727. [Eric Covener]
228
229   *) mod_rewrite: Add 'BNF' (backreferences-no-plus) flag to RewriteRule to 
230      allow spaces in backreferences to be encoded as %20 instead of '+'.
231      [Eric Covener]
232
233   *) mod_rewrite: Support an optional list of characters to escape in the 
234      argument for the 'B' (escape backreferences) flag. [Eric Covener]
235
236   *) mod_dir: Default to 2.2-like behavior and skip execution when method is
237      neither GET nor POST, such as for DAV requests. PR 54914. [Chris Darroch]
238
239   *) mod_rewrite: Rename the handler that does per-directory internal 
240      redirects to "rewrite-redirect-handler" from "redirect-handler" so
241      it is less ambiguous and less likely to be reused. [Eric Covener]
242
243   *) mod_rewrite: Protect against looping with the [N] flag by enforcing a 
244      default limit of 10000 iterations, and allowing each rule to change its
245      limit. [Eric Covener]
246
247   *) mod_ssl: Fix config merging of SSLOCSPEnable and SSLOCSPOverrideResponder.
248      [Jeff Trawick]
249
250   *) Add HttpContentLengthHeadZero and HttpExpectStrict directives.
251      [Yehuda Sadeh <yehuda inktank com>, Justin Erenkrantz]
252
253   *) mod_ssl: Add -t -DDUMP_CA_CERTS option which dumps the filenames of all
254      configured SSL CA certificates to stdout the same way as DUMP_CERTS does.
255      [Jan Kaluza]
256
257   *) mod_ssl: Don't flush when an EOS is received. Prepares mod_ssl
258      to support write completion. [Graham Leggett]
259
260   *) core: Add parse_errorlog_arg callback to ap_errorlog_provider
261      to allow providers to check the ErrorLog argument. [Jan Kaluza]
262
263   *) mod_cgid: Use the servers Timeout for each read from a CGI script,
264      allow override with new CGIDRequestTimeout directive. PR43494
265      [Eric Covener, Toshikuni Fukaya <toshikuni-fukaya cybozu co jp>]
266
267   *) core: ensure any abnormal exit is reported to stderr if it's a tty.
268      PR 55670 [Nick Kew]
269
270   *) mod_lua: Let the Inter-VM get/set functions work with a global 
271      shared memory pool instead of a per-process pool. [Daniel Gruno]
272
273   *) ldap: Support ldaps when using the Microsoft LDAP SDK.
274      PR 54626. [Jean-Frederic Clere]
275
276   *) mod_authnz_ldap: Change default value of AuthLDAPMaxSubGroupDepth to 0
277      to avoid performance problems when subgroups aren't in use. [Eric Covener]
278
279   *) mod_syslog: New module implementing syslog ap_error_log provider.
280      Previously, this code was part of core, now it's in separate module.
281      [Jan Kaluza]
282
283   *) core: Add ap_errorlog_provider to make ErrorLog logging modular. Move
284      syslog support from core to new mod_syslog. [Jan Kaluza]
285
286   *) mod_status, mod_echo: Fix the display of client addresses.
287      They were truncated to 31 characters which is not enough for IPv6 addresses.
288      PR 54848 [Bernhard Schmidt <berni birkenwald de>]
289
290   *) mod_unique_id: Use output of the PRNG rather than IP address and
291      pid, avoiding sleep() call and possible DNS issues at startup,
292      plus improving randomness for IPv6-only hosts.
293      [Jan Kaluza <jkaluza redhat.com>]
294
295   *) mod_file_cache: mod_file_cache should be able to serve files that
296      haven't had a Content-Type set via e.g. mod_mime. [Eric Covener]
297
298   *) core: merge AllowEncodedSlashes from the base configuration into
299      virtual hosts. [Eric Covener]
300
301   *) AIX: Install DSO's with "cp" instead of "install" in instdso.sh
302      [Eric Covener]
303
304   *) mod_ldap: Don't keep retrying if a new LDAP connection times out.
305      [Eric Covener]
306
307   *) mod_deflate: permit compilation of mod_deflate against a zlib that has
308      been configured with -D Z_PREFIX, which redefines the token "deflate".
309      [Eric Covener]
310
311   *) mod_auth_digest: Use the secret when generating nonces in all cases and
312      not only when AuthName is used in .htaccess files (this change may cause
313      problems if used with round robin load balancers). Don't regenerate the
314      secret on graceful restarts. PR 54637  [Stefan Fritsch]
315
316   *) core: Remove apr_brigade_flatten(), buffering and duplicated code
317      from the HTTP_IN filter, parse chunks in a single pass with zero copy.
318      Reduce memory usage by 48 bytes per request. [Graham Leggett]
319
320   *) core: Stop the HTTP_IN filter from attempting to write error buckets
321      to the output filters, which is bogus in the proxy case. Create a
322      clean mapping from APR codes to HTTP status codes, and use it where
323      needed. [Graham Leggett]
324
325   *) mod_proxy: Ensure network errors detected by the proxy are returned as
326      504 Gateway Timout as opposed to 502 Bad Gateway, in order to be
327      compliant with RFC2616 14.9.4 Cache Revalidation and Reload Controls.
328
329   *) mod_dav: mod_dav overrides dav_fs response on PUT failure. PR 35981
330      [Basant Kumar Kukreja <basant.kukreja sun.com>, Alejandro Alvarez
331      <alejandro.alvarez.ayllon cern.ch>]
332
333   *) mod_ldap: LDAP connections used for authentication were not respecting
334      LDAPConnectionPoolTimeout.  PR 54587
335
336   *) core: ap_rgetline_core now pulls from r->proto_input_filters.
337
338   *) mod_proxy_html: process parsed comments immediately. 
339      Fixes bug where parsed comments may be lost. [Nick Kew]
340
341   *) mod_proxy_html: introduce doctype for HTML 5 [Nick Kew]
342
343   *) mod_proxy_html: fix typo-bug processing "strict" vs "transitional"
344      HTML/XHTML [Nick Kew]
345
346   *) core: Add option to add valgrind support. Use it to reduce false positive
347      warnings in mod_ssl. [Stefan Fritsch]
348
349   *) mod_authn_file, mod_authn_dbd, mod_authn_dbm, mod_authn_socache:
350      Cache the result of the most recent password hash verification for every
351      keep-alive connection. This saves some expensive calculations.
352      [Stefan Fritsch]
353
354   *) http: Remove support for Request-Range header sent by Navigator 2-3 and
355      MSIE 3. [Stefan Fritsch]
356
357   *) core, http: Extend HttpProtocol with an option to enforce stricter HTTP
358      conformance or to only log the found problems. [Stefan Fritsch]
359
360   *) core: Correctly parse an IPv6 literal host specification in an absolute
361      URL in the request line. [Stefan Fritsch]
362
363   *) EventOpt MPM
364
365   *) core: Add LogLevelOverride directive that allows to override the
366      loglevel for clients from certain IPs. This also works for things
367      like the SSL handshake where <If> LogLevel ... </If> is evaluated
368      too late. [Stefan Fritsch]
369
370   *) core: Add new directive Warning to issue warnings from a configuration
371      file. Both Warning and Error now generate a timestamped log message.
372      [Fabien Coelho] 
373
374   *) ap_expr: Add SERVER_PROTOCOL_VERSION, ..._MAJOR, and ..._MINOR
375      variables. [Stefan Fritsch]
376
377   *) core: New directive RegisterHttpMethod for registering non-standard
378      HTTP methods. [Stefan Fritsch]
379
380   *) core: New directive HttpProtocol which allows to disable HTTP/0.9
381      support. [Stefan Fritsch]
382
383   *) mod_allowhandlers: New module to forbid specific handlers for specific
384      directories. [Stefan Fritsch]
385
386   *) mod_systemd: New module, for integration with systemd on Linux.
387      [Jan Kaluza <jkaluza redhat.com>]
388
389   *) WinNT MPM: Store pid and generation for each thread in scoreboard
390      to allow tracking of threads from exiting children via mod_status
391      or other such mechanisms.  [Jeff Trawick]
392
393   *) The following now respect DefaultRuntimeDir/DEFAULT_REL_RUNTIMEDIR:
394      - APIs: ap_log_pid(), ap_remove_pid, ap_read_pid()
395      - mod_cache: thundering herd lock directory
396      - mod_lbmethod_heartbeat, mod_heartmonitor: heartbeat storage file
397      - mod_ldap: shared memory cache
398      - mod_socache_shmcb, mod_socache_dbm: shared memory or dbm for cache
399      [Jeff Trawick]
400
401   *) suexec: Add --enable-suexec-capabilites support on Linux, to use
402      setuid/setgid capability bits rather than a setuid root binary.
403      [Joe Orton]
404
405   *) suexec: Add support for logging to syslog as an alternative to logging
406      to a file; configure --without-suexec-logfile --with-suexec-syslog.  
407      [Joe Orton]
408
409   *) mod_ssl: Add support for TLS Next Protocol Negotiation.  PR 52210.
410      [Matthew Steele <mdsteele google.com>]
411
412   *) cross-compile: allow to provide CC_FOR_BUILD so that gen_test_char will
413      be compiled by the build compiler instead of the host compiler.
414      Also set CC_FOR_BUILD to 'cc' when cross-compilation is detected.
415      PR 51257. [Guenter Knauf]
416
417   *) core: In maintainer mode, replace apr_palloc with a version that
418      initializes the allocated memory with non-zero values, except if
419      AP_DEBUG_NO_ALLOC_POISON is defined. [Stefan Fritsch]
420
421   *) mod_policy: Add a new testing module to help server administrators
422      enforce a configurable level of protocol compliance on their
423      servers and application servers behind theirs. [Graham Leggett]
424
425   *) mod_firehose: Add a new debugging module able to record traffic
426      passing through the server in such a way that connections and/or
427      requests be reconstructed and replayed. [Graham Leggett]
428
429   *) mod_noloris
430
431   *) APREQ
432
433   *) Simple MPM
434
435   *) mod_serf
436
437   [Apache 2.5.0-dev includes those bug fixes and changes with the
438    Apache 2.4.xx tree as documented below, except as noted.]
439
440 Changes with Apache 2.4.x and later:
441
442   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/CHANGES?view=markup
443
444 Changes with Apache 2.2.x and later:
445
446   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/CHANGES?view=markup
447
448 Changes with Apache 2.0.x and later:
449
450   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.0.x/CHANGES?view=markup
451