]> granicus.if.org Git - apache/blob - CHANGES
d3867f8c048f119577691c233d046724f73a335e
[apache] / CHANGES
1                                                          -*- coding: utf-8 -*-
2 Changes with Apache 2.5.0
3
4   *) mod_lua: Add bindings for apr_dbd/mod_dbd database access
5      [Daniel Gruno]
6      
7   *) mod_authn_file, mod_authn_dbd, mod_authn_dbm, mod_authn_socache:
8      Cache the result of the most recent password hash verification for every
9      keep-alive connection. This saves some expensive calculations.
10      [Stefan Fritsch]
11
12   *) http: Remove support for Request-Range header sent by Navigator 2-3 and
13      MSIE 3. [Stefan Fritsch]
14
15   *) core, http: Extend HttpProtocol with an option to enforce stricter HTTP
16      conformance or to only log the found problems. [Stefan Fritsch]
17
18   *) core: Correctly parse an IPv6 literal host specification in an absolute
19      URL in the request line. [Stefan Fritsch]
20
21   *) mod_ssl: add support for subjectAltName-based host name checking
22      in proxy mode. PR 54030. [Kaspar Brand]
23
24   *) mpm_event: Check that AsyncRequestWorkerFactor is not negative. PR 54254.
25      [Jackie Zhang <jackie qq zhang gmail com>]
26
27   *) httxt2dbm: Correct length computation for the 'value' stored in the DBM file
28      PR 47650 [jon buckybox com]
29
30   *) mod_ssl: Add support for OpenSSL configuration commands [Stephen Henson]
31
32   *) EventOpt MPM
33
34   *) mod_proxy_balancer: Improve output
35      PR 52478 [Danijel <dt-ng rbfh de>]
36   
37   *) core: Add LogLevelOverride directive that allows to override the
38      loglevel for clients from certain IPs. This also works for things
39      like the SSL handshake where <If> LogLevel ... </If> is evaluated
40      too late. [Stefan Fritsch]
41
42   *) core: Add new directive Warning to issue warnings from a configuration
43      file. Both Warning and Error now generate a timestamped log message.
44      [Fabien Coelho] 
45
46   *) mod_status: Print out list of times since a Vhost was last used.
47      [Jim Jagielski]
48
49   *) ap_expr: Add SERVER_PROTOCOL_VERSION, ..._MAJOR, and ..._MINOR
50      variables. [Stefan Fritsch]
51
52   *) core: New directive RegisterHttpMethod for registering non-standard
53      HTTP methods. [Stefan Fritsch]
54
55   *) core: New directive HttpProtocol which allows to disable HTTP/0.9
56      support. [Stefan Fritsch]
57
58   *) mod_allowhandlers: New module to forbid specific handlers for specific
59      directories. [Stefan Fritsch]
60
61   *) configure: Fix processing of --disable-FEATURE for various features.
62      [Jeff Trawick]
63
64   *) mod_systemd: New module, for integration with systemd on Linux.
65      [Jan Kaluza <jkaluza redhat.com>]
66
67   *) --with-module: Fix failure to integrate them into some existing
68      module directories.  PR 40097.  [Jeff Trawick]
69
70   *) mod_cache_socache: New cache implementation backed by mod_socache
71      that replaces mod_mem_cache removed from httpd v2.2. [Graham
72      Leggett]
73
74   *) core: Add dirwalk_stat and pre_htaccess hooks, allowing mpm-itk
75      to be used without patches to httpd core.  [Jeff Trawick]
76
77   *) mod_proxy: Allow for persistence of local changes (via the
78      balancer-manager) between graceful and normal restarts.
79      [Jim Jagielski]
80
81   *) mod_lua: Add LuaInputFilter/LuaOutputFilter for creating content
82      filters in Lua [Daniel Gruno]
83
84   *) WinNT MPM: Store pid and generation for each thread in scoreboard
85      to allow tracking of threads from exiting children via mod_status
86      or other such mechanisms.  [Jeff Trawick]
87
88   *) mod_ssl: Catch missing or mismatched client cert/key pairs with
89      SSLProxyMachineCertificateFile/Path directives.  PR 52212.  
90      [Keith Burdis <keith burdis.org>, Joe Orton]
91
92   *) mod_lua: Allow scripts handled by the lua-script handler to return 
93      a status code to the client (such as a 302 or a 500) [Daniel Gruno]
94
95   *) mod_lua: Decline handling 'lua-script' if the file doesn't exist,
96      rather than throwing an internal server error. [Daniel Gruno]
97
98   *) mod_lua: Add functions r:flush and r:sendfile as well as additional
99      request information to the request_rec structure. [Daniel Gruno]
100
101   *) mod_lua: Add a server scope for Lua states, which creates a pool of
102      states with managable minimum and maximum size. [Daniel Gruno]
103
104   *) core: Add post_perdir_config hook.
105      [Steinar Gunderson <sgunderson bigfoot.com>]
106
107   *) mod_lua: Add new directive, LuaMapHandler, for dynamically mapping 
108      URIs to Lua scripts and functions using regular expressions.
109      [Daniel Gruno]
110
111   *) mod_lua: Add new directive LuaCodeCache for controlling in-memory
112      caching of lua scripts. [Daniel Gruno]
113
114   *) The following now respect DefaultRuntimeDir/DEFAULT_REL_RUNTIMEDIR:
115      - APIs: ap_log_pid(), ap_remove_pid, ap_read_pid()
116      - core: the scoreboard (ScoreBoardFile), pid file (PidFile), and
117        mutexes (Mutex)
118      - mod_cache: thundering herd lock directory
119      - mod_lbmethod_heartbeat, mod_heartmonitor: heartbeat storage file
120      - mod_ldap: shared memory cache
121      - mod_socache_shmcb, mod_socache_dbm: shared memory or dbm for cache
122      [Jeff Trawick]
123
124   *) mod_ssl: Add RFC 5878 support. [Ben Laurie]
125
126   *) suexec: Add --enable-suexec-capabilites support on Linux, to use
127      setuid/setgid capability bits rather than a setuid root binary.
128      [Joe Orton]
129
130   *) suexec: Add support for logging to syslog as an alternative to logging
131      to a file; configure --without-suexec-logfile --with-suexec-syslog.  
132      [Joe Orton]
133
134   *) mod_ssl: Add support for TLS Next Protocol Negotiation.  PR 52210.
135      [Matthew Steele <mdsteele google.com>]
136
137   *) various modules, rotatelogs: Replace use of apr_file_write() with
138      apr_file_write_full() to prevent incomplete writes. PR 53131.
139      [Nicolas Viennot <apache viennot biz>, Stefan Fritsch]
140
141   *) cross-compile: allow to provide CC_FOR_BUILD so that gen_test_char will
142      be compiled by the build compiler instead of the host compiler.
143      Also set CC_FOR_BUILD to 'cc' when cross-compilation is detected.
144      PR 51257. [Guenter Knauf]
145
146   *) core: In maintainer mode, replace apr_palloc with a version that
147      initializes the allocated memory with non-zero values, except if
148      AP_DEBUG_NO_ALLOC_POISON is defined. [Stefan Fritsch]
149
150   *) mod_policy: Add a new testing module to help server administrators
151      enforce a configurable level of protocol compliance on their
152      servers and application servers behind theirs. [Graham Leggett]
153
154   *) mod_firehose: Add a new debugging module able to record traffic
155      passing through the server in such a way that connections and/or
156      requests be reconstructed and replayed. [Graham Leggett]
157
158   *) mod_noloris
159
160   *) APREQ
161
162   *) Simple MPM
163
164   *) mod_serf
165
166   [Apache 2.5.0-dev includes those bug fixes and changes with the
167    Apache 2.4.xx tree as documented below, except as noted.]
168
169 Changes with Apache 2.4.x and later:
170
171   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/CHANGES?view=markup
172
173 Changes with Apache 2.2.x and later:
174
175   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/CHANGES?view=markup
176
177 Changes with Apache 2.0.x and later:
178
179   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.0.x/CHANGES?view=markup
180