Ocata Series Release Notes¶
3.10.0¶
New Features¶
Added ability to filter on multiple values with the same parameter key. For example, we can now filter on user names that contain both
test
anduser
usingkeystone.users.list(name__contains=['test', 'user'])
.
3.9.0¶
Bug Fixes¶
[bug 1616105] Only log the response body when the
Content-Type
header is set toapplication/json
. This avoids logging large binary objects (such as images). OtherContent-Type
will not be logged. AdditionalContent-Type
strings can be added as required.
The
X-Service-Token
header value is now properly masked, and is displayed as a hash value, in the log.
3.8.0¶
New Features¶
Added a
allow_expired
argument tovalidate
andget_token_data
in keystoneclient.v3.tokens. Setting this toTrue
, allos for a token validation query to fetch expired tokens.