1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
===========
Version 2.3
===========
Version 2.3 of mod_wsgi can be obtained from:
http://modwsgi.googlecode.com/files/mod_wsgi-2.3.tar.gz
**Note that this is a quick followup to version 2.2 of mod_wsgi to rectify
significant problem introduced by that release. You should therefore also
refer to:**
* :doc:`version-2.2`
Bug Fixes
---------
1. Fixed problem introduced in version 2.2 of mod_wsgi whereby use of
daemon mode would cause CGI scripts to fail.
It is quite possible that the bug could also have caused failures with other
Apache modules that relied on registering of cleanup functions against
Apache configuration memory pool.
For details see:
http://groups.google.com/group/modwsgi/browse_frm/thread/79a86f8faffe7dcf
2. When using setproctitle() on BSD systems, first argument should be a
printf style format string with values to fill out per format as additional
arguments. Code was supplying value to be displayed as format string which
meant that if it contained any printf type format sequences, could cause
process to crash as corresponding arguments wouldn't have ben provided.
For details see:
https://code.google.com/archive/p/modwsgi/issues/90
|