<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-heatclient.git, branch stable/liberty</title>
<subtitle>opendev.org: openstack/python-heatclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-heatclient.git/'/>
<entry>
<title>Updated from global requirements</title>
<updated>2016-10-18T22:44:02+00:00</updated>
<author>
<name>OpenStack Proposal Bot</name>
<email>openstack-infra@lists.openstack.org</email>
</author>
<published>2016-10-18T22:44:02+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=67e5cf52dafdfc57c9b9ad0da10ae70c05bbf67f'/>
<id>67e5cf52dafdfc57c9b9ad0da10ae70c05bbf67f</id>
<content type='text'>
Change-Id: I4c19bb1fa5303c2bc7b7a4ae6b148cde105ba10d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I4c19bb1fa5303c2bc7b7a4ae6b148cde105ba10d
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix error message on authentication failure</title>
<updated>2016-01-19T19:45:58+00:00</updated>
<author>
<name>neetu</name>
<email>nutshi@gmail.com</email>
</author>
<published>2016-01-05T19:19:25+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=98b45c35913ab96f161ef695ff99f69a968130b5'/>
<id>98b45c35913ab96f161ef695ff99f69a968130b5</id>
<content type='text'>
Removing the "please try again" part of the error message on authentication failure.

Change-Id: I5b7424915d7a62e08b4e6cb1cd89c7b304afa24b
closes-Bug: #1526944
(cherry-picked from 63c3bf0fbd43b9ac55f545763342832d4a142b53
                and 39195c4b5dcb61e2d5d1d611860041c9239a315b)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Removing the "please try again" part of the error message on authentication failure.

Change-Id: I5b7424915d7a62e08b4e6cb1cd89c7b304afa24b
closes-Bug: #1526944
(cherry-picked from 63c3bf0fbd43b9ac55f545763342832d4a142b53
                and 39195c4b5dcb61e2d5d1d611860041c9239a315b)
</pre>
</div>
</content>
</entry>
<entry>
<title>Update --template-object to support nested stacks</title>
<updated>2016-01-14T22:25:55+00:00</updated>
<author>
<name>Dan Prince</name>
<email>dprince@redhat.com</email>
</author>
<published>2016-01-08T20:52:36+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=66af4e366f22ce10fbac924bccf2a7f3cbdc312f'/>
<id>66af4e366f22ce10fbac924bccf2a7f3cbdc312f</id>
<content type='text'>
This patch updates heatclient so that it supports creating
stacks from an object (Swift container) which contain nested
stack relative links to nested stack URLs.

The motivation here:

We would like to be able to use heatclient to create stacks directly
from Swift containers in TripleO. The --template-object support already
exists and is great... it just needs to support loading the associated
nested stacks as well.

Change-Id: I53ac83e9f9985224d19993935467c03611aaef6a
Closes-bug: #1532326
(cherry picked from commit 3b242e95750d323f5e2d2a439d37ce16c378820e)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch updates heatclient so that it supports creating
stacks from an object (Swift container) which contain nested
stack relative links to nested stack URLs.

The motivation here:

We would like to be able to use heatclient to create stacks directly
from Swift containers in TripleO. The --template-object support already
exists and is great... it just needs to support loading the associated
nested stacks as well.

Change-Id: I53ac83e9f9985224d19993935467c03611aaef6a
Closes-bug: #1532326
(cherry picked from commit 3b242e95750d323f5e2d2a439d37ce16c378820e)
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix Resource.__eq__ mismatch semantics of object equal</title>
<updated>2016-01-14T22:20:08+00:00</updated>
<author>
<name>Rui Chen</name>
<email>chenrui.momo@gmail.com</email>
</author>
<published>2015-12-01T12:16:34+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=f0877c532e3dc7b1a774ca89a874c6ba7be2d925'/>
<id>f0877c532e3dc7b1a774ca89a874c6ba7be2d925</id>
<content type='text'>
The __eq__ of apiclient.base.Resource will return True,
if the two objects have same id, even if they have different
other attributes value. The behavior is weird and don't
match the semantics of object equal. The objects that have
different value should be different objects.
Fix this issue and add some test cases in this patch.

Change-Id: I5904b82d80d6011c1c3f220c357cc14e8d98da61
Closes-Bug: #1499369
(cherry picked from commit aeea4ec943caddac3fc74f4b1d3dce603f0b251f)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The __eq__ of apiclient.base.Resource will return True,
if the two objects have same id, even if they have different
other attributes value. The behavior is weird and don't
match the semantics of object equal. The objects that have
different value should be different objects.
Fix this issue and add some test cases in this patch.

Change-Id: I5904b82d80d6011c1c3f220c357cc14e8d98da61
Closes-Bug: #1499369
(cherry picked from commit aeea4ec943caddac3fc74f4b1d3dce603f0b251f)
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix environment files parsing bug for stack-adopt</title>
<updated>2016-01-13T02:58:08+00:00</updated>
<author>
<name>zengyingzhe</name>
<email>zengyingzhe@huawei.com</email>
</author>
<published>2015-11-02T01:54:14+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=6fcf1e82a87dfda78aee707a2f05cc520a764050'/>
<id>6fcf1e82a87dfda78aee707a2f05cc520a764050</id>
<content type='text'>
Should use process_multiple_environments_and_files
to parse the environment file arguments instead.

Change-Id: I2f00df78462f1468ff12f7f9f8ca8a5d4c2d181b
Closes-Bug: #1510818
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Should use process_multiple_environments_and_files
to parse the environment file arguments instead.

Change-Id: I2f00df78462f1468ff12f7f9f8ca8a5d4c2d181b
Closes-Bug: #1510818
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix error in stack-list metadata</title>
<updated>2016-01-13T02:57:28+00:00</updated>
<author>
<name>Bryan Jones</name>
<email>jonesbr@us.ibm.com</email>
</author>
<published>2015-10-15T18:18:35+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=706fabe0c88827e60d27f5010a280b5f72fbdcab'/>
<id>706fabe0c88827e60d27f5010a280b5f72fbdcab</id>
<content type='text'>
In the --sort-keys option of the stack-list command, the metadata
lists keys separated by commas instead of semicolons.

Change-Id: I166d4dc48b97786a29c5d9ef6a5fb9411e80d6b1
(cherry picked from commit 1c89d67d4dab5828d0ca3f1637b719567adb03aa)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In the --sort-keys option of the stack-list command, the metadata
lists keys separated by commas instead of semicolons.

Change-Id: I166d4dc48b97786a29c5d9ef6a5fb9411e80d6b1
(cherry picked from commit 1c89d67d4dab5828d0ca3f1637b719567adb03aa)
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix the bug when showing event in log format</title>
<updated>2016-01-13T02:56:41+00:00</updated>
<author>
<name>zengyingzhe</name>
<email>zengyingzhe@huawei.com</email>
</author>
<published>2015-09-28T10:40:25+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=5d02fc7808c1e46d17e52e73ba69d223e76d7bd8'/>
<id>5d02fc7808c1e46d17e52e73ba69d223e76d7bd8</id>
<content type='text'>
The event time displayed in log format is truncated, because the event
log formater of heatclient resolves the event_time string incorrectly.
Exchange the date and time fields splitted from event_time attribute,
and don't truncate the last character of time_date[1].

Closes-Bug: #1498283
Change-Id: If94093e2b0531a78c26ba9baeceafc19b61df5f8
(cherry picked from commit 35dd0f21df68bab229b04e6c4cceff3ee477b482)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The event time displayed in log format is truncated, because the event
log formater of heatclient resolves the event_time string incorrectly.
Exchange the date and time fields splitted from event_time attribute,
and don't truncate the last character of time_date[1].

Closes-Bug: #1498283
Change-Id: If94093e2b0531a78c26ba9baeceafc19b61df5f8
(cherry picked from commit 35dd0f21df68bab229b04e6c4cceff3ee477b482)
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated from global requirements</title>
<updated>2015-12-16T08:20:29+00:00</updated>
<author>
<name>OpenStack Proposal Bot</name>
<email>openstack-infra@lists.openstack.org</email>
</author>
<published>2015-12-16T08:20:29+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=cc7e250789f4f74aef707d8665e6f75c230a78ab'/>
<id>cc7e250789f4f74aef707d8665e6f75c230a78ab</id>
<content type='text'>
Change-Id: I439a5321f5b5b483bf2490d766c817168131f3ae
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I439a5321f5b5b483bf2490d766c817168131f3ae
</pre>
</div>
</content>
</entry>
<entry>
<title>Add option for detailed template error</title>
<updated>2015-11-26T11:45:23+00:00</updated>
<author>
<name>Peter Razumovsky</name>
<email>prazumovsky@mirantis.com</email>
</author>
<published>2015-10-08T14:22:59+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=d812114ec08b70e840a7de5dd5116759a1dce41e'/>
<id>d812114ec08b70e840a7de5dd5116759a1dce41e</id>
<content type='text'>
NOTE: The title of original patch is incorrect, because
patch adds additional yaml parsing with detailed error,
but there's no adding new option for this.

If there is some error during parsing template or
env file, CSafeLoader errors doesn't contains snippet
from template. So, we need to use SafeLoader for more
informative error with snippet from parsed template.

Change-Id: Ied0a573a00eb5f564dea0c636da1301de5de9ea7
Closes-bug: #1496361
(cherry picked from commit 54a1715e348720ab31b5d2e38035bf429471cdbe)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
NOTE: The title of original patch is incorrect, because
patch adds additional yaml parsing with detailed error,
but there's no adding new option for this.

If there is some error during parsing template or
env file, CSafeLoader errors doesn't contains snippet
from template. So, we need to use SafeLoader for more
informative error with snippet from parsed template.

Change-Id: Ied0a573a00eb5f564dea0c636da1301de5de9ea7
Closes-bug: #1496361
(cherry picked from commit 54a1715e348720ab31b5d2e38035bf429471cdbe)</pre>
</div>
</content>
</entry>
<entry>
<title>Update .gitreview for stable/liberty</title>
<updated>2015-09-21T19:51:08+00:00</updated>
<author>
<name>Doug Hellmann</name>
<email>doug@doughellmann.com</email>
</author>
<published>2015-09-21T19:51:08+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=308f0f8e37608d11dd4bd4913dec9084eec9934a'/>
<id>308f0f8e37608d11dd4bd4913dec9084eec9934a</id>
<content type='text'>
Change-Id: Ief5c3fd5ae7c5db95f0f5ba85561b7f1432b6745
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ief5c3fd5ae7c5db95f0f5ba85561b7f1432b6745
</pre>
</div>
</content>
</entry>
</feed>
