File tree 4 files changed +30
-2
lines changed
4 files changed +30
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ Release Notes
5
5
.. toctree ::
6
6
:maxdepth: 2
7
7
8
+ version-4.2.6.rst
8
9
version-4.2.5.rst
9
10
version-4.2.4.rst
10
11
version-4.2.3.rst
Original file line number Diff line number Diff line change
1
+ =============
2
+ Version 4.2.6
3
+ =============
4
+
5
+ Version 4.2.6 of mod_wsgi can be obtained from:
6
+
7
+ https://github.com/GrahamDumpleton/mod_wsgi/archive/4.2.6.tar.gz
8
+
9
+ Known Issues
10
+ ------------
11
+
12
+ 1. The makefiles for building mod_wsgi on Windows are currently broken and
13
+ need updating. As most new changes relate to mod_wsgi daemon mode, which is
14
+ not supported under Windows, you should keep using the last available
15
+ binary for version 3.X on Windows instead.
16
+
17
+ Bugs Fixed
18
+ ----------
19
+
20
+ 1. Apache 2.2.3 and older doesn't provide the ap_get_server_description()
21
+ function. Using mod_wsgi with such older versions would therefore cause
22
+ processes to crash when Apache was being started up. For older versions of
23
+ Apache now fallback to using ap_get_server_version() instead.
Original file line number Diff line number Diff line change @@ -1168,7 +1168,11 @@ InterpreterObject *newInterpreterObject(const char *name)
1168
1168
object = PyLong_FromLong (max_threads );
1169
1169
PyModule_AddObject (module , "threads_per_process" , object );
1170
1170
1171
+ #if AP_MODULE_MAGIC_AT_LEAST (20051115 ,4 )
1171
1172
str = ap_get_server_description ();
1173
+ #else
1174
+ str = ap_get_server_version ();
1175
+ #endif
1172
1176
#if PY_MAJOR_VERSION >= 3
1173
1177
object = PyUnicode_DecodeLatin1 (str , strlen (str ), NULL );
1174
1178
#else
Original file line number Diff line number Diff line change 25
25
26
26
#define MOD_WSGI_MAJORVERSION_NUMBER 4
27
27
#define MOD_WSGI_MINORVERSION_NUMBER 2
28
- #define MOD_WSGI_MICROVERSION_NUMBER 5
29
- #define MOD_WSGI_VERSION_STRING "4.2.5 "
28
+ #define MOD_WSGI_MICROVERSION_NUMBER 6
29
+ #define MOD_WSGI_VERSION_STRING "4.2.6 "
30
30
31
31
/* ------------------------------------------------------------------------- */
32
32
You can’t perform that action at this time.
0 commit comments