Skip to content

Commit 0b5a1a7

Browse files
Merge branch 'release/4.5.17'
2 parents f72a3e7 + 652de3c commit 0b5a1a7

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

docs/release-notes.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+
release-notes/version-4.5.17
89
release-notes/version-4.5.16
910
release-notes/version-4.5.15
1011
release-notes/version-4.5.14
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
==============
2+
Version 4.5.17
3+
==============
4+
5+
Version 4.5.17 of mod_wsgi can be obtained from:
6+
7+
https://codeload.github.com/GrahamDumpleton/mod_wsgi/tar.gz/4.5.17
8+
9+
Bugs Fixed
10+
----------
11+
12+
* Addition in ``mod_wsgi-express`` of ``--allow-override`` option in 4.5.16
13+
caused ``--url-alias`` option to break.

src/server/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,8 @@ def generate_apache_config(options):
10181018
directory = path
10191019

10201020
print(APACHE_ALIAS_DIRECTORY_CONFIG % dict(
1021-
mount_point=mount_point, directory=directory),
1021+
mount_point=mount_point, directory=directory,
1022+
allow_override=options['allow_override']),
10221023
file=fp)
10231024

10241025
else:

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 5
28-
#define MOD_WSGI_MICROVERSION_NUMBER 16
29-
#define MOD_WSGI_VERSION_STRING "4.5.16"
28+
#define MOD_WSGI_MICROVERSION_NUMBER 17
29+
#define MOD_WSGI_VERSION_STRING "4.5.17"
3030

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

0 commit comments

Comments
 (0)