From 519672f5d5251ea193f08f967a9216848d209916 Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Thu, 19 Feb 2015 13:40:19 +0000 Subject: [PATCH] Add release notes for 0.16.0 This adds release notes for the following commits: $ git log --oneline --no-merges 0.15.0..HEAD f7cdc3e Glance image delete output a3eaafe Updated from global requirements e99e0c8 Change oslo.utils to oslo_utils 96ff6e4 Return 130 for keyboard interrupt db743e3 Ignore NoneType when encoding headers 869e6ac Use utils.exit rather than print+sys.exit 5ec4a24 Remove uuidutils from openstack-common 93c9bc1 Add a `--limit` parameter to list operations 9daada9 Fixed CLI help for bash-completion 878bdcb Remove openstack.common.importutils b818826 Remove openstack.common.strutils 35c9b65 Adds basic examples of v2 API usage 363b170 Sync latest apiclient from oslo-inc f210751 Close streamed requests explicitly 62df6c6 Handle HTTP byte returns in python 3 aebbcff Updated from global requirements cb046bc Add validation to --property-filter in v1 shell 6eaaad5 Make non-boolean check strict 9054324 Disable progress bar if image is piped into client df02ee8 Fix Requests breaking download progress bar e3600ad Fix broken-pipe seen in glance-api b96f613 Update HTTPS certificate handling for pep-0476 8e8dde2 Output clear error message on invalid api version bd73a54 Add os_ prefix to project_domain_name/id 465c5ce Curl statements to include globoff for IPv6 URLs 9dcf3f1 Reduce the set of supported client SSL ciphers Change-Id: Ib97fd745f1f6761b88246351ce2c63d11ad29b01 --- doc/source/index.rst | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/doc/source/index.rst b/doc/source/index.rst index d2a16e5..1d92ab6 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -38,6 +38,38 @@ See also :doc:`/man/glance`. Release Notes ============= +0.16.0 +------ + +* Add --limit option to the v2 list operation. This allows a user to limit the + number of images requested from the glance server. Previously the client + would always go through the entire list of images +* The CLI exit code on keyboard interrupt is now ``130``, changed from ``1``. + +* 1370283_: The set of supported SSL ciphers is now reduced to a smaller and more secure subset +* 1384664_, 1402746_: Fix enabling the progress bar on download and upload when + image data is piped into the client causing the client to crash +* 1415935_: NoneType header values are now ignored when encoding headers +* 1341777_: Requests which are streamed are now explicitly closed when the end + of the stream has been reached +* 1394236_: The CLI is now strict about what it counts as a boolean, and exits + with an error if a non-boolean value is used as input to a boolean option +* 1401197_: The CLI is now strict about valid inputs to ``--os-image-api-version`` +* 1333119_: The CLI now raises a more useful error message when a user requests the deletion of an image which is already deleted +* 1384759_: Fix client erroring if ``--os-tenant-id`` and ``--os-tenant-name`` + are not defined +* 1228744_: Add globoff option to debug curl statements. This allows it to work with IPv6 addresses + +.. _1370283: https://bugs.launchpad.net/python-glanceclient/+bug/1370283 +.. _1384664: https://bugs.launchpad.net/python-glanceclient/+bug/1384664 +.. _1402746: https://bugs.launchpad.net/python-glanceclient/+bug/1402746 +.. _1415935: https://bugs.launchpad.net/python-glanceclient/+bug/1415935 +.. _1394236: https://bugs.launchpad.net/python-glanceclient/+bug/1394236 +.. _1401197: https://bugs.launchpad.net/python-glanceclient/+bug/1401197 +.. _1384759: https://bugs.launchpad.net/python-glanceclient/+bug/1384759 +.. _1228744: https://bugs.launchpad.net/python-glanceclient/+bug/1228744 +.. _1333119: https://bugs.launchpad.net/python-glanceclient/+bug/1333119 + 0.15.0 ------