keystone/releasenotes/notes/remove-all-but-one-validate-token-method-7fd7377e62a1bc62.yaml
Lance Bragstad 71134fbe1c One validate method to rule them all...
Regardless of persistence requirements or format, let's perform
token validation one way.

This simplifies the validation path of the token provider API.

Change-Id: Idb5de4459fd8bf83973ed74fccc275a64873c88c
2016-10-12 15:03:12 +00:00

16 lines
680 B
YAML

---
upgrade:
- The ``validate_v3_token()`` and
``validate_non_persistent_token()`` methods have been
removed from the token provider interface. The token
provider API now uses a single validation method
called ``validate_token()``. Having any validation method
defined except ``validate_token()`` will fail since the
interface no longer includes legacy methods. Please take
this into consideration and plan accordingly if you're
maintaining a custom token provider.
critical:
- If writing a custom token provider, see the upgrade
section about the removal of the ``validate_v3_token()``
and ``validate_non_persistent()`` token methods.