<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-designateclient.git/designateclient/functionaltests/v2, branch master</title>
<subtitle>opendev.org: openstack/python-designateclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/'/>
<entry>
<title>Merge "Add hacking check for line continuation backslash"</title>
<updated>2023-02-21T05:29:36+00:00</updated>
<author>
<name>Zuul</name>
<email>zuul@review.opendev.org</email>
</author>
<published>2023-02-21T05:29:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=a95d0920c3b6709626b8316b785f65cbd712fc1f'/>
<id>a95d0920c3b6709626b8316b785f65cbd712fc1f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add hacking check for line continuation backslash</title>
<updated>2023-02-13T21:08:15+00:00</updated>
<author>
<name>Michael Johnson</name>
<email>johnsomor@gmail.com</email>
</author>
<published>2023-02-13T21:07:15+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=34292ee649e038631b39fb6bb969a83e6e901ff1'/>
<id>34292ee649e038631b39fb6bb969a83e6e901ff1</id>
<content type='text'>
This patch adds a hacking check for line continuation backslashes and fixes the occurences that existed in the code.

Change-Id: I13cd03e16698b7f1d8036815d12a665bd1156f2f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch adds a hacking check for line continuation backslashes and fixes the occurences that existed in the code.

Change-Id: I13cd03e16698b7f1d8036815d12a665bd1156f2f
</pre>
</div>
</content>
</entry>
<entry>
<title>Add shared zone commands</title>
<updated>2023-02-13T20:51:32+00:00</updated>
<author>
<name>Igor Malinovskiy</name>
<email>u.glide@gmail.com</email>
</author>
<published>2020-04-26T17:25:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=bc39d23ff5ff45e7669cb4be9d2c28b9242cf9d9'/>
<id>bc39d23ff5ff45e7669cb4be9d2c28b9242cf9d9</id>
<content type='text'>
Co-Authored-By: Michael Johnson &lt;johnsomor@gmail.com&gt;
Change-Id: Iea92371176d9126205384624a18a9097acb3daef
Partial-Bug: #1714088
Depends-On: https://review.opendev.org/#/c/726334/
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-Authored-By: Michael Johnson &lt;johnsomor@gmail.com&gt;
Change-Id: Iea92371176d9126205384624a18a9097acb3daef
Partial-Bug: #1714088
Depends-On: https://review.opendev.org/#/c/726334/
</pre>
</div>
</content>
</entry>
<entry>
<title>Stop to use the __future__ module.</title>
<updated>2021-11-23T17:27:14+00:00</updated>
<author>
<name>Hervé Beraud</name>
<email>hberaud@redhat.com</email>
</author>
<published>2020-06-02T18:47:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=f02f0090f53e8c187d14d25f29093b93852bfa3f'/>
<id>f02f0090f53e8c187d14d25f29093b93852bfa3f</id>
<content type='text'>
The __future__ module [1] was used in this context to ensure compatibility
between python 2 and python 3.

We previously dropped the support of python 2.7 [2] and now we only support
python 3 so we don't need to continue to use this module and the imports
listed below.

Imports commonly used and their related PEPs:
- `division` is related to PEP 238 [3]
- `print_function` is related to PEP 3105 [4]
- `unicode_literals` is related to PEP 3112 [5]
- `with_statement` is related to PEP 343 [6]
- `absolute_import` is related to PEP 328 [7]

[1] https://docs.python.org/3/library/__future__.html
[2] https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html
[3] https://www.python.org/dev/peps/pep-0238
[4] https://www.python.org/dev/peps/pep-3105
[5] https://www.python.org/dev/peps/pep-3112
[6] https://www.python.org/dev/peps/pep-0343
[7] https://www.python.org/dev/peps/pep-0328

Change-Id: I3dadeaa3242d0b55ba891a8eb4abb199a8d2468b
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The __future__ module [1] was used in this context to ensure compatibility
between python 2 and python 3.

We previously dropped the support of python 2.7 [2] and now we only support
python 3 so we don't need to continue to use this module and the imports
listed below.

Imports commonly used and their related PEPs:
- `division` is related to PEP 238 [3]
- `print_function` is related to PEP 3105 [4]
- `unicode_literals` is related to PEP 3112 [5]
- `with_statement` is related to PEP 343 [6]
- `absolute_import` is related to PEP 328 [7]

[1] https://docs.python.org/3/library/__future__.html
[2] https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html
[3] https://www.python.org/dev/peps/pep-0238
[4] https://www.python.org/dev/peps/pep-3105
[5] https://www.python.org/dev/peps/pep-3112
[6] https://www.python.org/dev/peps/pep-0343
[7] https://www.python.org/dev/peps/pep-0328

Change-Id: I3dadeaa3242d0b55ba891a8eb4abb199a8d2468b
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed zone transfer accept list command</title>
<updated>2020-10-23T10:07:09+00:00</updated>
<author>
<name>Mike Durnosvystov</name>
<email>glacierr.dev@gmail.com</email>
</author>
<published>2020-10-21T08:16:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=196cb61870f838396d208ce7fe175e004d0d1006'/>
<id>196cb61870f838396d208ce7fe175e004d0d1006</id>
<content type='text'>
Change-Id: If7ba1fc9dd3f9d67a49ad3b8ae4c0e0f9733195b
Closes-Bug: 1901172
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: If7ba1fc9dd3f9d67a49ad3b8ae4c0e0f9733195b
Closes-Bug: 1901172
</pre>
</div>
</content>
</entry>
<entry>
<title>Add tsig key support to python-designateclient</title>
<updated>2017-07-07T12:16:30+00:00</updated>
<author>
<name>Rudolf Vriend</name>
<email>rudolf.vriend@sap.com</email>
</author>
<published>2017-07-07T12:00:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=b741282eaff277977507379bbd0de3454eb66232'/>
<id>b741282eaff277977507379bbd0de3454eb66232</id>
<content type='text'>
This fix adds support for the designate tsig keys api to
python-designateclient.

It will add tsigkey related crud commands to the openstackclient.

Change-Id: I84336c3aca85ca62771fd2115481eda32ee980d2
Closes-Bug: #1702506
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fix adds support for the designate tsig keys api to
python-designateclient.

It will add tsigkey related crud commands to the openstackclient.

Change-Id: I84336c3aca85ca62771fd2115481eda32ee980d2
Closes-Bug: #1702506
</pre>
</div>
</content>
</entry>
<entry>
<title>Use tempest instead of Tempest-lib</title>
<updated>2016-11-22T03:52:16+00:00</updated>
<author>
<name>ghanshyam</name>
<email>ghanshyam.mann@nectechnologies.in</email>
</author>
<published>2016-11-22T03:48:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=e995bfd553fb0aad8bcb9896240ab561af2d634d'/>
<id>e995bfd553fb0aad8bcb9896240ab561af2d634d</id>
<content type='text'>
tempest-lib has been deprecated since a year. All
the interfaces available in tempest-lib are now available
in tempest/lib.

This patch make use of tempest/lib instead of tempest-lib.
Also add tempest in test-requirements.txt

Change-Id: I6cb50b68631391f0368e8a2e6133f94c1da52376
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
tempest-lib has been deprecated since a year. All
the interfaces available in tempest-lib are now available
in tempest/lib.

This patch make use of tempest/lib instead of tempest-lib.
Also add tempest in test-requirements.txt

Change-Id: I6cb50b68631391f0368e8a2e6133f94c1da52376
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix a race condition in one of the zone import tests</title>
<updated>2016-04-08T16:00:44+00:00</updated>
<author>
<name>Paul Glass</name>
<email>paul.glass@rackspace.com</email>
</author>
<published>2016-04-07T14:54:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=7b1caa5944cb8aeeee44386cd1f0c802e01207db'/>
<id>7b1caa5944cb8aeeee44386cd1f0c802e01207db</id>
<content type='text'>
This test would occasionally fail if the import was still PENDING when
the check asserted a COMPLETED status.

Change-Id: Ia2c320d50dd061980c27b0b7ec0cb6c65c13f6e7
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This test would occasionally fail if the import was still PENDING when
the check asserted a COMPLETED status.

Change-Id: Ia2c320d50dd061980c27b0b7ec0cb6c65c13f6e7
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Implement zone import"</title>
<updated>2016-04-06T16:58:09+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2016-04-06T16:58:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=a9385ac8f55560e73ab5d35e95b5c4c143474c26'/>
<id>a9385ac8f55560e73ab5d35e95b5c4c143474c26</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Show responses on zone and recordset deletes</title>
<updated>2016-03-30T17:07:48+00:00</updated>
<author>
<name>Paul Glass</name>
<email>paul.glass@rackspace.com</email>
</author>
<published>2016-03-30T16:39:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=a5e8206ed602c11cc2ea8fbca25b39999cfd5540'/>
<id>a5e8206ed602c11cc2ea8fbca25b39999cfd5540</id>
<content type='text'>
Change-Id: I1b15c64bac1bc495fe7aecbcf08c28b8ea41b5a7
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I1b15c64bac1bc495fe7aecbcf08c28b8ea41b5a7
</pre>
</div>
</content>
</entry>
</feed>
