Hello community,
here is the log from the commit of package python-ironicclient for
openSUSE:Factory checked in at 2016-12-04 15:08:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-ironicclient (Old)
and /work/SRC/openSUSE:Factory/.python-ironicclient.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-ironicclient"
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-ironicclient/python-ironicclient.changes
2016-10-22 13:22:11.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.python-ironicclient.new/python-ironicclient.changes
2016-12-04 15:08:46.000000000 +0100
@@ -1,0 +2,6 @@
+Sat Dec 3 18:08:08 UTC 2016 - [email protected]
+
+- update to 1.7.1:
+ * 'ironic create' handles file args
+
+-------------------------------------------------------------------
Old:
----
python-ironicclient-1.7.0.tar.gz
New:
----
python-ironicclient-1.7.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-ironicclient.spec ++++++
--- /var/tmp/diff_new_pack.D9MECP/_old 2016-12-04 15:08:47.000000000 +0100
+++ /var/tmp/diff_new_pack.D9MECP/_new 2016-12-04 15:08:47.000000000 +0100
@@ -18,7 +18,7 @@
%global sname python-ironicclient
Name: python-ironicclient
-Version: 1.7.0
+Version: 1.7.1
Release: 0
Summary: Python API and CLI for OpenStack Ironic
License: Apache-2.0
@@ -31,13 +31,13 @@
BuildRequires: python-PyYAML >= 3.1.0
BuildRequires: python-appdirs >= 1.3.0
BuildRequires: python-devel
-BuildRequires: python-dogpile.cache >= 0.6.1
+BuildRequires: python-dogpile.cache >= 0.6.2
BuildRequires: python-fixtures >= 3.0.0
BuildRequires: python-jsonschema >= 2.0.0
BuildRequires: python-mock >= 2.0
BuildRequires: python-openstackclient >= 2.1.0
BuildRequires: python-os-testr >= 0.7.0
-BuildRequires: python-osc-lib >= 0.4.0
+BuildRequires: python-osc-lib >= 1.0.2
BuildRequires: python-oslo.i18n >= 2.1.0
BuildRequires: python-oslo.utils >= 3.16.0
BuildRequires: python-oslotest >= 1.10.0
@@ -49,11 +49,11 @@
Requires: python-PrettyTable >= 0.7
Requires: python-PyYAML >= 3.1.0
Requires: python-appdirs >= 1.3.0
-Requires: python-dogpile.cache >= 0.6.1
+Requires: python-dogpile.cache >= 0.6.2
Requires: python-jsonschema >= 2.0.0
Requires: python-keystoneauth1 >= 2.10.0
Requires: python-openstackclient >= 2.1.0
-Requires: python-osc-lib >= 0.4.0
+Requires: python-osc-lib >= 1.0.2
Requires: python-oslo.i18n >= 2.1.0
Requires: python-oslo.utils >= 3.16.0
Requires: python-pbr >= 1.6
++++++ python-ironicclient-1.7.0.tar.gz -> python-ironicclient-1.7.1.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/python-ironicclient-1.7.0/ChangeLog
new/python-ironicclient-1.7.1/ChangeLog
--- old/python-ironicclient-1.7.0/ChangeLog 2016-09-01 10:07:43.000000000
+0200
+++ new/python-ironicclient-1.7.1/ChangeLog 2016-11-22 04:25:18.000000000
+0100
@@ -1,6 +1,13 @@
CHANGES
=======
+1.7.1
+-----
+
+* 'ironic create' handles file args
+* Add upper-constraints for stable/newton to tox.ini
+* Update .gitreview for stable/newton
+
1.7.0
-----
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/python-ironicclient-1.7.0/PKG-INFO
new/python-ironicclient-1.7.1/PKG-INFO
--- old/python-ironicclient-1.7.0/PKG-INFO 2016-09-01 10:07:44.000000000
+0200
+++ new/python-ironicclient-1.7.1/PKG-INFO 2016-11-22 04:25:20.000000000
+0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: python-ironicclient
-Version: 1.7.0
+Version: 1.7.1
Summary: OpenStack Bare Metal Provisioning API Client Library
Home-page: http://docs.openstack.org/developer/python-ironicclient
Author: OpenStack
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-ironicclient-1.7.0/ironicclient/tests/unit/v1/test_create_resources_shell.py
new/python-ironicclient-1.7.1/ironicclient/tests/unit/v1/test_create_resources_shell.py
---
old/python-ironicclient-1.7.0/ironicclient/tests/unit/v1/test_create_resources_shell.py
2016-09-01 10:05:56.000000000 +0200
+++
new/python-ironicclient-1.7.1/ironicclient/tests/unit/v1/test_create_resources_shell.py
2016-11-22 04:22:59.000000000 +0100
@@ -26,6 +26,6 @@
def test_create_shell(self, mock_create_resources):
args = mock.MagicMock()
files = ['file1', 'file2', 'file3']
- args.resource_files = [files]
+ args.resource_files = files
create_resources_shell.do_create(self.client, args)
mock_create_resources.assert_called_once_with(self.client, files)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-ironicclient-1.7.0/ironicclient/v1/create_resources_shell.py
new/python-ironicclient-1.7.1/ironicclient/v1/create_resources_shell.py
--- old/python-ironicclient-1.7.0/ironicclient/v1/create_resources_shell.py
2016-09-01 10:05:56.000000000 +0200
+++ new/python-ironicclient-1.7.1/ironicclient/v1/create_resources_shell.py
2016-11-22 04:22:59.000000000 +0100
@@ -25,4 +25,4 @@
create all the resources; those that could not be created are skipped
(with a corresponding error message).
"""
- create_resources.create_resources(cc, args.resource_files[0])
+ create_resources.create_resources(cc, args.resource_files)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-ironicclient-1.7.0/python_ironicclient.egg-info/PKG-INFO
new/python-ironicclient-1.7.1/python_ironicclient.egg-info/PKG-INFO
--- old/python-ironicclient-1.7.0/python_ironicclient.egg-info/PKG-INFO
2016-09-01 10:07:43.000000000 +0200
+++ new/python-ironicclient-1.7.1/python_ironicclient.egg-info/PKG-INFO
2016-11-22 04:25:18.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: python-ironicclient
-Version: 1.7.0
+Version: 1.7.1
Summary: OpenStack Bare Metal Provisioning API Client Library
Home-page: http://docs.openstack.org/developer/python-ironicclient
Author: OpenStack
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-ironicclient-1.7.0/python_ironicclient.egg-info/SOURCES.txt
new/python-ironicclient-1.7.1/python_ironicclient.egg-info/SOURCES.txt
--- old/python-ironicclient-1.7.0/python_ironicclient.egg-info/SOURCES.txt
2016-09-01 10:07:44.000000000 +0200
+++ new/python-ironicclient-1.7.1/python_ironicclient.egg-info/SOURCES.txt
2016-11-22 04:25:19.000000000 +0100
@@ -122,6 +122,7 @@
releasenotes/notes/add_api_versions-a59e5b6899833c33.yaml
releasenotes/notes/continue-del-next-node-8827e67e1c41a0a5.yaml
releasenotes/notes/index-error-no-endpoint-eb281187f80a9aa4.yaml
+releasenotes/notes/ironic-create-files-fix-c31e40e566ff86b8.yaml
releasenotes/notes/keystone-token-auth-661a0c0d53c1b4de.yaml
releasenotes/notes/list-nodes-by-driver-b1e1e1018077089b.yaml
releasenotes/notes/manual-clean-09f6b49df7d2513f.yaml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-ironicclient-1.7.0/python_ironicclient.egg-info/pbr.json
new/python-ironicclient-1.7.1/python_ironicclient.egg-info/pbr.json
--- old/python-ironicclient-1.7.0/python_ironicclient.egg-info/pbr.json
2016-09-01 10:07:43.000000000 +0200
+++ new/python-ironicclient-1.7.1/python_ironicclient.egg-info/pbr.json
2016-11-22 04:25:18.000000000 +0100
@@ -1 +1 @@
-{"is_release": true, "git_version": "464044f"}
\ No newline at end of file
+{"git_version": "c0abab8", "is_release": true}
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-ironicclient-1.7.0/releasenotes/notes/ironic-create-files-fix-c31e40e566ff86b8.yaml
new/python-ironicclient-1.7.1/releasenotes/notes/ironic-create-files-fix-c31e40e566ff86b8.yaml
---
old/python-ironicclient-1.7.0/releasenotes/notes/ironic-create-files-fix-c31e40e566ff86b8.yaml
1970-01-01 01:00:00.000000000 +0100
+++
new/python-ironicclient-1.7.1/releasenotes/notes/ironic-create-files-fix-c31e40e566ff86b8.yaml
2016-11-22 04:22:59.000000000 +0100
@@ -0,0 +1,4 @@
+---
+fixes:
+ - Fixes 'ironic create <file>' command so that it handles the
+ file argument(s) correctly.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/python-ironicclient-1.7.0/tox.ini
new/python-ironicclient-1.7.1/tox.ini
--- old/python-ironicclient-1.7.0/tox.ini 2016-09-01 10:05:56.000000000
+0200
+++ new/python-ironicclient-1.7.1/tox.ini 2016-11-22 04:23:00.000000000
+0100
@@ -10,7 +10,7 @@
TESTS_DIR=./ironicclient/tests/unit
usedevelop = True
install_command =
- {toxinidir}/tools/tox_install.sh
{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
{opts} {packages}
+ {toxinidir}/tools/tox_install.sh
{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/newton}
{opts} {packages}
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt