<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-glanceclient.git/glanceclient/v1, branch 2.13.2</title>
<subtitle>opendev.org: openstack/python-glanceclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/'/>
<entry>
<title>help text for container_format, disk_format</title>
<updated>2017-07-06T07:39:44+00:00</updated>
<author>
<name>M V P Nitesh</name>
<email>m.nitesh@nectechnologies.in</email>
</author>
<published>2017-07-06T07:39:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=4d0a3c309e8404ca94f94c320d63345a7c3b97b2'/>
<id>4d0a3c309e8404ca94f94c320d63345a7c3b97b2</id>
<content type='text'>
Updated the container_format and disk_format in v1 help text.

Change-Id: I4ebe4982c179450defe8ad5703999f4074ae32f8
Closes-Bug: #1659010
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Updated the container_format and disk_format in v1 help text.

Change-Id: I4ebe4982c179450defe8ad5703999f4074ae32f8
Closes-Bug: #1659010
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace six.iteritems() with .items()</title>
<updated>2017-02-08T08:33:46+00:00</updated>
<author>
<name>ji-xuepeng</name>
<email>ji.xuepeng@zte.com.cn</email>
</author>
<published>2017-02-08T08:27:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=5fca39dbde82d4cf836fa666b549b606f7ccdb7f'/>
<id>5fca39dbde82d4cf836fa666b549b606f7ccdb7f</id>
<content type='text'>
1.As mentioned in [1], we should avoid usingg
six.iteritems to achieve iterators. We can
use dict.items instead, as it will return
iterators in PY3 as well. And dict.items/keys
will more readable. 2.In py2, the performance
about list should be negligible, see the link [2].
[1] https://wiki.openstack.org/wiki/Python3
[2] http://lists.openstack.org/pipermail/openstack-dev/2015-June/066391.html

Change-Id: I71c13040318eca6e5ed993e8aa03f8003986a71c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
1.As mentioned in [1], we should avoid usingg
six.iteritems to achieve iterators. We can
use dict.items instead, as it will return
iterators in PY3 as well. And dict.items/keys
will more readable. 2.In py2, the performance
about list should be negligible, see the link [2].
[1] https://wiki.openstack.org/wiki/Python3
[2] http://lists.openstack.org/pipermail/openstack-dev/2015-June/066391.html

Change-Id: I71c13040318eca6e5ed993e8aa03f8003986a71c
</pre>
</div>
</content>
</entry>
<entry>
<title>Add ploop in disk_format</title>
<updated>2017-01-19T14:31:01+00:00</updated>
<author>
<name>Evgeny Antyshev</name>
<email>eantyshev@virtuozzo.com</email>
</author>
<published>2017-01-18T12:13:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=6ab6a740ff9346004609ff28fce39a7fe5560702'/>
<id>6ab6a740ff9346004609ff28fce39a7fe5560702</id>
<content type='text'>
"ploop" image format is supported in upstream Glance
https://review.openstack.org/341633

And similar patch has been added in python-openstackclient:
https://review.openstack.org/411405

Co-Authored-By: yuyafei &lt;yu.yafei@zte.com.cn&gt;
Change-Id: I1471224df97cf5fecfe7f02e549855af81c45848
Related-Bug: 1650342
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
"ploop" image format is supported in upstream Glance
https://review.openstack.org/341633

And similar patch has been added in python-openstackclient:
https://review.openstack.org/411405

Co-Authored-By: yuyafei &lt;yu.yafei@zte.com.cn&gt;
Change-Id: I1471224df97cf5fecfe7f02e549855af81c45848
Related-Bug: 1650342
</pre>
</div>
</content>
</entry>
<entry>
<title>Move old oslo-incubator code out of openstack/common</title>
<updated>2016-11-08T06:03:09+00:00</updated>
<author>
<name>Abhishek Kekane</name>
<email>abhishek.kekane@nttdata.com</email>
</author>
<published>2016-11-03T11:53:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=c2898998a7c28e4c6cff2f21acb4846638a810fb'/>
<id>c2898998a7c28e4c6cff2f21acb4846638a810fb</id>
<content type='text'>
As part of the first community-wide goal, teams were asked to
remove the openstack/common package of their projects if one
existed. This was a byproduct of the old oslo-incubator form
of syncing common functionality.

Package openstack/common/apiclient is moved to glanceclient/v1
package as it is used by v1 api only.

NOTE:
Removed glanceclient/common/base.py as it is deprecated and not
used anywhere.

Closes-Bug: #1639487
Change-Id: Ib3ac09743ce761ab0186e99e1c9de02517f89510
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As part of the first community-wide goal, teams were asked to
remove the openstack/common package of their projects if one
existed. This was a byproduct of the old oslo-incubator form
of syncing common functionality.

Package openstack/common/apiclient is moved to glanceclient/v1
package as it is used by v1 api only.

NOTE:
Removed glanceclient/common/base.py as it is deprecated and not
used anywhere.

Closes-Bug: #1639487
Change-Id: Ib3ac09743ce761ab0186e99e1c9de02517f89510
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed grammar in image-download command description</title>
<updated>2016-06-01T10:07:47+00:00</updated>
<author>
<name>Ihar Hrachyshka</name>
<email>ihrachys@redhat.com</email>
</author>
<published>2016-05-27T13:43:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=3a0007a1c34aea731e3f8ab55989f49a3e68baa0'/>
<id>3a0007a1c34aea731e3f8ab55989f49a3e68baa0</id>
<content type='text'>
Change-Id: Ie18e1bee3376fdc01685c6f1d3a949c6934296b3
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ie18e1bee3376fdc01685c6f1d3a949c6934296b3
</pre>
</div>
</content>
</entry>
<entry>
<title>Corrected wrong parameter in docstring</title>
<updated>2016-05-02T07:43:44+00:00</updated>
<author>
<name>PranaliD</name>
<email>pdeore@redhat.com</email>
</author>
<published>2016-05-02T07:17:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=41e10e369045a7d20f74971db7af81bd362e5d8d'/>
<id>41e10e369045a7d20f74971db7af81bd362e5d8d</id>
<content type='text'>
In docstring of list() method of glanceclient/v1/images.py,
parameter 'return_request_id' used within **kwargs is
'return_req_id', not 'return_request_id'.

Changed 'return_request_id' to 'return_req_id'.

Change-Id: I7f4a2a5af1b13184c67fa81be971dc5139569f8b
Closes-Bug: 1573049
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In docstring of list() method of glanceclient/v1/images.py,
parameter 'return_request_id' used within **kwargs is
'return_req_id', not 'return_request_id'.

Changed 'return_request_id' to 'return_req_id'.

Change-Id: I7f4a2a5af1b13184c67fa81be971dc5139569f8b
Closes-Bug: 1573049
</pre>
</div>
</content>
</entry>
<entry>
<title>Add versions list function</title>
<updated>2015-11-10T02:28:32+00:00</updated>
<author>
<name>wangxiyuan</name>
<email>wangxiyuan@huawei.com</email>
</author>
<published>2015-10-29T09:50:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=1f1934eb8277c7432e56da024bd8ce2171f3e8e6'/>
<id>1f1934eb8277c7432e56da024bd8ce2171f3e8e6</id>
<content type='text'>
This patch add a function to query the Glance API versions.

DocImpact

Change-Id: I21eeaee3db4ae23f608b68bb319772ac612975b4
Closes-bug: #1511180
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch add a function to query the Glance API versions.

DocImpact

Change-Id: I21eeaee3db4ae23f608b68bb319772ac612975b4
Closes-bug: #1511180
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Add support for setting Accept-Language header"</title>
<updated>2015-10-14T15:25:03+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2015-10-14T15:25:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=2fcff11b90748b32e6e38c7bdd6fe11103764485'/>
<id>2fcff11b90748b32e6e38c7bdd6fe11103764485</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for setting Accept-Language header</title>
<updated>2015-10-14T12:57:07+00:00</updated>
<author>
<name>Frode Nordahl</name>
<email>frode.nordahl@gmail.com</email>
</author>
<published>2015-08-03T08:04:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=ca050ed4c1426e278829dd54471bd63315090e68'/>
<id>ca050ed4c1426e278829dd54471bd63315090e68</id>
<content type='text'>
DocImpact

Closes-Bug: 1480529
Change-Id: I35a37d55edb700a5993bd5cc352335a87a15e47a</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
DocImpact

Closes-Bug: 1480529
Change-Id: I35a37d55edb700a5993bd5cc352335a87a15e47a</pre>
</div>
</content>
</entry>
<entry>
<title>Add period in help message</title>
<updated>2015-09-19T17:27:14+00:00</updated>
<author>
<name>Atsushi SAKAI</name>
<email>sakaia@jp.fujitsu.com</email>
</author>
<published>2015-09-18T05:19:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=05cd0c7508cdc2d83a61e0211938568fc7f397db'/>
<id>05cd0c7508cdc2d83a61e0211938568fc7f397db</id>
<content type='text'>
  Command help message uses help and CLI-Reference generation.
  and in convention, help message stops with period ".".

Change-Id: I652afdb5e4d69a0476a0a2dc313ae60ece3b7bbc
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  Command help message uses help and CLI-Reference generation.
  and in convention, help message stops with period ".".

Change-Id: I652afdb5e4d69a0476a0a2dc313ae60ece3b7bbc
</pre>
</div>
</content>
</entry>
</feed>
