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.
  • 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}

Deprecation Notes

  • The cinder endpoints command has been deprecated. This command performs an identity operation, and should now be handled by openstack catalog list. [Bug 1608166]

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 from available to None because unexpected state reset happens when resetting migration status.