Hello community,

here is the log from the commit of package azure-cli-dms for openSUSE:Factory 
checked in at 2019-10-31 18:16:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/azure-cli-dms (Old)
 and      /work/SRC/openSUSE:Factory/.azure-cli-dms.new.2990 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "azure-cli-dms"

Thu Oct 31 18:16:02 2019 rev:4 rq:742688 version:0.1.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/azure-cli-dms/azure-cli-dms.changes      
2019-06-05 11:43:13.371040130 +0200
+++ /work/SRC/openSUSE:Factory/.azure-cli-dms.new.2990/azure-cli-dms.changes    
2019-10-31 18:16:03.842060747 +0100
@@ -1,0 +2,8 @@
+Thu Oct 24 12:10:08 UTC 2019 - John Paul Adrian Glaubitz 
<adrian.glaub...@suse.com>
+
+- New upstream release
+  + Version 0.1.4
+  + For detailed information about changes see the
+    HISTORY.txt file provided with this package
+
+-------------------------------------------------------------------

Old:
----
  azure-cli-dms-0.1.2.tar.gz

New:
----
  azure-cli-dms-0.1.4.tar.gz

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

Other differences:
------------------
++++++ azure-cli-dms.spec ++++++
--- /var/tmp/diff_new_pack.NjCXpu/_old  2019-10-31 18:16:04.522061451 +0100
+++ /var/tmp/diff_new_pack.NjCXpu/_new  2019-10-31 18:16:04.526061455 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           azure-cli-dms
-Version:        0.1.2
+Version:        0.1.4
 Release:        0
 Summary:        Microsoft Azure CLI 'Database Migration Service' Command Module
 License:        MIT

++++++ azure-cli-dms-0.1.2.tar.gz -> azure-cli-dms-0.1.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-dms-0.1.2/HISTORY.rst 
new/azure-cli-dms-0.1.4/HISTORY.rst
--- old/azure-cli-dms-0.1.2/HISTORY.rst 2019-01-25 20:43:40.000000000 +0100
+++ new/azure-cli-dms-0.1.4/HISTORY.rst 2019-06-13 23:17:46.000000000 +0200
@@ -2,6 +2,15 @@
 
 Release History
 ===============
+
+0.1.4
++++++
+* Minor fixes.
+
+0.1.3
++++++
+* Minor fixes.
+
 0.1.2
 +++++
 * Minor fixes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-dms-0.1.2/PKG-INFO 
new/azure-cli-dms-0.1.4/PKG-INFO
--- old/azure-cli-dms-0.1.2/PKG-INFO    2019-01-25 20:44:22.000000000 +0100
+++ new/azure-cli-dms-0.1.4/PKG-INFO    2019-06-13 23:18:23.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: azure-cli-dms
-Version: 0.1.2
+Version: 0.1.4
 Summary: Microsoft Azure Command-Line Tools for the Data Migration Service 
(DMS) Command Module
 Home-page: https://github.com/Azure/azure-cli
 Author: Microsoft Corporation
@@ -19,6 +19,15 @@
         
         Release History
         ===============
+        
+        0.1.4
+        +++++
+        * Minor fixes.
+        
+        0.1.3
+        +++++
+        * Minor fixes.
+        
         0.1.2
         +++++
         * Minor fixes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-dms-0.1.2/azure/cli/command_modules/dms/__init__.py 
new/azure-cli-dms-0.1.4/azure/cli/command_modules/dms/__init__.py
--- old/azure-cli-dms-0.1.2/azure/cli/command_modules/dms/__init__.py   
2019-01-25 20:43:40.000000000 +0100
+++ new/azure-cli-dms-0.1.4/azure/cli/command_modules/dms/__init__.py   
2019-06-13 23:17:46.000000000 +0200
@@ -14,11 +14,12 @@
 
     def __init__(self, cli_ctx=None):
         from azure.cli.core.commands import CliCommandType
+        from azure.cli.core.profiles import ResourceType
         from azure.cli.command_modules.dms.commands import 
dms_api_exception_handler
         dms_custom = 
CliCommandType(operations_tmpl='azure.cli.command_modules.dms.custom#{}',
                                     
exception_handler=dms_api_exception_handler)
         super(DmsCommandsLoader, self).__init__(cli_ctx=cli_ctx,
-                                                
min_profile='2017-03-10-profile',
+                                                
resource_type=ResourceType.MGMT_DATAMIGRATION,
                                                 custom_command_type=dms_custom)
 
     def load_command_table(self, args):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-dms-0.1.2/azure/cli/command_modules/dms/commands.py 
new/azure-cli-dms-0.1.4/azure/cli/command_modules/dms/commands.py
--- old/azure-cli-dms-0.1.2/azure/cli/command_modules/dms/commands.py   
2019-01-25 20:43:40.000000000 +0100
+++ new/azure-cli-dms-0.1.4/azure/cli/command_modules/dms/commands.py   
2019-06-13 23:17:46.000000000 +0200
@@ -25,25 +25,25 @@
 def load_command_table(self, _):
 
     dms_sdk = CliCommandType(
-        
operations_tmpl='azure.mgmt.datamigration.operations.services_operations#ServicesOperations.{}',
+        
operations_tmpl='azure.mgmt.datamigration.operations#ServicesOperations.{}',
         client_factory=dms_client_factory,
         exception_handler=dms_api_exception_handler
     )
 
     dms_skus_sdk = CliCommandType(
-        
operations_tmpl='azure.mgmt.datamigration.operations.resource_skus_operations#ResourceSkusOperations.{}',
+        
operations_tmpl='azure.mgmt.datamigration.operations#ResourceSkusOperations.{}',
         client_factory=dms_client_factory,
         exception_handler=dms_api_exception_handler
     )
 
     dms_projects_sdk = CliCommandType(
-        
operations_tmpl='azure.mgmt.datamigration.operations.projects_operations#ProjectsOperations.{}',
+        
operations_tmpl='azure.mgmt.datamigration.operations#ProjectsOperations.{}',
         client_factory=dms_client_factory,
         exception_handler=dms_api_exception_handler
     )
 
     dms_tasks_sdk = CliCommandType(
-        
operations_tmpl='azure.mgmt.datamigration.operations.tasks_operations#TasksOperations.{}',
+        
operations_tmpl='azure.mgmt.datamigration.operations#TasksOperations.{}',
         client_factory=dms_client_factory,
         exception_handler=dms_api_exception_handler
     )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-dms-0.1.2/azure_cli_dms.egg-info/PKG-INFO 
new/azure-cli-dms-0.1.4/azure_cli_dms.egg-info/PKG-INFO
--- old/azure-cli-dms-0.1.2/azure_cli_dms.egg-info/PKG-INFO     2019-01-25 
20:44:22.000000000 +0100
+++ new/azure-cli-dms-0.1.4/azure_cli_dms.egg-info/PKG-INFO     2019-06-13 
23:18:22.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: azure-cli-dms
-Version: 0.1.2
+Version: 0.1.4
 Summary: Microsoft Azure Command-Line Tools for the Data Migration Service 
(DMS) Command Module
 Home-page: https://github.com/Azure/azure-cli
 Author: Microsoft Corporation
@@ -19,6 +19,15 @@
         
         Release History
         ===============
+        
+        0.1.4
+        +++++
+        * Minor fixes.
+        
+        0.1.3
+        +++++
+        * Minor fixes.
+        
         0.1.2
         +++++
         * Minor fixes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-dms-0.1.2/setup.py 
new/azure-cli-dms-0.1.4/setup.py
--- old/azure-cli-dms-0.1.2/setup.py    2019-01-25 20:43:40.000000000 +0100
+++ new/azure-cli-dms-0.1.4/setup.py    2019-06-13 23:17:46.000000000 +0200
@@ -14,7 +14,7 @@
     logger.warn("Wheel is not available, disabling bdist_wheel hook")
     cmdclass = {}
 
-VERSION = "0.1.2"
+VERSION = "0.1.4"
 # The full list of classifiers is available at
 # https://pypi.python.org/pypi?%3Aaction=list_classifiers
 CLASSIFIERS = [


Reply via email to