Hello community,

here is the log from the commit of package python-neutronclient for 
openSUSE:Factory checked in at 2016-05-04 08:19:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-neutronclient (Old)
 and      /work/SRC/openSUSE:Factory/.python-neutronclient.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-neutronclient"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-neutronclient/python-neutronclient.changes    
    2015-10-30 13:42:05.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-neutronclient.new/python-neutronclient.changes
   2016-05-04 08:19:21.000000000 +0200
@@ -1,0 +2,14 @@
+Thu Mar  3 15:41:08 UTC 2016 - [email protected]
+
+- update to 3.1.1:
+  * Ensure to decode bytes or fail
+  * Do not allow name lookups on RBAC policies
+  * Updated from global requirements
+  * Updated from global requirements
+  * Revert parent_id and obj_id parameter order
+  * Updated from global requirements
+  * Let devstack-gate handle the gate hook timeout
+  * Py3k compliance: check for bytes when making a string
+  * Update .gitreview for stable/liberty
+
+-------------------------------------------------------------------

Old:
----
  python-neutronclient-3.1.0.tar.gz

New:
----
  python-neutronclient-3.1.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-neutronclient.spec ++++++
--- /var/tmp/diff_new_pack.xSf5xo/_old  2016-05-04 08:19:22.000000000 +0200
+++ /var/tmp/diff_new_pack.xSf5xo/_new  2016-05-04 08:19:22.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-neutronclient
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %define component neutronclient
 
 Name:           python-neutronclient
-Version:        3.1.0
+Version:        3.1.1
 Release:        0
 Summary:        Openstack Network (Quantum) API Client
 License:        Apache-2.0

++++++ python-neutronclient-3.1.0.tar.gz -> python-neutronclient-3.1.1.tar.gz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-neutronclient-3.1.0/AUTHORS 
new/python-neutronclient-3.1.1/AUTHORS
--- old/python-neutronclient-3.1.0/AUTHORS      2015-09-22 18:31:43.000000000 
+0200
+++ new/python-neutronclient-3.1.1/AUTHORS      2016-01-19 16:49:42.000000000 
+0100
@@ -138,6 +138,7 @@
 Thiago Morello <[email protected]>
 Thierry Carrez <[email protected]>
 Thomas Herve <[email protected]>
+Thomas Morin <[email protected]>
 Toshiaki Higuchi <[email protected]>
 Vikram Hosakote <[email protected]>
 Wu Wenxiang <[email protected]>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-neutronclient-3.1.0/ChangeLog 
new/python-neutronclient-3.1.1/ChangeLog
--- old/python-neutronclient-3.1.0/ChangeLog    2015-09-22 18:31:43.000000000 
+0200
+++ new/python-neutronclient-3.1.1/ChangeLog    2016-01-19 16:49:42.000000000 
+0100
@@ -1,6 +1,19 @@
 CHANGES
 =======
 
+3.1.1
+-----
+
+* Ensure to decode bytes or fail
+* Do not allow name lookups on RBAC policies
+* Updated from global requirements
+* Updated from global requirements
+* Revert parent_id and obj_id parameter order
+* Updated from global requirements
+* Let devstack-gate handle the gate hook timeout
+* Py3k compliance: check for bytes when making a string
+* Update .gitreview for stable/liberty
+
 3.1.0
 -----
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-neutronclient-3.1.0/PKG-INFO 
new/python-neutronclient-3.1.1/PKG-INFO
--- old/python-neutronclient-3.1.0/PKG-INFO     2015-09-22 18:31:43.000000000 
+0200
+++ new/python-neutronclient-3.1.1/PKG-INFO     2016-01-19 16:49:42.000000000 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: python-neutronclient
-Version: 3.1.0
+Version: 3.1.1
 Summary: CLI and Client Library for OpenStack Networking
 Home-page: http://www.openstack.org/
 Author: OpenStack Networking Project
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python-neutronclient-3.1.0/neutronclient/neutron/v2_0/rbac.py 
new/python-neutronclient-3.1.1/neutronclient/neutron/v2_0/rbac.py
--- old/python-neutronclient-3.1.0/neutronclient/neutron/v2_0/rbac.py   
2015-09-22 18:30:54.000000000 +0200
+++ new/python-neutronclient-3.1.1/neutronclient/neutron/v2_0/rbac.py   
2016-01-19 16:48:50.000000000 +0100
@@ -32,12 +32,14 @@
     list_columns = ['id', 'object_id']
     pagination_support = True
     sorting_support = True
+    allow_names = False
 
 
 class ShowRBACPolicy(neutronV20.ShowCommand):
     """Show information of a given RBAC policy."""
 
     resource = 'rbac_policy'
+    allow_names = False
 
 
 class CreateRBACPolicy(neutronV20.CreateCommand):
@@ -81,6 +83,7 @@
     """Update RBAC policy for given tenant."""
 
     resource = 'rbac_policy'
+    allow_names = False
 
     def add_known_arguments(self, parser):
         parser.add_argument(
@@ -100,3 +103,4 @@
     """Delete a RBAC policy."""
 
     resource = 'rbac_policy'
+    allow_names = False
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python-neutronclient-3.1.0/neutronclient/tests/functional/hooks/gate_hook.sh
 
new/python-neutronclient-3.1.1/neutronclient/tests/functional/hooks/gate_hook.sh
--- 
old/python-neutronclient-3.1.0/neutronclient/tests/functional/hooks/gate_hook.sh
    2015-09-22 18:30:54.000000000 +0200
+++ 
new/python-neutronclient-3.1.1/neutronclient/tests/functional/hooks/gate_hook.sh
    2016-01-19 16:48:50.000000000 +0100
@@ -1,16 +1,12 @@
 #!/usr/bin/env bash
 
-
 set -ex
 
-
 VENV=${1:-"functional"}
 
-
 if [ "$VENV" == "functional-vpn" ]
 then
     export DEVSTACK_LOCAL_CONFIG="enable_plugin neutron-vpnaas 
git://git.openstack.org/openstack/neutron-vpnaas"
 fi
 
-remaining_time
-timeout -s 9 ${REMAINING_TIME}m $BASE/new/devstack-gate/devstack-vm-gate.sh
+$BASE/new/devstack-gate/devstack-vm-gate.sh
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python-neutronclient-3.1.0/neutronclient/tests/unit/test_cli20.py 
new/python-neutronclient-3.1.1/neutronclient/tests/unit/test_cli20.py
--- old/python-neutronclient-3.1.0/neutronclient/tests/unit/test_cli20.py       
2015-09-22 18:30:54.000000000 +0200
+++ new/python-neutronclient-3.1.1/neutronclient/tests/unit/test_cli20.py       
2016-01-19 16:48:50.000000000 +0100
@@ -73,7 +73,7 @@
     def make_string(self):
         result = ''
         for line in self.content:
-            result = result + line
+            result += encodeutils.safe_decode(line, 'utf-8')
         return result
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python-neutronclient-3.1.0/neutronclient/v2_0/client.py 
new/python-neutronclient-3.1.1/neutronclient/v2_0/client.py
--- old/python-neutronclient-3.1.0/neutronclient/v2_0/client.py 2015-09-22 
18:30:54.000000000 +0200
+++ new/python-neutronclient-3.1.1/neutronclient/v2_0/client.py 2016-01-19 
16:48:50.000000000 +0100
@@ -1716,7 +1716,7 @@
         def _fx(obj, **_params):
             return self.show_ext(path, obj, **_params)
 
-        def _parent_fx(parent_id, obj, **_params):
+        def _parent_fx(obj, parent_id, **_params):
             return self.show_ext(path % parent_id, obj, **_params)
         fn = _fx if not parent_resource else _parent_fx
         setattr(self, "show_%s" % resource_plural, fn)
@@ -1743,7 +1743,7 @@
         def _fx(obj):
             return self.delete_ext(path, obj)
 
-        def _parent_fx(parent_id, obj):
+        def _parent_fx(obj, parent_id):
             return self.delete_ext(path % parent_id, obj)
         fn = _fx if not parent_resource else _parent_fx
         setattr(self, "delete_%s" % resource_singular, fn)
@@ -1752,7 +1752,7 @@
         def _fx(obj, body=None):
             return self.update_ext(path, obj, body)
 
-        def _parent_fx(parent_id, obj, body=None):
+        def _parent_fx(obj, parent_id, body=None):
             return self.update_ext(path % parent_id, obj, body)
         fn = _fx if not parent_resource else _parent_fx
         setattr(self, "update_%s" % resource_singular, fn)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python-neutronclient-3.1.0/python_neutronclient.egg-info/PKG-INFO 
new/python-neutronclient-3.1.1/python_neutronclient.egg-info/PKG-INFO
--- old/python-neutronclient-3.1.0/python_neutronclient.egg-info/PKG-INFO       
2015-09-22 18:31:43.000000000 +0200
+++ new/python-neutronclient-3.1.1/python_neutronclient.egg-info/PKG-INFO       
2016-01-19 16:49:42.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: python-neutronclient
-Version: 3.1.0
+Version: 3.1.1
 Summary: CLI and Client Library for OpenStack Networking
 Home-page: http://www.openstack.org/
 Author: OpenStack Networking Project
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python-neutronclient-3.1.0/python_neutronclient.egg-info/pbr.json 
new/python-neutronclient-3.1.1/python_neutronclient.egg-info/pbr.json
--- old/python-neutronclient-3.1.0/python_neutronclient.egg-info/pbr.json       
2015-09-22 18:31:43.000000000 +0200
+++ new/python-neutronclient-3.1.1/python_neutronclient.egg-info/pbr.json       
2016-01-19 16:49:42.000000000 +0100
@@ -1 +1 @@
-{"is_release": true, "git_version": "3e11599"}
\ No newline at end of file
+{"is_release": true, "git_version": "c1701c1"}
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python-neutronclient-3.1.0/python_neutronclient.egg-info/requires.txt 
new/python-neutronclient-3.1.1/python_neutronclient.egg-info/requires.txt
--- old/python-neutronclient-3.1.0/python_neutronclient.egg-info/requires.txt   
2015-09-22 18:31:43.000000000 +0200
+++ new/python-neutronclient-3.1.1/python_neutronclient.egg-info/requires.txt   
2016-01-19 16:49:42.000000000 +0100
@@ -5,9 +5,9 @@
 netaddr!=0.7.16,>=0.7.12
 oslo.i18n>=1.5.0
 oslo.serialization>=1.4.0
-oslo.utils>=2.0.0
-requests>=2.5.2
-python-keystoneclient>=1.6.0
+oslo.utils!=2.6.0,>=2.0.0
+requests!=2.8.0,>=2.5.2
+python-keystoneclient!=1.8.0,>=1.6.0
 simplejson>=2.2.0
 six>=1.9.0
 Babel>=1.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-neutronclient-3.1.0/requirements.txt 
new/python-neutronclient-3.1.1/requirements.txt
--- old/python-neutronclient-3.1.0/requirements.txt     2015-09-22 
18:30:54.000000000 +0200
+++ new/python-neutronclient-3.1.1/requirements.txt     2016-01-19 
16:48:50.000000000 +0100
@@ -8,9 +8,9 @@
 netaddr!=0.7.16,>=0.7.12
 oslo.i18n>=1.5.0 # Apache-2.0
 oslo.serialization>=1.4.0 # Apache-2.0
-oslo.utils>=2.0.0 # Apache-2.0
-requests>=2.5.2
-python-keystoneclient>=1.6.0
+oslo.utils!=2.6.0,>=2.0.0 # Apache-2.0
+requests!=2.8.0,>=2.5.2
+python-keystoneclient!=1.8.0,>=1.6.0
 simplejson>=2.2.0
 six>=1.9.0
 Babel>=1.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-neutronclient-3.1.0/setup.cfg 
new/python-neutronclient-3.1.1/setup.cfg
--- old/python-neutronclient-3.1.0/setup.cfg    2015-09-22 18:31:43.000000000 
+0200
+++ new/python-neutronclient-3.1.1/setup.cfg    2016-01-19 16:49:42.000000000 
+0100
@@ -43,6 +43,6 @@
 
 [egg_info]
 tag_build = 
-tag_date = 0
 tag_svn_revision = 0
+tag_date = 0
 


Reply via email to