]> granicus.if.org Git - apache/blob - CHANGES
*) mod_rewrite: Make rewrite websocket aware to allow proxying.
[apache] / CHANGES
1                                                          -*- coding: utf-8 -*-
2 Changes with Apache 2.5.0
3
4   *) mod_rewrite: Make rewrite websocket aware to allow proxying.
5      PR 55598. [Chris Harris <chris.harris kitware com>]
6
7   *) mod_ldap: When looking up sub-groups, use an implicit objectClass=*
8      instead of an explicit cn=* filter. [David Hawes <dhawes vt.edu>]
9
10   *) mod_ssl: Improve handling of ephemeral DH and ECDH keys by
11      allowing custom parameters to be configured via SSLCertificateFile,
12      and by adding standardized DH parameters for 1024/2048/3072/4096 bits.
13      Unless custom parameters are configured, the standardized parameters
14      are applied based on the certificate's RSA/DSA key size. [Kaspar Brand]
15
16   *) mod_ssl, configure: Require OpenSSL 0.9.8a or later. [Kaspar Brand]
17
18   *) mod_lua: Let the Inter-VM get/set functions work with a global 
19      shared memory pool instead of a per-process pool. [Daniel Gruno]
20
21   *) WinNT MPM: Exit the child if the parent process crashes or is terminated.
22      [Oracle Corporation]
23
24   *) ldap: Support ldaps when using the Microsoft LDAP SDK.
25      PR 54626. [Jean-Frederic Clere]
26
27   *) worker MPM: Don't forcibly kill worker threads if the child process is
28      exiting gracefully.  [Oracle Corporation]
29
30   *) mod_proxy: Add ap_connection_reusable() for checking if a connection
31      is reusable as of this point in processing.  [Jeff Trawick]
32
33   *) mod_ssl: drop support for export-grade ciphers with ephemeral RSA
34      keys, and unconditionally disable aNULL, eNULL and EXP ciphers
35      (not overridable via SSLCipherSuite). [Kaspar Brand]
36
37   *) mod_authnz_ldap: Change default value of AuthLDAPMaxSubGroupDepth to 0
38      to avoid performance problems when subgroups aren't in use. [Eric Covener]
39
40   *) mod_syslog: New module implementing syslog ap_error_log provider.
41      Previously, this code was part of core, now it's in separate module.
42      [Jan Kaluza]
43
44   *) core: Add ap_errorlog_provider to make ErrorLog logging modular. Move
45      syslog support from core to new mod_syslog. [Jan Kaluza]
46
47   *) mod_proxy_fcgi: Handle reading protocol data that is split between
48      packets.  [Jeff Trawick]
49
50   *) mod_proxy_fcgi: Remove 64K limit on encoded length of all envvars.
51      An individual envvar with an encoded length of more than 16K will be
52      omitted.  [Jeff Trawick]
53
54   *) core: draft-ietf-httpbis-p1-messaging-23 corrections regarding
55      TE/CL conflicts. [Yann Ylavic <ylavic.dev gmail com>, Jim Jagielski]
56      
57   *) mod_proxy_fcgi: Use apr_socket_timeout_get instead of hard-coded
58      30 seconds timeout. [Jan Kaluza]
59
60   *) WinNT MPM: If ap_run_pre_connection() fails or sets c->aborted, don't
61      save the socket for reuse by the next worker as if it were an 
62      APR_SO_DISCONNECTED socket. Restores 2.2 behavior. [Eric Covener]
63
64   *) mod_cache: Avoid a crash with strcmp() when the hostname is not provided.
65      [Graham Leggett]
66
67   *) mod_lua: Add rudimentary support for WebSocket interaction. This is 
68      currently request-bound and only supports the WS protocol. [Daniel Gruno]
69
70   *) mod_lua: Add getcookie/setcookie for reading/writing HTTP cookies
71      [Daniel Gruno]
72
73   *) WinNT MPM: Don't crash during child process initialization if the
74      Listen protocol is unrecognized.  [Jeff Trawick]
75
76   *) mod_lua: Add a logging hook for modifying/skipping logs. [Daniel Gruno]
77
78   *) mod_status, mod_echo: Fix the display of client addresses.
79      They were truncated to 31 characters which is not enough for IPv6 addresses.
80      PR 54848 [Bernhard Schmidt <berni birkenwald de>]
81
82   *) mod_lua: If the first yield() of a LuaOutputFilter returns a string, it should
83      be prefixed to the response as documented. [Eric Covener]
84
85   *) mod_lua: Remove ETAG, Content-Length, and Content-MD5 when a LuaOutputFilter
86      is configured without mod_filter. [Eric Covener]
87
88   *) mod_lua: Register LuaOutputFilter scripts as changing the content and
89      content-length by default, when run my mod_filter.  Previously,
90      growing or shrinking a response that started with Content-Length set
91      would require mod_filter and FilterProtocol change=yes. [Eric Covnener]
92
93   *) mod_lua: Return a 500 error if a LuaHook* script doesn't return a 
94      numeric return code. [Eric Covener]
95
96   *) Add experimental cmake-based build system for Windows.  [Jeff Trawick,
97      Tom Donovan]
98
99   *) mod_authnz_fcgi: New module to enable FastCGI authorizer
100      applications to authenticate and/or authorize clients.
101      [Jeff Trawick]
102
103   *) mod_auth_basic: Add AuthBasicUseDigestAlgorithm directive to
104      allow migration of passwords from digest to basic authentication.
105      [Chris Darroch]
106
107   *) core: Add util_fcgi.h and associated definitions and support
108      routines for FastCGI, based largely on mod_proxy_fcgi.
109      [Jeff Trawick]
110
111   *) core: Add ap_log_data(), ap_log_rdata(), etc. for logging buffers.
112      [Jeff Trawick]
113
114   *) mod_unique_id: Use output of the PRNG rather than IP address and
115      pid, avoiding sleep() call and possible DNS issues at startup,
116      plus improving randomness for IPv6-only hosts.
117      [Jan Kaluza <jkaluza redhat.com>]
118
119   *) mod_authnz_ldap: Support primitive LDAP servers that do not accept
120      filters, such as "SDBM-backed LDAP" on z/OS, by allowing a special
121      filter "none" to be specified in AuthLDAPURL. [Eric Covener]
122
123   *) mod_file_cache: mod_file_cache should be able to serve files that
124      haven't had a Content-Type set via e.g. mod_mime. [Eric Covener]
125
126   *) core: merge AllowEncodedSlashes from the base configuration into
127      virtual hosts. [Eric Covener]
128
129   *) AIX: Install DSO's with "cp" instead of "install" in instdso.sh
130      [Eric Covener]
131
132   *) mod_ldap: Don't keep retrying if a new LDAP connection times out.
133      [Eric Covener]
134
135   *) mod_deflate: permit compilation of mod_deflate against a zlib that has
136      been configured with -D Z_PREFIX, which redefines the token "deflate".
137      [Eric Covener]
138
139   *) mod_socache_shmcb.c: Remove arbitrary restriction on shared memory size
140      previously limited to 64MB. [Jens Låås <jelaas gmail.com>]
141
142   *) mod_auth_digest: Use the secret when generating nonces in all cases and
143      not only when AuthName is used in .htaccess files (this change may cause
144      problems if used with round robin load balancers). Don't regenerate the
145      secret on graceful restarts. PR 54637  [Stefan Fritsch]
146
147   *) mod_logio: new format-specifier %C (combined) which is the sum of received
148      and sent byte counts.
149      PR54015 [Christophe Jaillet]
150
151   *) core: Remove apr_brigade_flatten(), buffering and duplicated code
152      from the HTTP_IN filter, parse chunks in a single pass with zero copy.
153      Reduce memory usage by 48 bytes per request. [Graham Leggett]
154
155   *) core: Stop the HTTP_IN filter from attempting to write error buckets
156      to the output filters, which is bogus in the proxy case. Create a
157      clean mapping from APR codes to HTTP status codes, and use it where
158      needed. [Graham Leggett]
159
160   *) mod_proxy: Ensure network errors detected by the proxy are returned as
161      504 Gateway Timout as opposed to 502 Bad Gateway, in order to be
162      compliant with RFC2616 14.9.4 Cache Revalidation and Reload Controls.
163
164   *) mod_dav: mod_dav overrides dav_fs response on PUT failure. PR 35981
165      [Basant Kumar Kukreja <basant.kukreja sun.com>, Alejandro Alvarez
166      <alejandro.alvarez.ayllon cern.ch>]
167
168   *) core, mod_ssl: Enable the ability for a module to reverse the sense of
169      a poll event from a read to a write or vice versa. This is a step on
170      the way to allow mod_ssl taking full advantage of the event MPM.
171      [Graham Leggett]
172
173   *) mod_ldap: LDAP connections used for authentication were not respecting
174      LDAPConnectionPoolTimeout.  PR 54587
175
176   *) core: ap_rgetline_core now pulls from r->proto_input_filters.
177
178   *) mod_proxy_html: process parsed comments immediately. 
179      Fixes bug where parsed comments may be lost. [Nick Kew]
180
181   *) mod_proxy_html: introduce doctype for HTML 5 [Nick Kew]
182
183   *) mod_proxy_html: fix typo-bug processing "strict" vs "transitional"
184      HTML/XHTML [Nick Kew]
185
186   *) core: Add option to add valgrind support. Use it to reduce false positive
187      warnings in mod_ssl. [Stefan Fritsch]
188
189   *) mod_authn_file, mod_authn_dbd, mod_authn_dbm, mod_authn_socache:
190      Cache the result of the most recent password hash verification for every
191      keep-alive connection. This saves some expensive calculations.
192      [Stefan Fritsch]
193
194   *) http: Remove support for Request-Range header sent by Navigator 2-3 and
195      MSIE 3. [Stefan Fritsch]
196
197   *) core, http: Extend HttpProtocol with an option to enforce stricter HTTP
198      conformance or to only log the found problems. [Stefan Fritsch]
199
200   *) core: Correctly parse an IPv6 literal host specification in an absolute
201      URL in the request line. [Stefan Fritsch]
202
203   *) mod_ssl: Add support for OpenSSL configuration commands [Stephen Henson]
204
205   *) EventOpt MPM
206
207   *) core: Add LogLevelOverride directive that allows to override the
208      loglevel for clients from certain IPs. This also works for things
209      like the SSL handshake where <If> LogLevel ... </If> is evaluated
210      too late. [Stefan Fritsch]
211
212   *) core: Add new directive Warning to issue warnings from a configuration
213      file. Both Warning and Error now generate a timestamped log message.
214      [Fabien Coelho] 
215
216   *) ap_expr: Add SERVER_PROTOCOL_VERSION, ..._MAJOR, and ..._MINOR
217      variables. [Stefan Fritsch]
218
219   *) core: New directive RegisterHttpMethod for registering non-standard
220      HTTP methods. [Stefan Fritsch]
221
222   *) core: New directive HttpProtocol which allows to disable HTTP/0.9
223      support. [Stefan Fritsch]
224
225   *) mod_allowhandlers: New module to forbid specific handlers for specific
226      directories. [Stefan Fritsch]
227
228   *) mod_systemd: New module, for integration with systemd on Linux.
229      [Jan Kaluza <jkaluza redhat.com>]
230
231   *) WinNT MPM: Store pid and generation for each thread in scoreboard
232      to allow tracking of threads from exiting children via mod_status
233      or other such mechanisms.  [Jeff Trawick]
234
235   *) The following now respect DefaultRuntimeDir/DEFAULT_REL_RUNTIMEDIR:
236      - APIs: ap_log_pid(), ap_remove_pid, ap_read_pid()
237      - core: the scoreboard (ScoreBoardFile), pid file (PidFile), and
238        mutexes (Mutex)
239      - mod_cache: thundering herd lock directory
240      - mod_lbmethod_heartbeat, mod_heartmonitor: heartbeat storage file
241      - mod_ldap: shared memory cache
242      - mod_socache_shmcb, mod_socache_dbm: shared memory or dbm for cache
243      [Jeff Trawick]
244
245   *) suexec: Add --enable-suexec-capabilites support on Linux, to use
246      setuid/setgid capability bits rather than a setuid root binary.
247      [Joe Orton]
248
249   *) suexec: Add support for logging to syslog as an alternative to logging
250      to a file; configure --without-suexec-logfile --with-suexec-syslog.  
251      [Joe Orton]
252
253   *) mod_ssl: Add support for TLS Next Protocol Negotiation.  PR 52210.
254      [Matthew Steele <mdsteele google.com>]
255
256   *) cross-compile: allow to provide CC_FOR_BUILD so that gen_test_char will
257      be compiled by the build compiler instead of the host compiler.
258      Also set CC_FOR_BUILD to 'cc' when cross-compilation is detected.
259      PR 51257. [Guenter Knauf]
260
261   *) core: In maintainer mode, replace apr_palloc with a version that
262      initializes the allocated memory with non-zero values, except if
263      AP_DEBUG_NO_ALLOC_POISON is defined. [Stefan Fritsch]
264
265   *) mod_policy: Add a new testing module to help server administrators
266      enforce a configurable level of protocol compliance on their
267      servers and application servers behind theirs. [Graham Leggett]
268
269   *) mod_firehose: Add a new debugging module able to record traffic
270      passing through the server in such a way that connections and/or
271      requests be reconstructed and replayed. [Graham Leggett]
272
273   *) mod_noloris
274
275   *) APREQ
276
277   *) Simple MPM
278
279   *) mod_serf
280
281   [Apache 2.5.0-dev includes those bug fixes and changes with the
282    Apache 2.4.xx tree as documented below, except as noted.]
283
284 Changes with Apache 2.4.x and later:
285
286   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/CHANGES?view=markup
287
288 Changes with Apache 2.2.x and later:
289
290   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/CHANGES?view=markup
291
292 Changes with Apache 2.0.x and later:
293
294   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.0.x/CHANGES?view=markup
295