2016-01-15 07:46:41 -05:00
|
|
|
---
|
|
|
|
features:
|
|
|
|
|
2016-01-25 11:36:47 +03:00
|
|
|
- Provides API 2.18, which makes the use of project_ids in API urls
|
2016-01-15 07:46:41 -05:00
|
|
|
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.
|