Skip to content

Commit 8db6ab5

Browse files
Merge branch 'release/4.2.5'
2 parents 0abb042 + 5b94ba9 commit 8db6ab5

File tree

4 files changed

+26
-2
lines changed

4 files changed

+26
-2
lines changed

docs/release-notes/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Release Notes
55
.. toctree::
66
:maxdepth: 2
77

8+
version-4.2.5.rst
89
version-4.2.4.rst
910
version-4.2.3.rst
1011
version-4.2.2.rst

docs/release-notes/version-4.2.5.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
=============
2+
Version 4.2.5
3+
=============
4+
5+
Version 4.2.5 of mod_wsgi can be obtained from:
6+
7+
https://github.com/GrahamDumpleton/mod_wsgi/archive/4.2.5.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. When using Apache 2.4 with dynamically loaded MPM modules, mod_wsgi
21+
express was incorrectly trying to load more than one MPM module if more
22+
than one existed in the Apache modules directory.

src/server/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1089,6 +1089,7 @@ def _mpm_module_defines(modules_directory):
10891089
if os.path.exists(os.path.join(modules_directory,
10901090
'mod_mpm_%s.so' % name)):
10911091
result.append('-DWSGI_MPM_%s_MODULE' % name.upper())
1092+
break
10921093
return result
10931094

10941095
def _cmd_setup_server(command, args, options):

src/server/wsgi_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525

2626
#define MOD_WSGI_MAJORVERSION_NUMBER 4
2727
#define MOD_WSGI_MINORVERSION_NUMBER 2
28-
#define MOD_WSGI_MICROVERSION_NUMBER 4
29-
#define MOD_WSGI_VERSION_STRING "4.2.4"
28+
#define MOD_WSGI_MICROVERSION_NUMBER 5
29+
#define MOD_WSGI_VERSION_STRING "4.2.5"
3030

3131
/* ------------------------------------------------------------------------- */
3232

0 commit comments

Comments
 (0)