]> granicus.if.org Git - apache/blob - STATUS
Vote.
[apache] / STATUS
1 APACHE 2.4 STATUS:                        -*- mode: text; coding: utf-8 -*-
2 Last modified at [$Date$]
3
4 The current version of this file can be found at:
5
6   * http://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x/STATUS
7
8 Documentation status is maintained separately and can be found at:
9
10   * docs/STATUS in this source tree, or
11   * http://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x/docs/STATUS
12
13 The current development branch of this software can be found at:
14
15   * http://svn.apache.org/repos/asf/httpd/httpd/trunk
16
17 Consult the following STATUS files for information on related projects:
18
19   * http://svn.apache.org/repos/asf/apr/apr/trunk/STATUS
20   * http://svn.apache.org/repos/asf/apr/apr/branches/1.4.x/STATUS
21   * http://svn.apache.org/repos/asf/apr/apr-util/branches/1.4.x/STATUS
22
23 Patches considered for backport are noted in their branches' STATUS:
24
25   * http://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x/STATUS
26   * http://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x/STATUS
27   * http://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x/STATUS
28
29
30
31 Release history:
32     [NOTE that x.{odd}.z versions are strictly Alpha/Beta releases,
33           while x.{even}.z versions are Stable/GA releases.]
34
35     2.4.11  : In development.
36     2.4.10  : Tagged on July 15, 2014. Released July 21, 2014
37     2.4.9   : Tagged on March 13, 2014. Released on March 17, 2014
38     2.4.8   : Tagged on March 11, 2014. Not released.
39     2.4.7   : Tagged on November 19, 2013. Released on Nov 25, 2013
40     2.4.6   : Tagged on July 15, 2013. Released July, 22, 2013
41     2.4.5   : Tagged on July 11, 2013, not released.
42     2.4.4   : Tagged on February 18, 2013. Released Feb 25, 2013
43     2.4.3   : Tagged on August 17, 2012. Released Aug 18, 2012
44     2.4.2   : Tagged on April 5, 2012. Released Apr 17, 2012.
45     2.4.1   : Tagged on February 13, 2012. Released Feb 21, 2012.
46     2.4.0   : Tagged on January 16, 2012, not released.
47     2.3.16  : Tagged on December 15, 2011.
48     2.3.15  : Tagged on November 8, 2011. Released Nov. 15, 2011.
49     2.3.14  : Tagged on August 1, 2011. Released Aug. 9, 2011.
50     2.3.13  : Tagged on June 28, 2011, not released.
51     2.3.12  : Tagged on May 11, 2011. Released May 23, 2011.
52     2.3.11  : Released as Beta on March 7, 2011.
53     2.3.10  : Tagged on December 13, 2010. Released Dec 21, 2010.
54     2.3.9   : Tagged on November 23, 2010, not released.
55     2.3.8   : Tagged on August 24, 2010.
56     2.3.7   : Tagged on August 19, 2010, not released.
57     2.3.6   : Released on June 21, 2010.
58     2.3.5   : Released on January 26, 2010.
59     2.3.4   : Released on December 8, 2009.
60     2.3.3   : Tagged on November 11, 2009, not released.
61     2.3.2   : Tagged on March 23, 2009, not released.
62     2.3.1   : Tagged on January 2, 2009, not released.
63     2.3.0   : Tagged on December 6, 2008, not released.
64
65 Contributors looking for a mission:
66
67   * Just do an egrep on "TODO" or "XXX" in the source.
68
69   * Review the bug database at: http://issues.apache.org/bugzilla/
70
71   * Review the "PatchAvailable" bugs in the bug database:
72
73     https://issues.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=Apache+httpd-2&keywords=PatchAvailable
74
75     After testing, you can append a comment saying "Reviewed and tested".
76
77   * Open bugs in the bug database.
78
79   * See also the STATUS file in the docs/ directory, which lists documentation-specific TODO items.
80
81
82 CURRENT RELEASE NOTES:
83
84   * Forward binary compatibility is expected of Apache 2.4.x releases, such
85     that no MMN major number changes will occur after 2.4.1.  Such changes can
86     only be made in the trunk.
87
88   * All commits to branches/2.4.x must be reflected in SVN trunk,
89     as well, if they apply.  Logical progression is commit to trunk
90     then merge into branches/2.4.x, as applicable.
91
92   * Current exceptions for RTC for this branch:
93     . mod_lua
94     . documentation
95     . non-Unix build
96     . non-Unix, single-platform code
97
98 RELEASE SHOWSTOPPERS:
99
100
101
102 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
103   [ start all new proposals below, under PATCHES PROPOSED. ]
104
105
106
107 PATCHES PROPOSED TO BACKPORT FROM TRUNK:
108   [ New proposals should be added at the end of the list ]
109
110    * mod_proxy_http: Avoid (unlikely) access to freed memory.
111      trunk patch: http://svn.apache.org/r1599486
112      2.4.x patch: trunk works
113      +1: ylavic, jorton, rjung (as is)
114      covener: I did not look in depth, but is the preceding log message also bad?
115      ylavic: No, this concerns the next for (;; e = APR_BUCKET_NEXT(e)) iteration.
116              We could also s/apr_bucket_delete/APR_BUCKET_REMOVE/ instead, but
117              stripping some (unhandled) buckets from the source brigade does
118              not look correct to me either (brigade *to is to be consumed, but
119              *from is still living, the caller may want to reuse it, eg:
120              https://issues.apache.org/bugzilla/attachment.cgi?id=31686).
121              Should we?
122
123    * mod_proxy: Preserve original request headers even if they differ
124                 from the ones to be forwarded to the backend. PR 45387.
125      trunk patch: http://svn.apache.org/r1588527
126      2.4.x patch: trunk works (modulo CHANGES)
127      +1: ylavic, rjung
128
129    * mod_proxy: Don't limit the size of the connectable Unix Domain Socket paths.
130                 [Graham Dumpleton, Christophe Jaillet, Yann Ylavic]
131      trunk patch: http://svn.apache.org/r1598946
132                   http://svn.apache.org/r1602989
133      2.4.x patch: http://people.apache.org/~ylavic/httpd-2.4.x-ap_proxy_connect_uds.patch
134                   (modulo CHANGES/MMN)
135      +1: ylavic, jim
136
137    * mod_ssl, event: Ensure that the SSL close notify alert is flushed to the client.
138                      PR54998.
139      trunk patch: http://svn.apache.org/r1601184
140                   http://svn.apache.org/r1601274
141                   http://svn.apache.org/r1601185
142      2.4.x patch: http://people.apache.org/~ylavic/httpd-2.4.x-SSL-shutdown.patch
143                   (modulo CHANGES/MMN)
144      +1: ylavic, rjung
145
146    * mod_proxy: Shutdown (eg. SSL close notify) the backend connection before closing.
147      trunk patch: http://svn.apache.org/r1601291
148                   http://svn.apache.org/r1601630
149      2.4.x patch: http://people.apache.org/~ylavic/httpd-2.4.x-proxy-SSL-shutdown.patch
150                   (modulo CHANGES)
151      note: depends on ap_shutdown_conn() from r1601185 above.
152      +1: ylavic, rjung
153
154    * http_protocol: fix logic in ap_method_list_(add|remove) in order:
155        - to correctly reset bits
156        - not to modify the 'method_mask' bitfield unnecessarily
157      trunk patch: http://svn.apache.org/r1610813
158      2.4.x patch: trunk patch works (modulo CHANGES)
159      +1: jailletc36, ylavic, rjung
160
161    * mpm_winnt service.c: Normalize all error and status messages, clean up
162      source formatting, and accept utf-8 service names/descriptions for i18n.
163      trunk patches: http://svn.apache.org/r1611165
164                     http://svn.apache.org/r1611169
165                     http://svn.apache.org/r1611244
166      2.4.x patches: trunk works
167      +1: wrowe
168
169    * doc: improve doxygen output for util_ebcdic.h and util_charset.h.
170      I propose it for vote because of the #if defined(DOXYGEN)
171      trunk patch: http://svn.apache.org/r1611858
172                   http://svn.apache.org/r1611908
173                   http://svn.apache.org/r1611916
174      2.4.x patch: trunk patch works
175      +1: jailletc36, rjung
176
177    * mod_ldap: 2.4.10 regression: Some authorization searches won't use AuthLDAPBindDN
178      which can lead to LDAP authz failurs if AuthLDAPBindDN had extra access. 
179      trunk patch: http://svn.apache.org/r1613682
180      2.4.x patch: trunk works + CHANGES referencing 2.4.10 regression
181      +1: covener, jim, rjung
182
183    * mod_dav: set r->status_line in dav_error_response.
184      It's used as argument in next ap_rvputs call. PR 55426.
185      trunk patch: http://svn.apache.org/r1527509
186      2.4.x patch: trunk works
187      +1: jkaluza, ylavic, rjung
188
189    * mod_proxy: Make worker name truncation a non-fatal error.
190      trunk patch: http://svn.apache.org/r1621367
191                   http://svn.apache.org/r1621372
192                   http://svn.apache.org/r1625952
193      2.4.x patch: http://people.apache.org/~jim/patches/worker-trunc.patch
194      +1: jim, ylavic
195
196    * mod_slotmem: Increase log level for some originally debug messages.
197      trunk patch: http://svn.apache.org/r1621373
198      2.4.x patch: trunk works
199                   http://people.apache.org/~jim/patches/slotmem-loglevel.patch
200      +1: jim, ylavic, rjung
201
202    * mod_systemd: New module, for integration with systemd on Linux.
203      trunk patch: http://svn.apache.org/r1393976
204                   http://svn.apache.org/r1393997
205                   http://svn.apache.org/r1484554
206                   http://svn.apache.org/r1528032
207                   http://svn.apache.org/r1528034
208                   http://svn.apache.org/r1614821
209                   http://svn.apache.org/r1618579
210                   http://svn.apache.org/r1618588
211      2.4.x patch: http://people.apache.org/~jkaluza/patches/mod_systemd/httpd-2.4.x-mod_systemd.patch
212      +1: jkaluza
213
214    * core: Add support for systemd socket activation.
215      trunk patch: http://svn.apache.org/r1511033
216                   http://svn.apache.org/r1608686
217                   http://svn.apache.org/r1608694
218                   http://svn.apache.org/r1608703
219                   http://svn.apache.org/r1608721
220                   http://svn.apache.org/r1608744
221      2.4.x patch: http://people.apache.org/~jkaluza/patches/mod_systemd/httpd-2.4.x-socket-activation.patch
222      +1: jkaluza
223
224    * mod_substitute: Fix memory limitation in case of regexp plus flatten.
225      trunk patch: http://svn.apache.org/r1628104
226                   http://svn.apache.org/r1628918 (CHANGES)
227      2.4.x patch: trunk works
228      +1: rjung
229
230    * mod_substitute: Make maximum line length configurable.
231      trunk patch: http://svn.apache.org/r1628919
232                   http://svn.apache.org/r1628950 (docs, adjust "compatibility")
233      2.4.x patch: trunk works modulo CHANGES and compatibility
234      +1: rjung
235
236    * mod_substitute: Restrict configuration in .htaccess to
237      FileInfo as documented.
238      trunk patch: http://svn.apache.org/r1628924
239      2.4.x patch: trunk works modulo CHANGES
240      +1: rjung
241
242    * mod_macro: Remove APLOG_NOERRNO. Add some APLOGNO. Fix some alignment.
243      trunk patch: http://svn.apache.org/r1612466
244      2.4.x patch: trunk works
245      +1: jailletc36, rjung
246
247    * various: Concat string at compile time when possible.
248      trunk patch: http://svn.apache.org/r1626050
249      2.4.x patch: trunk works
250      +1: jailletc36, rjung
251
252 OTHER PROPOSALS
253
254    * A list of further possible backports can be found at: 
255      http://people.apache.org/~rjung/patches/possible-backports-httpd-trunk-2_4.txt
256      If you want to propose one of those, please add them above.
257
258
259 PATCHES/ISSUES THAT ARE BEING WORKED
260
261
262 PATCHES/ISSUES THAT ARE STALLED
263
264   * core: Stop the HTTP_IN filter from attempting to write error buckets
265     to the output filters
266     trunk patch: https://svn.apache.org/viewvc?view=revision&revision=1482522
267                  https://svn.apache.org/viewvc?view=revision&revision=1482918
268     2.4.x patch: /* working on it */
269     +1:  jim
270
271   * mod_proxy: Ensure network errors detected by the proxy are returned as
272     504 Gateway Timout as opposed to 502 Bad Gateway
273     trunk patch: https://svn.apache.org/viewvc?view=revision&revision=1480058
274     2.4.x patch: trunk patch works modulo CHANGES
275     +1:
276     -1: rpluem: This change is still disputed. See
277         http://mail-archives.apache.org/mod_mbox/httpd-dev/201305.mbox/%3C1B16B9E3-87BA-4EEF-939C-7C7313B54714%40gbiv.com%3E
278
279   * cross-compile: allow to provide CC_FOR_BUILD so that gen_test_char will be
280     compiled by the build compiler instead of the host compiler.
281     Also set CC_FOR_BUILD to 'cc' when cross-compilation is detected.
282     Trunk patches: http://svn.apache.org/viewvc?view=revision&revision=1327907
283                    http://svn.apache.org/viewvc?view=revision&revision=1328390
284                    http://svn.apache.org/viewvc?view=revision&revision=1328714
285     2.4 patch: http://people.apache.org/~fuankg/diffs/httpd-2.4.x-cross_compile.diff
286     fuankg: on hold until we agree for a better and more simple solution ...
287
288    * mod_ssl: Add support for Next Protocol Negotiation.
289      Trunk patch:
290        http://svn.apache.org/viewvc?view=revision&revision=1332643
291      2.4.x patch:
292        Trunk patch works.
293      +1: ben
294      sf says: Needs r1345599, too.
295               And wrowe's comment about the 2.2 patch is also valid for 2.4:
296               http://svn.apache.org/viewvc?view=revision&revision=1354823
297
298    * Makefile.win: Added copying of .vbs / .wsf CGIs to Windows install target.
299                    Moved fixing of shebang to separate target so that it is
300                    no longer executed by default and all CGIs remain inactive.
301      trunk patch: http://svn.apache.org/viewvc?view=revision&revision=1387984
302                   http://svn.apache.org/viewvc?view=revision&revision=1421203
303                   http://svn.apache.org/viewvc?view=revision&revision=1421591
304      2.4.x patch: http://people.apache.org/~fuankg/diffs/httpd-2.4.x-Makefile.win.diff
305      +1 fuankg, gsmith
306      -.8: trawick
307           This commit is essentially deciding that an httpd install on
308           Windows now has printenv/testcgi written in 2 more languages.
309           To the extent that the usefulness is that it shows how to make scripts
310           of these types executable by httpd, I believe that the documentation
311           is the proper place to solve that.  To the extent that the usefullness
312           is to show how to implement a CGI in these particular languages, I believe
313           that the httpd distribution and documentation in general is not the
314           place for that.  Historically these types of scripts have caused problems
315           for downstream vendorsas well as newbies (and sometimes the intersection
316           of those two groups) who don't understand that these are information leaks
317           once they are enabled, and the subtlety of the way they are disabled ("Apache
318           messed up the first line; let me fix that") contributes to that.
319      fuankg notes: I've just added a big warning to all CGI scripts which should now
320           make absolutely clear that these CGIs are for testing purpose only - so those
321           who enable those scripts with inserting the right shebang should be 100% aware
322           of any risks (this should cover your last point).
323      jim: trawick, does the above address your concerns?
324      trawick: to some extent (somebody reading the script gets an idea)
325           Why isn't the configuration requirement documented instead
326           of described indirectly in a sample?
327           Why are these new samples added to the install without three
328           votes?  (I didn't veto it; put your name next to the two
329           existing ones and I'll be satisified that enough people
330           considered this addition as an appropriate solution for a
331           real httpd usability problem.)
332      wrowe: I'd agree with trawick, and suggest that these scripts can begin
333             their life somewhere in the manual/ tree.  This really seems like
334             the place where /usr/share/httpd/examples/ would be useful, but
335             there isn't an ordinary directory for that.  Since we want none
336             of the scripts to function 'out of the box', what about a new
337             cgi-examples/ dir alongside cgi-bin/? Otherwise manual/cgi/examples
338             might work?
339