Add release notes for 0.18.0

Changes included in this release:

    $ git log 0.17.0..0.18.0 --no-merges --oneline
    8b4456a Uncap library requirements for liberty
    76c9f68 Add unit tests for log_curl_request
    bd0aa06 Fix https stack trace on python 3.4 client
    c698b4e Fix client when using no ssl compression
    64a1a0f Add SSL cert verification regression tests
    c730266 Omit 'locations' as image-create parameter
    a6234d1 Creating task with invalid property crashes in py3
    fd2f989 Don't accept *args for client
    e386e44 Stub authentication requests rather than plugins
    27f70bb Remove keystoneclient mocks
    02b1a05 Replace mox in tests with requests-mock
    90407d9 Expose 'is_base' schema property attribute
    2c08b40 Validate tag name when filtering for images
    13b5a5a Remove redundant FakeSchemaAPI __init__ method
    c149a94 glance image-show now have --human-readable option
    42d7548 Test unit for checking update active images
    6d864ef Correct help messages for image-update command
    f272ab3 Generate API documentation
    a1bb3eb Use any instead of False in generator

Change-Id: I687bef82afd7bb9a379297d7128a009cc051ca75
This commit is contained in:
Louis Taylor 2015-04-22 14:45:30 +01:00
parent 825c4a5df2
commit 5fa71aa560
1 changed files with 19 additions and 0 deletions

View File

@ -53,6 +53,25 @@ See also :doc:`/man/glance`.
Release Notes
=============
0.18.0
------
* 1442664_, 1442883_, 1357430_: Fix errors when SSL compression is disabled
* 1399778_: Remove ``locations`` from image-create arguments
* 1439513_: Fix error on python 3 when creating a task with and invalid property
* Stop accepting ``*args`` in the main client interface
* Expose ``is_base`` schema property attribute, allowing the client to differentiate between base and custom image properties
* 1433962_: Validate whether a tag is valid when filtering for images. Invalid tags now raise an error rather than being ignored
* 1434381_: Add ``--human-readable`` option to ``image-show``
.. _1442664: https://bugs.launchpad.net/python-glanceclient/+bug/1442664
.. _1442883: https://bugs.launchpad.net/python-glanceclient/+bug/1442883
.. _1357430: https://bugs.launchpad.net/python-glanceclient/+bug/1357430
.. _1399778: https://bugs.launchpad.net/python-glanceclient/+bug/1399778
.. _1439513: https://bugs.launchpad.net/python-glanceclient/+bug/1439513
.. _1433962: https://bugs.launchpad.net/python-glanceclient/+bug/1433962
.. _1434381: https://bugs.launchpad.net/python-glanceclient/+bug/1434381
0.17.0
------