File: version-4.4.21.rst

package info (click to toggle)
mod-wsgi 5.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,824 kB
  • sloc: ansic: 15,512; python: 3,697; makefile: 219; sh: 107
file content (37 lines) | stat: -rw-r--r-- 1,418 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
==============
Version 4.4.21
==============

Version 4.4.21 of mod_wsgi can be obtained from:

  https://codeload.github.com/GrahamDumpleton/mod_wsgi/tar.gz/4.4.21

For details on the availability of Windows binaries see:

  https://github.com/GrahamDumpleton/mod_wsgi/tree/master/win32

Features Changed
----------------

1. When any of the options ``--enable-debugger``, ``--enable-debugger``,
``--enable-coverage``, ``--enable-profiler``, ``--enable-recorder`` or
``--enable-gdb`` are used, debug module will now automatically be enabled.
Previously you had to also supply the ``--debug-mode`` option otherwise
these options wouldn't be honoured.

New Features
------------

1. Add a WSGI test application to ``mod_wsgi-express`` which returns back
details of the request headers, application environment and request content
as the response. This can be used for testing how requests are passed
through and also what the execution environment looks like. It can be used
by running::

    mod_wsgi-express start-server --application-type module mod_wsgi.server.environ

2. Added ``--entry-point`` option to ``mod_wsgi-express`` as more explicit
way of identifying the file or module name containing the WSGI application
entry point or description. This is in addition to simply being able to
list it without any option. The explicit way just makes it easier to see
the purpose when you have a long list of options.