nova/releasenotes/notes/optional_project_id-6aebf1cb394d498f.yaml
Sergey Nikitin eea7169474 Fixed incorrect names/comments for API version 2.18
Change Id92251243d9e92f30e466419110fce5781304823 added
API version 2.18, but because of a lot of rebases some
comments and class names has incorrect API version
(2.16 and 2.17). It may confuse developers in future.
These mistakes must be fixed.

Change-Id: I9719e9ddb3393f24976d1b5e4464e759daaa704e
2016-01-25 11:36:47 +03:00

17 lines
551 B
YAML

---
features:
- Provides API 2.18, which makes the use of project_ids in API urls
optional.
upgrade:
- In order to make project_id optional in urls, we must constrain
the set of allowed values for project_id in our urls. This
defaults to a regex of ``[0-9a-f\-]+``, which will match hex uuids
(with / without dashes), and integers. This covers all known
project_id formats in the wild.
If your site uses other values for project_id, you can set a site
specific validation with ``project_id_regex`` config variable.