<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-designateclient.git/designateclient/functionaltests, 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>Remove six and update lower-constraints appdirs</title>
<updated>2021-03-26T18:22:44+00:00</updated>
<author>
<name>Michael Johnson</name>
<email>johnsomor@gmail.com</email>
</author>
<published>2021-03-25T23:45:23+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=820f1e9af9317b91f3ee11a9ca22ea340119a125'/>
<id>820f1e9af9317b91f3ee11a9ca22ea340119a125</id>
<content type='text'>
This patch removes the use of "six" as the package declares only
python3 support.
It also updates the appdirs lower-constraint to 1.4.0 to support
pip. This version is available on both centos8 and focal.
It also removes the linter related packages from lower-constraints.

Change-Id: I9337f1998749bc40737f2f0e2dcc406b6f3a0ddf
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch removes the use of "six" as the package declares only
python3 support.
It also updates the appdirs lower-constraint to 1.4.0 to support
pip. This version is available on both centos8 and focal.
It also removes the linter related packages from lower-constraints.

Change-Id: I9337f1998749bc40737f2f0e2dcc406b6f3a0ddf
</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 Sphinx 1.5 warning-is-error</title>
<updated>2017-04-20T12:57:16+00:00</updated>
<author>
<name>Stephen Finucane</name>
<email>sfinucan@redhat.com</email>
</author>
<published>2017-04-19T09:19:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=6b7b018cb6b8c3884b34da1769406b0d65867df7'/>
<id>6b7b018cb6b8c3884b34da1769406b0d65867df7</id>
<content type='text'>
With pbr 2.0 and Sphinx 1.5, the setting for treat sphinx warnings as
errors is setting warning-is-error in build_sphinx section. Migrate the
setting from the old warnerrors one.

This involves a couple of changes to the docs to fix the now broken
build.

Change-Id: I9bee7f6f9c69a9ed7bb22325ad1a0a1316dde526
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
With pbr 2.0 and Sphinx 1.5, the setting for treat sphinx warnings as
errors is setting warning-is-error in build_sphinx section. Migrate the
setting from the old warnerrors one.

This involves a couple of changes to the docs to fix the now broken
build.

Change-Id: I9bee7f6f9c69a9ed7bb22325ad1a0a1316dde526
</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 pep8 E501 line too long</title>
<updated>2016-09-23T05:30:54+00:00</updated>
<author>
<name>Tony Xu</name>
<email>hhktony@gmail.com</email>
</author>
<published>2016-09-23T05:30:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=f1d274aeef4a17fbc809d49c67f7c87b00713093'/>
<id>f1d274aeef4a17fbc809d49c67f7c87b00713093</id>
<content type='text'>
Wrap line to under 79 characters in
designateclient/functionaltests/datagen.py

Change-Id: I50deb3ffb70a4845fc825f9ee3eef61c40316b5b
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Wrap line to under 79 characters in
designateclient/functionaltests/datagen.py

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