summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Dumpleton <Graham.Dumpleton@gmail.com>2022-09-12 11:05:54 +1000
committerGraham Dumpleton <Graham.Dumpleton@gmail.com>2022-09-12 11:05:54 +1000
commit68f9f4dc90afeb31e1ec3f84997d7e9106455eeb (patch)
tree600a251d9392e54b352a87856dde94b7308fef3c
parent3af5a868ad7f3becc52bd8e2acdb7bfd8bfc3a0c (diff)
downloadmod_wsgi-68f9f4dc90afeb31e1ec3f84997d7e9106455eeb.tar.gz
Add release notes for version 4.9.5 with details of LimitRequestBody issue.
-rw-r--r--docs/release-notes.rst1
-rw-r--r--docs/release-notes/version-4.9.4.rst18
2 files changed, 19 insertions, 0 deletions
diff --git a/docs/release-notes.rst b/docs/release-notes.rst
index ad6d55c..524296d 100644
--- a/docs/release-notes.rst
+++ b/docs/release-notes.rst
@@ -5,6 +5,7 @@ Release Notes
.. toctree::
:maxdepth: 2
+ release-notes/version-4.9.4
release-notes/version-4.9.3
release-notes/version-4.9.2
release-notes/version-4.9.1
diff --git a/docs/release-notes/version-4.9.4.rst b/docs/release-notes/version-4.9.4.rst
new file mode 100644
index 0000000..74fe6d7
--- /dev/null
+++ b/docs/release-notes/version-4.9.4.rst
@@ -0,0 +1,18 @@
+=============
+Version 4.9.4
+=============
+
+Version 4.9.4 of mod_wsgi can be obtained from:
+
+ https://codeload.github.com/GrahamDumpleton/mod_wsgi/tar.gz/4.9.4
+
+Bugs Fixed
+----------
+
+* Apache 2.4.54 changed the default value for ``LimitRequestBody`` from 0, which
+ indicates there is no limit, to 1Gi. If the Apache configuration supplied with
+ a distribution wasn't explicitly setting ``LimitRequestBody`` to 0 at global
+ server scope for the purposes of documenting the default, and it was actually
+ relying on the compiled in default, then when using mod_wsgi daemon mode, if a
+ request body size greater than 1Gi was encountered the mod_wsgi daemon mode
+ process would crash.