Ocata Series Release Notes¶
3.10.0¶
Nouvelles fonctionnalités¶
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¶
Corrections de bugs¶
[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¶
Nouvelles fonctionnalités¶
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.
3.7.0¶
Nouvelles fonctionnalités¶
Added support for
domain configs
. A user can now upload domain specific configurations to keytone using the client. Seeclient.domain_configs.create
,client.domain_configs.delete
,client.domain_configs.get
andclient.domain_configs.update
.
3.6.0¶
Prelude¶
The data
argument for creating and updating credentials has been removed.
Autres notes¶
The
data
argument for creating and updating credentials was deprecated in the 1.7.0 release. It has been replaced by theblob
argument.