diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/release-notes/index.rst | 1 | ||||
-rw-r--r-- | docs/release-notes/version-4.4.2.rst | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/docs/release-notes/index.rst b/docs/release-notes/index.rst index 36b981a..25abbcd 100644 --- a/docs/release-notes/index.rst +++ b/docs/release-notes/index.rst @@ -5,6 +5,7 @@ Release Notes .. toctree:: :maxdepth: 2 + version-4.4.2.rst version-4.4.1.rst version-4.4.0.rst diff --git a/docs/release-notes/version-4.4.2.rst b/docs/release-notes/version-4.4.2.rst new file mode 100644 index 0000000..de07a50 --- /dev/null +++ b/docs/release-notes/version-4.4.2.rst @@ -0,0 +1,42 @@ +============= +Version 4.4.2 +============= + +Version 4.4.2 of mod_wsgi can be obtained from: + + https://codeload.github.com/GrahamDumpleton/mod_wsgi/tar.gz/4.4.2 + +Known Issues +------------ + +1. Although the makefiles for building mod_wsgi on Windows have now been +updated for the new source code layout, some issues are being seen with +mod_wsgi on Apache 2.4. These issues are still being investigated. As +most new changes in 4.X relate to mod_wsgi daemon mode, which is not +supported under Windows, you should keep using the last available binary +for version 3.X on Windows instead. Binaries compiled by a third party +can be obtained from: + +* http://www.lfd.uci.edu/~gohlke/pythonlibs/#mod_wsgi + +Features Changed +---------------- + +1. The ``--ssl-port`` option has been deprecated in favour of the option +``--https-port``. Strictly speaking SSL no longer exists and has been +supplanted with TLS. The 'S' in 'HTTPS' is actually meant to mean secure +and not 'SSL'. So change name of option to properly match terminoligy. + +Bugs Fixed +---------- + +1. When a default language was specified using the ``locale`` option to +the ``WSGIDaemonProcess`` directive or the ``--locale`` option to +``mod_wsgi-express``, if it did not actually match a locale supported by +the operating system, that the locale couldn't be set wasn't logged. Such +a message is now logged along with a suggestion to use ``C.UTF-8`` as a +fallback locale if the intent is to have ``UTF-8`` support. + +2. When using the ``--https-only`` option with ``mod_wsgi-express``, a HTTP +request was not being redirected to be a HTTPS request when there were no +server aliases specified. |