<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-neutronclient.git/neutronclient/common, branch stein-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>Use secure sha256 instead of sha1</title>
<updated>2019-08-21T05:57:23+00:00</updated>
<author>
<name>Oleg Bondarev</name>
<email>obondarev@mirantis.com</email>
</author>
<published>2019-08-13T14:10:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=450039b7f91f37acc742413af596cc4abb5af6ae'/>
<id>450039b7f91f37acc742413af596cc4abb5af6ae</id>
<content type='text'>
Fix for bandit B303: Use of insecure MD2, MD4, MD5, or SHA1 hash function.

Change-Id: I00403d7bd3b40ae00420e6cddcf40f45488284a9
Partial-Bug: #1759250
(cherry picked from commit ab426a791ad1937ea2cf3b340202b3968a378978)
(cherry picked from commit 62f4868e6e240ebbb4d6e29b8c1e1d23a24fcc15)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix for bandit B303: Use of insecure MD2, MD4, MD5, or SHA1 hash function.

Change-Id: I00403d7bd3b40ae00420e6cddcf40f45488284a9
Partial-Bug: #1759250
(cherry picked from commit ab426a791ad1937ea2cf3b340202b3968a378978)
(cherry picked from commit 62f4868e6e240ebbb4d6e29b8c1e1d23a24fcc15)
</pre>
</div>
</content>
</entry>
<entry>
<title>Define IpAddressAlreadyAllocated exception</title>
<updated>2018-01-23T19:46:53+00:00</updated>
<author>
<name>Hongbin Lu</name>
<email>hongbin.lu@huawei.com</email>
</author>
<published>2018-01-19T00:23:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=58c1be2b65f3e5ec6a87e2d53e3757314a815e9b'/>
<id>58c1be2b65f3e5ec6a87e2d53e3757314a815e9b</id>
<content type='text'>
This exception will raise when creating a port with an IP allocated
IP address. This exception needs to be defined in client so that
nova can catch it and perform the error handling.

Needed-By: I5bee9ae18764b6f285ecc5e8d7148a1019c74701
Change-Id: Ie1d4581d334e1ec491e56371c62978945ae24a44
Related-Bug: #1744103
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This exception will raise when creating a port with an IP allocated
IP address. This exception needs to be defined in client so that
nova can catch it and perform the error handling.

Needed-By: I5bee9ae18764b6f285ecc5e8d7148a1019c74701
Change-Id: Ie1d4581d334e1ec491e56371c62978945ae24a44
Related-Bug: #1744103
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Unable to add classless-static-route in extra_dhcp_opt extension"</title>
<updated>2017-04-01T17:14:20+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2017-04-01T17:14:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=ef93a52c2bef642e21644b232890706ef090503d'/>
<id>ef93a52c2bef642e21644b232890706ef090503d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Fixed a bunch of spacing"</title>
<updated>2017-03-05T22:22:31+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2017-03-05T22:22:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=465a89246f6a827fffbc9149ffd70b35c0704f3e'/>
<id>465a89246f6a827fffbc9149ffd70b35c0704f3e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Decode exception parameters to expand exception message properly</title>
<updated>2016-12-15T09:09:18+00:00</updated>
<author>
<name>Akihiro Motoki</name>
<email>motoki@da.jp.nec.com</email>
</author>
<published>2015-12-08T21:22:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=266e6c3c3c3e9a8b856d99238dc5323edeb66955'/>
<id>266e6c3c3c3e9a8b856d99238dc5323edeb66955</id>
<content type='text'>
If a multibyte string without unicode prefix 'u' is passed to
NeutronException in python 2, string subsitution will fail.
In python 2, multibyte string without 'u' prefix is encoded into bytes.
As a result a string substitution in NeutronException.__init__ will fail.

Change-Id: I1aa08b69fe119087a7a49fda768a24f85f0e7c76
Closes-Bug: #1235228
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If a multibyte string without unicode prefix 'u' is passed to
NeutronException in python 2, string subsitution will fail.
In python 2, multibyte string without 'u' prefix is encoded into bytes.
As a result a string substitution in NeutronException.__init__ will fail.

Change-Id: I1aa08b69fe119087a7a49fda768a24f85f0e7c76
Closes-Bug: #1235228
</pre>
</div>
</content>
</entry>
<entry>
<title>Use method is_valid_cidr from oslo.utils</title>
<updated>2016-10-12T04:56:55+00:00</updated>
<author>
<name>lilintan</name>
<email>lintan.li@easystack.cn</email>
</author>
<published>2016-09-26T06:37:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=b9e584bd07f5a8cd344743d2ac5124503435c920'/>
<id>b9e584bd07f5a8cd344743d2ac5124503435c920</id>
<content type='text'>
Oslo.utils provides same method is_valid_cidr, just use it.

Change-Id: If3c619a118c4c192951d8603a4b3c2b34546a2cf
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Oslo.utils provides same method is_valid_cidr, just use it.

Change-Id: If3c619a118c4c192951d8603a4b3c2b34546a2cf
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Use six.python_2_unicode_compatible for NeutronException.__str__"</title>
<updated>2016-09-22T00:18:08+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2016-09-22T00:18:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=004ea02a5f4ad83ca93ed7929cd488d425b6e9ea'/>
<id>004ea02a5f4ad83ca93ed7929cd488d425b6e9ea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "remove unused LOG"</title>
<updated>2016-09-04T18:49:58+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2016-09-04T18:49:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=49c7120a459a3a7200d17bd4d551429d47ef60b5'/>
<id>49c7120a459a3a7200d17bd4d551429d47ef60b5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Unable to add classless-static-route in extra_dhcp_opt extension</title>
<updated>2016-08-24T21:56:56+00:00</updated>
<author>
<name>Shih-Hao Li</name>
<email>shihli@vmware.com</email>
</author>
<published>2016-08-24T21:56:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=494b283eed095346a62ee7024d6099d134aa8144'/>
<id>494b283eed095346a62ee7024d6099d134aa8144</id>
<content type='text'>
When adding classless-static-route in extra_dhcp_opt for a port,
neutron client complains syntax error. The reason is neutron client
interprets the "," inside the opt_value as a delimiter of key-value
pairs for --extra-dhcp-opt.

This patch modifies neutron client to allow commas inside opt_value.

This is one of two proposed solutions described in #1605421.

Change-Id: I8ade427885d11f86d594cecaed96fcb82e38798f
Closes-Bug: #1605421
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When adding classless-static-route in extra_dhcp_opt for a port,
neutron client complains syntax error. The reason is neutron client
interprets the "," inside the opt_value as a delimiter of key-value
pairs for --extra-dhcp-opt.

This patch modifies neutron client to allow commas inside opt_value.

This is one of two proposed solutions described in #1605421.

Change-Id: I8ade427885d11f86d594cecaed96fcb82e38798f
Closes-Bug: #1605421
</pre>
</div>
</content>
</entry>
<entry>
<title>Add client exception for HostNotCompatibleWithFixedIps</title>
<updated>2016-07-22T23:36:02+00:00</updated>
<author>
<name>Carl Baldwin</name>
<email>carl.baldwin@hpe.com</email>
</author>
<published>2016-07-22T23:27:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=8876ab264aaec34154e6a2fd56ae22debd7ba649'/>
<id>8876ab264aaec34154e6a2fd56ae22debd7ba649</id>
<content type='text'>
Change-Id: I636ef272202ec7ea8fc0adbfd86ca3eb07e316ba
Partially-Implements: blueprint routed-networks
Depends-On: I8dc8890907d1e241dd12448fa184cea1b0620663</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I636ef272202ec7ea8fc0adbfd86ca3eb07e316ba
Partially-Implements: blueprint routed-networks
Depends-On: I8dc8890907d1e241dd12448fa184cea1b0620663</pre>
</div>
</content>
</entry>
</feed>
