Newton Series Release Notes¶
1.9.0¶
New Features¶
- Service listings will display additional “cluster” field when working with microversion 3.7 or higher.
- Add clustered services commands to list -summary and detailed- (cluster-list), show (cluster-show), and update (cluster-enable, cluster-disable). Listing supports filtering by name, binary, disabled status, number of hosts, number of hosts that are down, and up/down status. These commands require API version 3.7 or higher.
- Added support to log ‘x-openstack-request-id’ for each api call. Please refer, https://blueprints.launchpad.net/python-cinderclient/+spec/log-request-id for more details.
Add support for /messages API
- GET /messages
cinder –os-volume-api-version 3.3 message-list
- GET /messages/{id}
cinder –os-volume-api-version 3.3 message-show {id}
- DELETE /message/{id}
cinder –os-volume-api-version 3.3 message-delete {id}
1.7.0¶
New Features¶
Added support to return “x-openstack-request-id” header in request_ids attribute for better tracing.
For example:
>>> from cinderclient import client >>> cinder = client.Client('2', $OS_USER_NAME, $OS_PASSWORD, $OS_TENANT_NAME, $OS_AUTH_URL) >>> res = cinder.volumes.list() >>> res.request_ids
- Support –os-key option and OS_KEY environment variable which allows to provide client cert and its private key separately.
Bug Fixes¶
- Default value of reset-state
state
option is changed fromavailable
toNone
because unexpectedstate
reset happens when resetting migration status.