Current Series Release Notes¶
30.0.0.0b2¶
New Features¶
A new file,
glance/wsgi/api.py
, has been added as a place to hold a WSGIapplication
object. 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/glance-wsgi-api
You can now use:
[uwsgi] module = glance.wsgi.api:application
This also simplifies deployment with other WSGI servers that expect module paths such as gunicorn.
Upgrade Notes¶
Support for running glance services in Windows operating systems has been removed.
Bug Fixes¶
Bug 2081009: oslo_config.cfg.NotInitializedError when switching default policy_file in oslo.policy
Bug 2086675: Suspected performance regression for RBD back end linked to location sorting
Other Notes¶
Updated the stores detail API response to include
fsid
field in RBD store properties.