<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-neutronclient.git, branch xena-em</title>
<subtitle>opendev.org: openstack/python-neutronclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/'/>
<entry>
<title>Merge "Use yaml.safe_load instead of yaml.load"</title>
<updated>2021-09-02T02:27:46+00:00</updated>
<author>
<name>Zuul</name>
<email>zuul@review.opendev.org</email>
</author>
<published>2021-09-02T02:27:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=983f0abc58428c24d428362eebc26367ca1ae42e'/>
<id>983f0abc58428c24d428362eebc26367ca1ae42e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use yaml.safe_load instead of yaml.load</title>
<updated>2021-09-01T08:53:41+00:00</updated>
<author>
<name>Takashi Kajinami</name>
<email>tkajinam@redhat.com</email>
</author>
<published>2021-07-19T02:44:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=f83108d85874a87e47b51af3eebc9faeeb11faa0'/>
<id>f83108d85874a87e47b51af3eebc9faeeb11faa0</id>
<content type='text'>
Since PyYAML 5.1, yaml.load without specifying the Loader option is
deprecated and shows the following warning.

YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated,
as the default Loader is unsafe.
Please read https://msg.pyyaml.org/load for full details.

This change replaces usage of yaml.load by yaml.safe_load, to get rid
of that warning message.

Change-Id: Ibe25c4aaf3aa7226f28ec60b8a929ecc143face1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since PyYAML 5.1, yaml.load without specifying the Loader option is
deprecated and shows the following warning.

YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated,
as the default Loader is unsafe.
Please read https://msg.pyyaml.org/load for full details.

This change replaces usage of yaml.load by yaml.safe_load, to get rid
of that warning message.

Change-Id: Ibe25c4aaf3aa7226f28ec60b8a929ecc143face1
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Ussuri+ is python3 only and update python to python3"</title>
<updated>2021-09-01T07:43:35+00:00</updated>
<author>
<name>Zuul</name>
<email>zuul@review.opendev.org</email>
</author>
<published>2021-09-01T07:43:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=e647baf4ca64a1c522c1ea04ea00808d198c9909'/>
<id>e647baf4ca64a1c522c1ea04ea00808d198c9909</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Set ML2/OVS backend explicitly for functional job</title>
<updated>2021-07-27T06:29:10+00:00</updated>
<author>
<name>Bernard Cafarelli</name>
<email>bcafarel@redhat.com</email>
</author>
<published>2021-07-23T09:23:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=2f047b15957308e84dcb72baee3415b8bf5a470a'/>
<id>2f047b15957308e84dcb72baee3415b8bf5a470a</id>
<content type='text'>
After default backend change to OVN, some client tests related to DHCP
or L3 agents are not working fine. Switch the job to ML2/OVS, as it was
done in openstack-client in changeset
Idf6466a59c6cf96be2f1d53e696f0564584fa233

test_neutron_dhcp_agent_list_hosting_net was skipped temporarily
to pass the gate in the parent commit. It is re-enabled now.

Change-Id: I91d03d13adcd38d46ba1b042239a290ae2c99ea4
Closes-Bug: #1936965
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
After default backend change to OVN, some client tests related to DHCP
or L3 agents are not working fine. Switch the job to ML2/OVS, as it was
done in openstack-client in changeset
Idf6466a59c6cf96be2f1d53e696f0564584fa233

test_neutron_dhcp_agent_list_hosting_net was skipped temporarily
to pass the gate in the parent commit. It is re-enabled now.

Change-Id: I91d03d13adcd38d46ba1b042239a290ae2c99ea4
Closes-Bug: #1936965
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: change safe_hasattr to hasattr</title>
<updated>2021-07-27T05:56:36+00:00</updated>
<author>
<name>elajkat</name>
<email>lajos.katona@est.tech</email>
</author>
<published>2021-07-26T12:54:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=23fb666f923e9fa117ce5744e9abe00d3874d3fc'/>
<id>23fb666f923e9fa117ce5744e9abe00d3874d3fc</id>
<content type='text'>
testtools 2.5.0 removed the helper (see [0]) safe_hasattr, and assumes
that the hasattr implementation in python reliable enough now.

test_neutron_dhcp_agent_list_hosting_net is skipped temporarily
as there is no DHCP agent with ML2/OVN. It will be re-enabled [1].

[0] https://github.com/testing-cabal/testtools/blob/2.5.0/NEWS#L31
[1] https://review.opendev.org/c/openstack/python-neutronclient/+/801997

Change-Id: I4fe6fabc4f745e2c9a366e30dbea7e7200151f12
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
testtools 2.5.0 removed the helper (see [0]) safe_hasattr, and assumes
that the hasattr implementation in python reliable enough now.

test_neutron_dhcp_agent_list_hosting_net is skipped temporarily
as there is no DHCP agent with ML2/OVN. It will be re-enabled [1].

[0] https://github.com/testing-cabal/testtools/blob/2.5.0/NEWS#L31
[1] https://review.opendev.org/c/openstack/python-neutronclient/+/801997

Change-Id: I4fe6fabc4f745e2c9a366e30dbea7e7200151f12
</pre>
</div>
</content>
</entry>
<entry>
<title>Ussuri+ is python3 only and update python to python3</title>
<updated>2021-06-24T01:43:09+00:00</updated>
<author>
<name>dengzhaosen</name>
<email>dengzhaosen@inspur.com</email>
</author>
<published>2021-05-06T01:50:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=a1ebfaa7f22e71fb59eea05ff11bbfe5bede41ba'/>
<id>a1ebfaa7f22e71fb59eea05ff11bbfe5bede41ba</id>
<content type='text'>
To remove the useless shebang

Change-Id: I611c5bc47562f8def9a8623117b7b0655474b555
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To remove the useless shebang

Change-Id: I611c5bc47562f8def9a8623117b7b0655474b555
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Changed minversion in tox to 3.18.0"</title>
<updated>2021-06-21T18:51:17+00:00</updated>
<author>
<name>Zuul</name>
<email>zuul@review.opendev.org</email>
</author>
<published>2021-06-21T18:51:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=adf21f028827b8a4e32057334db4cd464c24c4d0'/>
<id>adf21f028827b8a4e32057334db4cd464c24c4d0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a release note on deprecation for removal of neutron CLI</title>
<updated>2021-06-09T05:39:43+00:00</updated>
<author>
<name>Akihiro Motoki</name>
<email>amotoki@gmail.com</email>
</author>
<published>2021-06-09T05:35:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=ae397565be6b734484d9e96c66f13de97762303c'/>
<id>ae397565be6b734484d9e96c66f13de97762303c</id>
<content type='text'>
Change-Id: I866ade23cd76cf1e44e10eeb15dcc02cc8d0dc66
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I866ade23cd76cf1e44e10eeb15dcc02cc8d0dc66
</pre>
</div>
</content>
</entry>
<entry>
<title>Changed minversion in tox to 3.18.0</title>
<updated>2021-06-03T07:00:38+00:00</updated>
<author>
<name>wu.shiming</name>
<email>wushiming@yovole.com</email>
</author>
<published>2021-06-03T06:48:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=d6c211c139928fff3e1bcc41f069995892e233fe'/>
<id>d6c211c139928fff3e1bcc41f069995892e233fe</id>
<content type='text'>
The patch bumps min version of tox to 3.18.0 in order to
replace tox's whitelist_externals by allowlist_externals option:
https://github.com/tox-dev/tox/blob/master/docs/changelog.rst#v3180-2020-07-23

Change-Id: I83717c5b2661df0d4288699903c38814cefb43d9
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The patch bumps min version of tox to 3.18.0 in order to
replace tox's whitelist_externals by allowlist_externals option:
https://github.com/tox-dev/tox/blob/master/docs/changelog.rst#v3180-2020-07-23

Change-Id: I83717c5b2661df0d4288699903c38814cefb43d9
</pre>
</div>
</content>
</entry>
<entry>
<title>Set when deprecated neutron client CLI will be removed</title>
<updated>2021-05-27T12:09:32+00:00</updated>
<author>
<name>Slawek Kaplonski</name>
<email>skaplons@redhat.com</email>
</author>
<published>2021-05-27T10:18:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=76dd26f9fdd35bf922509e587e25a30927517808'/>
<id>76dd26f9fdd35bf922509e587e25a30927517808</id>
<content type='text'>
[1] was the last missing bit in OSC to have feature parity between
OpenStack client and Neutronclient CLI tools.
So now as [1] is merged we can really deprecate and specify that in Z
cycle we will remove neutronclient CLI.
This patch changes deprecation message to reflect that.

[1] https://review.opendev.org/c/openstack/python-openstackclient/+/768210

Change-Id: Ia68af29ea15bda7330fda1b18416798a0f4cb7a4
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[1] was the last missing bit in OSC to have feature parity between
OpenStack client and Neutronclient CLI tools.
So now as [1] is merged we can really deprecate and specify that in Z
cycle we will remove neutronclient CLI.
This patch changes deprecation message to reflect that.

[1] https://review.opendev.org/c/openstack/python-openstackclient/+/768210

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