<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-troveclient.git, branch stable/wallaby</title>
<subtitle>opendev.org: openstack/python-troveclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/'/>
<entry>
<title>Update TOX_CONSTRAINTS_FILE for stable/wallaby</title>
<updated>2021-03-18T10:45:26+00:00</updated>
<author>
<name>OpenStack Release Bot</name>
<email>infra-root@openstack.org</email>
</author>
<published>2021-03-18T10:45:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=d0fbad4aa2990548894f1f4b4778fbfb0f768f73'/>
<id>d0fbad4aa2990548894f1f4b4778fbfb0f768f73</id>
<content type='text'>
Update the URL to the upper-constraints file to point to the redirect
rule on releases.openstack.org so that anyone working on this branch
will switch to the correct upper-constraints list automatically when
the requirements repository branches.

Until the requirements repository has as stable/wallaby branch, tests will
continue to use the upper-constraints list on master.

Change-Id: I350ab2a4a4b621eadfeef23570701d03402681c8
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update the URL to the upper-constraints file to point to the redirect
rule on releases.openstack.org so that anyone working on this branch
will switch to the correct upper-constraints list automatically when
the requirements repository branches.

Until the requirements repository has as stable/wallaby branch, tests will
continue to use the upper-constraints list on master.

Change-Id: I350ab2a4a4b621eadfeef23570701d03402681c8
</pre>
</div>
</content>
</entry>
<entry>
<title>Update .gitreview for stable/wallaby</title>
<updated>2021-03-18T10:45:21+00:00</updated>
<author>
<name>OpenStack Release Bot</name>
<email>infra-root@openstack.org</email>
</author>
<published>2021-03-18T10:45:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=671bea40ebf852d4e7afd4725511ab8b6b928a5b'/>
<id>671bea40ebf852d4e7afd4725511ab8b6b928a5b</id>
<content type='text'>
Change-Id: I1b8d4d1046ab828996f3276993183051e4ee173d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I1b8d4d1046ab828996f3276993183051e4ee173d
</pre>
</div>
</content>
</entry>
<entry>
<title>Support to restore backup from data location</title>
<updated>2021-02-20T11:37:08+00:00</updated>
<author>
<name>Lingxian Kong</name>
<email>anlin.kong@gmail.com</email>
</author>
<published>2021-02-19T20:51:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=c7319d8fe8cb6cfd5c423472283aadffb12ed52c'/>
<id>c7319d8fe8cb6cfd5c423472283aadffb12ed52c</id>
<content type='text'>
This feature needs to bump python-troveclient major version as it
introduced an incompatible change for backup creation CLI.

Change-Id: I6fe94ccb552e2c0020150494ccc2ba6361184229
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This feature needs to bump python-troveclient major version as it
introduced an incompatible change for backup creation CLI.

Change-Id: I6fe94ccb552e2c0020150494ccc2ba6361184229
</pre>
</div>
</content>
</entry>
<entry>
<title>Bulk backup delete</title>
<updated>2021-02-18T22:07:23+00:00</updated>
<author>
<name>Lingxian Kong</name>
<email>anlin.kong@gmail.com</email>
</author>
<published>2021-02-18T21:57:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=4c71809fadc070aa0f1ec3b4082546d4d2cf0d51'/>
<id>4c71809fadc070aa0f1ec3b4082546d4d2cf0d51</id>
<content type='text'>
Change-Id: I100f8a302aeb498e3c0cebd8d36ef5fa437d444d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I100f8a302aeb498e3c0cebd8d36ef5fa437d444d
</pre>
</div>
</content>
</entry>
<entry>
<title>Switch to collections.abc.*</title>
<updated>2021-02-11T11:29:00+00:00</updated>
<author>
<name>Joel Capitao</name>
<email>jcapitao@redhat.com</email>
</author>
<published>2021-02-11T11:09:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=8271ba8719db5bba6a1bb45cd7e2f6750ae5f56a'/>
<id>8271ba8719db5bba6a1bb45cd7e2f6750ae5f56a</id>
<content type='text'>
The abstract base classes previously defined in 'collections' were moved
to 'collections.abc' in 3.3. The aliases will be removed in 3.10.
Preempt this change now with a simple find-replace:

  $ ag -l 'collections.($TYPES)' | \
      xargs sed -i 's/\(collections\)\.\($TYPES\)/\1.abc.\2/g'

Where $TYPES is the list of moved ABCs from [1].

[1] https://docs.python.org/3/library/collections.abc.html

Credit for this commit message to Stephen Finucane &lt;stephenfin@redhat.com&gt;

Change-Id: I782f2449832398cf2cfb886f561635de3d8ac18d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The abstract base classes previously defined in 'collections' were moved
to 'collections.abc' in 3.3. The aliases will be removed in 3.10.
Preempt this change now with a simple find-replace:

  $ ag -l 'collections.($TYPES)' | \
      xargs sed -i 's/\(collections\)\.\($TYPES\)/\1.abc.\2/g'

Where $TYPES is the list of moved ABCs from [1].

[1] https://docs.python.org/3/library/collections.abc.html

Credit for this commit message to Stephen Finucane &lt;stephenfin@redhat.com&gt;

Change-Id: I782f2449832398cf2cfb886f561635de3d8ac18d
</pre>
</div>
</content>
</entry>
<entry>
<title>add python37 setup.cfg</title>
<updated>2021-01-12T01:28:03+00:00</updated>
<author>
<name>likui</name>
<email>likui@yovole.com</email>
</author>
<published>2021-01-12T01:28:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=5188cc77c5433219583379efc5488edf376d9fdf'/>
<id>5188cc77c5433219583379efc5488edf376d9fdf</id>
<content type='text'>
Add python3.7 from setup.cfg, Wallaby's python
supported runtimes are python 3.7[1]:

[1] http://lists.openstack.org/pipermail/openstack-discuss/2021-January/019648.html

Change-Id: Ia1e29c25df0b3f47b9513b863a6f3866a7e802c3
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add python3.7 from setup.cfg, Wallaby's python
supported runtimes are python 3.7[1]:

[1] http://lists.openstack.org/pipermail/openstack-discuss/2021-January/019648.html

Change-Id: Ia1e29c25df0b3f47b9513b863a6f3866a7e802c3
</pre>
</div>
</content>
</entry>
<entry>
<title>remove unicode from code</title>
<updated>2021-01-03T05:03:32+00:00</updated>
<author>
<name>likui</name>
<email>likui@yovole.com</email>
</author>
<published>2021-01-03T05:03:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=3bdae37673376529c622452f2f29a0d389c0a7d5'/>
<id>3bdae37673376529c622452f2f29a0d389c0a7d5</id>
<content type='text'>
Change-Id: Iadc87779bf513c9d04847b6cf8ecbc60b300d7db
Implements: blueprint remove-unicode
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Iadc87779bf513c9d04847b6cf8ecbc60b300d7db
Implements: blueprint remove-unicode
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix a bug in print_list when using formatters</title>
<updated>2020-12-29T08:29:51+00:00</updated>
<author>
<name>zhangjunhui</name>
<email>zhangjunhui@yovole.com</email>
</author>
<published>2020-12-28T07:12:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=182301ac681d7f8e1e00a8163f6ac301aad9522b'/>
<id>182301ac681d7f8e1e00a8163f6ac301aad9522b</id>
<content type='text'>
If using formatters it will raise a error that local variable
'data' referenced before assignment

story: 2008472
task: 41511
Change-Id: I6c66139b54a203bd8af01e8534e4d7ce7735e02d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If using formatters it will raise a error that local variable
'data' referenced before assignment

story: 2008472
task: 41511
Change-Id: I6c66139b54a203bd8af01e8534e4d7ce7735e02d
</pre>
</div>
</content>
</entry>
<entry>
<title>remove py37</title>
<updated>2020-12-26T04:50:39+00:00</updated>
<author>
<name>likui</name>
<email>likui@yovole.com</email>
</author>
<published>2020-12-26T04:50:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=7c89521ae423e42d577e4d196f652d30470722fa'/>
<id>7c89521ae423e42d577e4d196f652d30470722fa</id>
<content type='text'>
Remove python3.7 from setup.cfg, since Wallaby's python
supported runtimes are python 3.6 and python 3.8[1]:

[1]: https://governance.openstack.org/tc/reference/runtimes/wallaby.html

Change-Id: I26e748d804743ffc3f30cd05347fdd51dedb051c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove python3.7 from setup.cfg, since Wallaby's python
supported runtimes are python 3.6 and python 3.8[1]:

[1]: https://governance.openstack.org/tc/reference/runtimes/wallaby.html

Change-Id: I26e748d804743ffc3f30cd05347fdd51dedb051c
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix getting server id for listing instances</title>
<updated>2020-12-23T00:29:41+00:00</updated>
<author>
<name>Lingxian Kong</name>
<email>anlin.kong@gmail.com</email>
</author>
<published>2020-12-23T00:21:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=961ef31807bb273635e66c0ec0058340e559224d'/>
<id>961ef31807bb273635e66c0ec0058340e559224d</id>
<content type='text'>
Just use 'server_id' from the instance response instead.

Story: 2008464
Task: 41496
Change-Id: Ib84dbd5fbd752ab7c7607ccb874663b01bfb7388
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Just use 'server_id' from the instance response instead.

Story: 2008464
Task: 41496
Change-Id: Ib84dbd5fbd752ab7c7607ccb874663b01bfb7388
</pre>
</div>
</content>
</entry>
</feed>
