]> granicus.if.org Git - apache/blob - CHANGES
Actually use the secret when generating nonces.
[apache] / CHANGES
1                                                          -*- coding: utf-8 -*-
2 Changes with Apache 2.5.0
3
4   *) mod_auth_digest: Actually use the secret when generating nonces. This change
5      may cause problems if used with round robin load balancers. PR 54637
6      [Stefan Fritsch]
7
8   *) mod_cache_socache: Use the name of the socache implementation when performing
9      a lookup rather than using the raw arguments. [Martin Ksellmann
10      <martin@ksellmann.de>]
11
12   *) rotatelogs: add -n number-of-files option to roate through a number
13      of fixed-name logfiles. [Eric Covener]
14
15   *) mod_lua: If a LuaMapHandler doesn't return any value, log a warning
16      and treat it as apache2.OK. [Eric Covener]
17
18   *) ab: Add a new -l parameter in order not to check the length of the responses.
19      This can be usefull with dynamic pages.
20      PR9945, PR27888, PR42040 [<ccikrs1 cranbrook edu>]
21      
22   *) mod_ssl: Fix possible truncation of OCSP responses when reading from the
23      server.  [Joe Orton]
24
25   *) mod_session_dbd: Make sure that dirty flag is respected when saving
26      sessions, and ensure the session ID is changed each time the session
27      changes. [Takashi Sato <takashi tks.st>, Graham Leggett]
28
29   *) mod_dav: Sending a MERGE request against a URI handled by mod_dav_svn with
30      the source href (sent as part of the request body as XML) pointing to a
31      URI that is not configured for DAV will trigger a segfault. [Ben Reser
32      <ben reser.org>]
33
34   *) mod_logio: new format-specifier %C (combined) which is the sum of received
35      and sent byte counts.
36      PR54015 [Christophe Jaillet]
37
38   *) core: Remove apr_brigade_flatten(), buffering and duplicated code
39      from the HTTP_IN filter, parse chunks in a single pass with zero copy.
40      Reduce memory usage by 48 bytes per request. [Graham Leggett]
41
42   *) mod_deflate: Remove assumptions as to when an EOS bucket might arrive.
43      Gracefully step aside if the body size is zero. [Graham Leggett]
44
45   *) 'AuthGroupFile' and 'AuthUserFile' do not accept anymore the optional
46      'standard' keyword . It was unused and not documented.
47      PR54463 [Tianyin Xu <tixu cs.ucsd.edu> and Christophe Jaillet]
48
49   *) mod_proxy_http: Make the proxy-interim-response environment variable
50      effective by formally overriding origin server behaviour. [Graham
51      Leggett, Co-Advisor <coad measurement-factory.com>]
52
53   *) core: Stop the HTTP_IN filter from attempting to write error buckets
54      to the output filters, which is bogus in the proxy case. Create a
55      clean mapping from APR codes to HTTP status codes, and use it where
56      needed. [Graham Leggett]
57
58   *) mod_proxy: Ensure we don't attempt to amend a table we are iterating
59      through, ensuring that all headers listed by Connection are removed.
60      [Graham Leggett, Co-Advisor <coad measurement-factory.com>]
61
62   *) core: apachectl -S prints wildcard name-based virtual hosts twice. 
63      PR54948 [Eric Covener]
64
65   *) mod_proxy: Reject invalid values for Max-Forwards. [Graham Leggett,
66      Co-Advisor <coad measurement-factory.com>]
67
68   *) mod_cache: If a 304 response indicates an entity not currently cached, then
69      the cache MUST disregard the response and repeat the request without the
70      conditional. [Graham Leggett, Co-Advisor <coad measurement-factory.com>]
71
72   *) mod_proxy: Fix seg-faults when using the global pool on threaded
73      MPMs [Thomas Eckert <thomas.r.w.eckert gmail.com>, Jim Jagielski]
74
75   *) mod_proxy: Ensure network errors detected by the proxy are returned as
76      504 Gateway Timout as opposed to 502 Bad Gateway, in order to be
77      compliant with RFC2616 14.9.4 Cache Revalidation and Reload Controls.
78      [Graham Leggett, Co-Advisor <coad measurement-factory.com>]
79
80   *) mod_cache: Ensure that we don't attempt to replace a cached response
81      with an older response as per RFC2616 13.12. [Graham Leggett, Co-Advisor
82      <coad measurement-factory.com>]
83
84   *) core, mod_cache: Ensure RFC2616 compliance in ap_meets_conditions()
85      with weak validation combined with If-Range and Range headers. Break
86      out explicit conditional header checks to be useable elsewhere in the
87      server. Ensure weak validation RFC compliance in the byteranges filter.
88      Ensure RFC validation compliance when serving cached entities. PR 16142
89      [Graham Leggett, Co-Advisor <coad measurement-factory.com>]
90
91   *) core: Add the ability to do explicit matching on weak and strong ETags
92      as per RFC2616 Section 13.3.3. [Graham Leggett, Co-Advisor
93      <coad measurement-factory.com>]
94
95   *) mod_cache: Ensure that updated responses to HEAD requests don't get
96      mistakenly paired with a previously cached body. Ensure that any existing
97      body is removed when a HEAD request is cached. [Graham Leggett,
98      Co-Advisor <coad measurement-factory.com>]
99
100   *) mod_cache: Honour Cache-Control: no-store in a request. [Graham Leggett]
101
102   *) mod_cache: RFC2616 14.9.3 The s-maxage directive also implies the
103      semantics of the proxy-revalidate directive. [Graham Leggett]
104
105   *) mod_cache: Make sure that contradictory entity headers present in a 304
106      Not Modified response are caught and cause the entity to be removed.
107      [Graham Leggett]
108
109   *) mod_cache: Make sure Vary processing handles multivalued Vary headers and
110      multivalued headers referred to via Vary. [Graham Leggett]
111
112   *) mod_cache: When serving from cache, only the last header of a multivalued
113      header was taken into account. Fixed. [Graham Leggett]
114
115   *) mod_cache: Ignore response headers specified by no-cache=header and
116      private=header as specified by RFC2616 14.9.1 What is Cacheable. Ensure
117      that these headers are still processed when multiple Cache-Control
118      headers are present in the response. PR 54706 [Graham Leggett,
119      Yann Ylavic <ylavic.dev gmail.com>]
120
121   *) mod_cache: Invalidate cached entities in response to RFC2616 Section
122      13.10 Invalidation After Updates or Deletions. PR 15868 [Graham
123      Leggett]
124
125   *) mod_dav: mod_dav overrides dav_fs response on PUT failure. PR 35981
126      [Basant Kumar Kukreja <basant.kukreja sun.com>, Alejandro Alvarez
127      <alejandro.alvarez.ayllon cern.ch>]
128
129   *) mod_dav: Do not segfault on PROPFIND with a zero length DBM.
130      PR 52559 [Diego Santa Cruz <diego.santaCruz spinetix.com>]
131
132   *) mod_dav: Do not fail PROPPATCH when prop namespace is not known.
133      PR 52559 [Diego Santa Cruz <diego.santaCruz spinetix.com>]
134
135   *) mod_dav: When a PROPPATCH attempts to remove a non-existent dead
136      property on a resource for which there is no dead property in the same
137      namespace httpd segfaults. PR 52559 [Diego Santa Cruz
138      <diego.santaCruz spinetix.com>]
139
140   *) mod_dav: Ensure URI is correctly uriencoded on return. PR 54611
141      [Timothy Wood <tjw omnigroup.com>]
142
143   *) mod_dav: Sending a If or If-Match header with an invalid ETag doesn't
144      result in a 412 Precondition Failed. PR 54610 [Timothy Wood
145      <tjw omnigroup.com>]
146
147   *) mod_dav: Make sure that when we prepare an If URL for Etag comparison,
148      we compare unencoded paths. PR 53910 [Timothy Wood <tjw omnigroup.com>]
149
150   *) core, mod_ssl: Lift the restriction that prevents mod_ssl taking
151      full advantage of the event MPM. Enable the ability for a module
152      to reverse the sense of a poll event from a read to a write or vice
153      versa. [Graham Leggett]
154
155   *) htpasswd: Add -v option to verify a password. [Stefan Fritsch]
156
157   *) htpasswd, htdbm: Fix password generation. PR 54735. [Stefan Fritsch]
158
159   *) mod_dav: Improve error handling in dav_method_put(), add new
160      dav_join_error() function.  PR 54145.  [Ben Reser <ben reser.org>]
161
162   *) mod_auth_digest: Fix crashes if shm initialization failed. [Stefan
163      Fritsch]
164  
165   *) mod_ldap: LDAP connections used for authentication were not respecting
166      LDAPConnectionPoolTimeout.  PR 54587
167
168   *) core: ap_rgetline_core now pulls from r->proto_input_filters.
169
170   *) mod_proxy_html: process parsed comments immediately. 
171      Fixes bug where parsed comments may be lost. [Nick Kew]
172
173   *) mod_proxy_html: introduce doctype for HTML 5 [Nick Kew]
174
175   *) mod_proxy_html: fix typo-bug processing "strict" vs "transitional"
176      HTML/XHTML [Nick Kew]
177
178   *) core: Add option to add valgrind support. Use it to reduce false positive
179      warnings in mod_ssl. [Stefan Fritsch]
180
181   *) mod_lua: Add bindings for apr_dbd/mod_dbd database access
182      [Daniel Gruno]
183
184   *) mod_authn_file, mod_authn_dbd, mod_authn_dbm, mod_authn_socache:
185      Cache the result of the most recent password hash verification for every
186      keep-alive connection. This saves some expensive calculations.
187      [Stefan Fritsch]
188
189   *) http: Remove support for Request-Range header sent by Navigator 2-3 and
190      MSIE 3. [Stefan Fritsch]
191
192   *) core, http: Extend HttpProtocol with an option to enforce stricter HTTP
193      conformance or to only log the found problems. [Stefan Fritsch]
194
195   *) core: Correctly parse an IPv6 literal host specification in an absolute
196      URL in the request line. [Stefan Fritsch]
197
198   *) mod_ssl: add support for subjectAltName-based host name checking
199      in proxy mode. PR 54030. [Kaspar Brand]
200
201   *) mpm_event: Check that AsyncRequestWorkerFactor is not negative. PR 54254.
202      [Jackie Zhang <jackie qq zhang gmail com>]
203
204   *) mod_ssl: Add support for OpenSSL configuration commands [Stephen Henson]
205
206   *) EventOpt MPM
207
208   *) core: Add LogLevelOverride directive that allows to override the
209      loglevel for clients from certain IPs. This also works for things
210      like the SSL handshake where <If> LogLevel ... </If> is evaluated
211      too late. [Stefan Fritsch]
212
213   *) core: Add new directive Warning to issue warnings from a configuration
214      file. Both Warning and Error now generate a timestamped log message.
215      [Fabien Coelho] 
216
217   *) ap_expr: Add SERVER_PROTOCOL_VERSION, ..._MAJOR, and ..._MINOR
218      variables. [Stefan Fritsch]
219
220   *) core: New directive RegisterHttpMethod for registering non-standard
221      HTTP methods. [Stefan Fritsch]
222
223   *) core: New directive HttpProtocol which allows to disable HTTP/0.9
224      support. [Stefan Fritsch]
225
226   *) mod_allowhandlers: New module to forbid specific handlers for specific
227      directories. [Stefan Fritsch]
228
229   *) configure: Fix processing of --disable-FEATURE for various features.
230      [Jeff Trawick]
231
232   *) mod_systemd: New module, for integration with systemd on Linux.
233      [Jan Kaluza <jkaluza redhat.com>]
234
235   *) mod_cache_socache: New cache implementation backed by mod_socache
236      that replaces mod_mem_cache removed from httpd v2.2. [Graham
237      Leggett]
238
239   *) core: Add dirwalk_stat and pre_htaccess hooks, allowing mpm-itk
240      to be used without patches to httpd core.  [Jeff Trawick]
241
242   *) mod_lua: Add LuaInputFilter/LuaOutputFilter for creating content
243      filters in Lua [Daniel Gruno]
244
245   *) WinNT MPM: Store pid and generation for each thread in scoreboard
246      to allow tracking of threads from exiting children via mod_status
247      or other such mechanisms.  [Jeff Trawick]
248
249   *) mod_ssl: Catch missing or mismatched client cert/key pairs with
250      SSLProxyMachineCertificateFile/Path directives.  PR 52212.  
251      [Keith Burdis <keith burdis.org>, Joe Orton]
252
253   *) mod_lua: Allow scripts handled by the lua-script handler to return 
254      a status code to the client (such as a 302 or a 500) [Daniel Gruno]
255
256   *) mod_lua: Decline handling 'lua-script' if the file doesn't exist,
257      rather than throwing an internal server error. [Daniel Gruno]
258
259   *) mod_lua: Add functions r:flush and r:sendfile as well as additional
260      request information to the request_rec structure. [Daniel Gruno]
261
262   *) mod_lua: Add a server scope for Lua states, which creates a pool of
263      states with managable minimum and maximum size. [Daniel Gruno]
264
265   *) core: Add post_perdir_config hook.
266      [Steinar Gunderson <sgunderson bigfoot.com>]
267
268   *) mod_lua: Add new directive, LuaMapHandler, for dynamically mapping 
269      URIs to Lua scripts and functions using regular expressions.
270      [Daniel Gruno]
271
272   *) mod_lua: Add new directive LuaCodeCache for controlling in-memory
273      caching of lua scripts. [Daniel Gruno]
274
275   *) The following now respect DefaultRuntimeDir/DEFAULT_REL_RUNTIMEDIR:
276      - APIs: ap_log_pid(), ap_remove_pid, ap_read_pid()
277      - core: the scoreboard (ScoreBoardFile), pid file (PidFile), and
278        mutexes (Mutex)
279      - mod_cache: thundering herd lock directory
280      - mod_lbmethod_heartbeat, mod_heartmonitor: heartbeat storage file
281      - mod_ldap: shared memory cache
282      - mod_socache_shmcb, mod_socache_dbm: shared memory or dbm for cache
283      [Jeff Trawick]
284
285   *) suexec: Add --enable-suexec-capabilites support on Linux, to use
286      setuid/setgid capability bits rather than a setuid root binary.
287      [Joe Orton]
288
289   *) suexec: Add support for logging to syslog as an alternative to logging
290      to a file; configure --without-suexec-logfile --with-suexec-syslog.  
291      [Joe Orton]
292
293   *) mod_ssl: Add support for TLS Next Protocol Negotiation.  PR 52210.
294      [Matthew Steele <mdsteele google.com>]
295
296   *) cross-compile: allow to provide CC_FOR_BUILD so that gen_test_char will
297      be compiled by the build compiler instead of the host compiler.
298      Also set CC_FOR_BUILD to 'cc' when cross-compilation is detected.
299      PR 51257. [Guenter Knauf]
300
301   *) core: In maintainer mode, replace apr_palloc with a version that
302      initializes the allocated memory with non-zero values, except if
303      AP_DEBUG_NO_ALLOC_POISON is defined. [Stefan Fritsch]
304
305   *) mod_policy: Add a new testing module to help server administrators
306      enforce a configurable level of protocol compliance on their
307      servers and application servers behind theirs. [Graham Leggett]
308
309   *) mod_firehose: Add a new debugging module able to record traffic
310      passing through the server in such a way that connections and/or
311      requests be reconstructed and replayed. [Graham Leggett]
312
313   *) mod_noloris
314
315   *) APREQ
316
317   *) Simple MPM
318
319   *) mod_serf
320
321   [Apache 2.5.0-dev includes those bug fixes and changes with the
322    Apache 2.4.xx tree as documented below, except as noted.]
323
324 Changes with Apache 2.4.x and later:
325
326   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/CHANGES?view=markup
327
328 Changes with Apache 2.2.x and later:
329
330   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/CHANGES?view=markup
331
332 Changes with Apache 2.0.x and later:
333
334   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.0.x/CHANGES?view=markup
335