blob: 0a93b64364400d82dea6e138fc810bb145f99fd0 [file] [log] [blame]
Felipe Monteiro74f8e7d2018-09-30 12:33:49 -04001---
2features:
3 - |
4 The exception class ``RbacMalformedException`` has been broken up into the
5 following discrete exceptions:
6
7 * ``RbacMissingAttributeResponseBody`` - incomplete means that the
8 response body (for show or list) is missing certain attributes
9 * ``RbacPartialResponseBody`` - partial means that a list response
10 only returned a subset of the possible results available.
11 * ``RbacEmptyResponseBody`` - empty means that the show or list
12 response body is entirely empty
13
14 Each of the exception classes above deals with a different type of failure
15 related to a soft authorization failure. This means that, rather than a
16 403 error code getting returned by the server, the response body is
17 incomplete in some way.
18upgrade:
19 - |
20 The exception class ``RbacMalformedException`` has been removed. Use one
21 of the following exception classes instead:
22
23 * ``RbacMissingAttributeResponseBody``
24 * ``RbacPartialResponseBody``
25 * ``RbacEmptyResponseBody``