Skip to content

Commit a8c8c73

Browse files
Merge branch 'release/4.5.3'
2 parents 651f905 + 28a37dc commit a8c8c73

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
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.3
89
release-notes/version-4.5.2
910
release-notes/version-4.5.1
1011
release-notes/version-4.5.0

docs/release-notes/version-4.5.3.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
=============
2+
Version 4.5.3
3+
=============
4+
5+
Version 4.5.3 of mod_wsgi can be obtained from:
6+
7+
https://codeload.github.com/GrahamDumpleton/mod_wsgi/tar.gz/4.5.3
8+
9+
Bugs Fixed
10+
----------
11+
12+
1. Ensure that startup messages are flushed so immediately visible in logs.

src/server/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3128,6 +3128,8 @@ def _cmd_setup_server(command, args, options):
31283128

31293129
print('Locale Setting :', options['locale'])
31303130

3131+
sys.stdout.flush()
3132+
31313133
if not options['rewrite_rules']:
31323134
options['rewrite_rules'] = options['server_root'] + '/rewrite.conf'
31333135

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 2
29-
#define MOD_WSGI_VERSION_STRING "4.5.2"
28+
#define MOD_WSGI_MICROVERSION_NUMBER 3
29+
#define MOD_WSGI_VERSION_STRING "4.5.3"
3030

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

0 commit comments

Comments
 (0)