summaryrefslogtreecommitdiff
path: root/docs/release-notes
diff options
context:
space:
mode:
authorGraham Dumpleton <Graham.Dumpleton@gmail.com>2018-10-22 15:01:30 +1100
committerGraham Dumpleton <Graham.Dumpleton@gmail.com>2018-10-22 15:01:30 +1100
commit8f2923073ddbdeb177cf036fa61551883cf38387 (patch)
treedf7d300b02a780ecdab863f5241dc59ce84b4369 /docs/release-notes
parent3781411da928e66c3ade6d00ca836b422e8551eb (diff)
parent2068d9eecd6c2787695c07769f764ebf2d6d209a (diff)
downloadmod_wsgi-4.6.5.tar.gz
Merge branch 'release/4.6.5'4.6.5
Diffstat (limited to 'docs/release-notes')
-rw-r--r--docs/release-notes/version-4.6.5.rst33
1 files changed, 33 insertions, 0 deletions
diff --git a/docs/release-notes/version-4.6.5.rst b/docs/release-notes/version-4.6.5.rst
new file mode 100644
index 0000000..b4fff42
--- /dev/null
+++ b/docs/release-notes/version-4.6.5.rst
@@ -0,0 +1,33 @@
+=============
+Version 4.6.5
+=============
+
+Version 4.6.5 of mod_wsgi can be obtained from:
+
+ https://codeload.github.com/GrahamDumpleton/mod_wsgi/tar.gz/4.6.5
+
+Bugs Fixed
+----------
+
+* When running ``mod_wsgi-express`` and serving up static files from the
+ document root, and the WSGI application was mounted at a sub URL using
+ ``--mount-point``, the static files in the document root outside of the
+ mount point for the WSGI application would no longer be accessible.
+
+* If no system mime types file can be found, fall back to ``/dev/null``
+ so that Apache can still at least start up.
+
+Features Changed
+----------------
+
+* On macOS, use ``/var/tmp`` as default parent directory for server root
+ directory rather than value of ``$TMPDIR``. The latter can produce a
+ path which is too long and UNIX socket cannot be written there.
+
+New Features
+------------
+
+* Now possible to use ``mod_wsgi-express`` in an a ``zipapp`` created using
+ ``shiv``. This entailed a special workaround to detect when ``shiv`` was
+ used, so that the unpacked ``site-packages`` directory could be added to
+ the Python module search path for ``mod_wsgi-express``.