2025.2 Series Release Notes¶
20.0.0¶
New Features¶
A new module,
masakari.wsgi, has been added as a place to gather WSGIapplicationobjects. 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/masakari-wsgi
You can now use:
[uwsgi] module = masakari.wsgi.api:application
This also simplifies deployment with other WSGI servers that expect module paths such as gunicorn.
Upgrade Notes¶
Support for Python 3.8 and Python 3.9 has been removed. The minimum supported version of Python is now Python 3.10.
The WSGI script
masakari-wsgihas been removed. Deployment tooling should instead reference the Python module path for the wsgi module in Masakari,masakari.wsgi.api:applicationif their chosen WSGI server supports this (gunicorn, uWSGI, etc.) or implement a.wsgiscript themselves if not (mod_wsgi).