Current Series Release Notes

12.0.0-10

New Features

  • A new module, placement.wsgi, has been added as a place to gather WSGI application objects. This is intended to ease deployment by providing a consistent location for these objects. For example, if using uWSGI then instead of:

    [uwsgi]
    wsgi-file = /bin/placement-api
    

    You can now use:

    [uwsgi]
    module = placement.wsgi.api:application
    

    This also simplifies deployment with other WSGI servers that expect module paths such as gunicorn.

Upgrade Notes

  • Python 3.8 support was dropped. The minimum version of Python now supported is Python 3.9.