Hello community,

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

Package is "azure-cli-batchai"

Thu Oct 31 18:15:15 2019 rev:6 rq:742674 version:0.4.10

Changes:
--------
--- /work/SRC/openSUSE:Factory/azure-cli-batchai/azure-cli-batchai.changes      
2019-06-05 11:41:52.727057586 +0200
+++ 
/work/SRC/openSUSE:Factory/.azure-cli-batchai.new.2990/azure-cli-batchai.changes
    2019-10-31 18:15:15.886011102 +0100
@@ -1,0 +2,9 @@
+Thu Oct 24 12:08:47 UTC 2019 - John Paul Adrian Glaubitz 
<[email protected]>
+
+- New upstream release
+  + Version 0.4.10
+  + For detailed information about changes see the
+    HISTORY.txt file provided with this package
+- Update Requires from setup.py
+
+-------------------------------------------------------------------

Old:
----
  azure-cli-batchai-0.4.7.tar.gz

New:
----
  azure-cli-batchai-0.4.10.tar.gz

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

Other differences:
------------------
++++++ azure-cli-batchai.spec ++++++
--- /var/tmp/diff_new_pack.1j2T1S/_old  2019-10-31 18:15:16.758012005 +0100
+++ /var/tmp/diff_new_pack.1j2T1S/_new  2019-10-31 18:15:16.766012014 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           azure-cli-batchai
-Version:        0.4.7
+Version:        0.4.10
 Release:        0
 Summary:        Microsoft Azure CLI Batch AI Module
 License:        MIT
@@ -34,7 +34,7 @@
 Requires:       azure-cli-core
 Requires:       azure-cli-nspkg
 Requires:       python3-azure-mgmt-batchai >= 2.0.0
-Requires:       python3-azure-mgmt-storage >= 3.1.1
+Requires:       python3-azure-mgmt-storage >= 3.3.0
 Requires:       python3-azure-nspkg >= 3.0.0
 Requires:       python3-azure-storage-blob >= 1.3.1
 Requires:       python3-mock >= 2.0.0

++++++ azure-cli-batchai-0.4.7.tar.gz -> azure-cli-batchai-0.4.10.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-batchai-0.4.7/HISTORY.rst 
new/azure-cli-batchai-0.4.10/HISTORY.rst
--- old/azure-cli-batchai-0.4.7/HISTORY.rst     2019-01-25 20:43:40.000000000 
+0100
+++ new/azure-cli-batchai-0.4.10/HISTORY.rst    2019-06-13 23:17:46.000000000 
+0200
@@ -2,6 +2,19 @@
 
 Release History
 ===============
+
+0.4.10
+++++++
+* BatchAI commands are now deprecated and hidden.
+
+0.4.9
++++++
+* Upgrade azure-mgmt-storage from 3.1.1 to 3.3.0
+
+0.4.8
++++++
+* Minor fixes.
+
 0.4.7
 +++++
 * Minor fixes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-batchai-0.4.7/PKG-INFO 
new/azure-cli-batchai-0.4.10/PKG-INFO
--- old/azure-cli-batchai-0.4.7/PKG-INFO        2019-01-25 20:44:08.000000000 
+0100
+++ new/azure-cli-batchai-0.4.10/PKG-INFO       2019-06-13 23:18:11.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: azure-cli-batchai
-Version: 0.4.7
+Version: 0.4.10
 Summary: Microsoft Azure Batch AI Client Command-Line Tools
 Home-page: https://github.com/Azure/azure-cli
 Author: Microsoft Corporation
@@ -16,6 +16,19 @@
         
         Release History
         ===============
+        
+        0.4.10
+        ++++++
+        * BatchAI commands are now deprecated and hidden.
+        
+        0.4.9
+        +++++
+        * Upgrade azure-mgmt-storage from 3.1.1 to 3.3.0
+        
+        0.4.8
+        +++++
+        * Minor fixes.
+        
         0.4.7
         +++++
         * Minor fixes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-batchai-0.4.7/azure/cli/command_modules/batchai/__init__.py 
new/azure-cli-batchai-0.4.10/azure/cli/command_modules/batchai/__init__.py
--- old/azure-cli-batchai-0.4.7/azure/cli/command_modules/batchai/__init__.py   
2019-01-25 20:43:40.000000000 +0100
+++ new/azure-cli-batchai-0.4.10/azure/cli/command_modules/batchai/__init__.py  
2019-06-13 23:17:46.000000000 +0200
@@ -12,9 +12,10 @@
 
     def __init__(self, cli_ctx=None):
         from azure.cli.core.commands import CliCommandType
+        from azure.cli.core.profiles import ResourceType
         batchai_custom = 
CliCommandType(operations_tmpl='azure.cli.command_modules.batchai.custom#{}')
         super(BatchAiCommandsLoader, self).__init__(cli_ctx=cli_ctx,
-                                                    
min_profile='2017-03-10-profile',
+                                                    
resource_type=ResourceType.MGMT_BATCHAI,
                                                     
custom_command_type=batchai_custom)
 
     def load_command_table(self, args):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-batchai-0.4.7/azure/cli/command_modules/batchai/commands.py 
new/azure-cli-batchai-0.4.10/azure/cli/command_modules/batchai/commands.py
--- old/azure-cli-batchai-0.4.7/azure/cli/command_modules/batchai/commands.py   
2019-01-25 20:43:40.000000000 +0100
+++ new/azure-cli-batchai-0.4.10/azure/cli/command_modules/batchai/commands.py  
2019-06-13 23:17:46.000000000 +0200
@@ -34,27 +34,27 @@
 custom_path = 'azure.cli.command_modules.batchai.custom#{}'
 
 batchai_workspace_sdk = CliCommandType(
-    
operations_tmpl='azure.mgmt.batchai.operations.workspaces_operations#WorkspacesOperations.{}',
+    operations_tmpl='azure.mgmt.batchai.operations#WorkspacesOperations.{}',
     client_factory=workspace_client_factory)
 
 batchai_cluster_sdk = CliCommandType(
-    
operations_tmpl='azure.mgmt.batchai.operations.clusters_operations#ClustersOperations.{}',
+    operations_tmpl='azure.mgmt.batchai.operations#ClustersOperations.{}',
     client_factory=cluster_client_factory)
 
 batchai_experiment_sdk = CliCommandType(
-    
operations_tmpl='azure.mgmt.batchai.operations.experiments_operations#ExperimentsOperations.{}',
+    operations_tmpl='azure.mgmt.batchai.operations#ExperimentsOperations.{}',
     client_factory=workspace_client_factory)
 
 batchai_job_sdk = CliCommandType(
-    
operations_tmpl='azure.mgmt.batchai.operations.jobs_operations#JobsOperations.{}',
+    operations_tmpl='azure.mgmt.batchai.operations#JobsOperations.{}',
     client_factory=job_client_factory)
 
 batchai_server_sdk = CliCommandType(
-    
operations_tmpl='azure.mgmt.batchai.operations.file_servers_operations#FileServersOperations.{}',
+    operations_tmpl='azure.mgmt.batchai.operations#FileServersOperations.{}',
     client_factory=file_server_client_factory)
 
 batchai_usage_sdk = CliCommandType(
-    
operations_tmpl='azure.mgmt.batchai.operations.usages_operations#UsagesOperations.{}',
+    operations_tmpl='azure.mgmt.batchai.operations#UsagesOperations.{}',
     client_factory=usage_client_factory)
 
 
@@ -109,5 +109,5 @@
         g.show_command('show', 'get', 
table_transformer=file_server_show_table_format)
         g.command('list', 'list_by_workspace', 
table_transformer=file_server_list_table_format)
 
-    with self.command_group('batchai', batchai_usage_sdk, 
client_factory=usage_client_factory) as g:
+    with self.command_group('batchai', batchai_usage_sdk, 
client_factory=usage_client_factory, deprecate_info=self.deprecate(hide=True)) 
as g:
         g.command('list-usages', 'list', table_transformer=usage_table_format)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-batchai-0.4.7/azure_cli_batchai.egg-info/PKG-INFO 
new/azure-cli-batchai-0.4.10/azure_cli_batchai.egg-info/PKG-INFO
--- old/azure-cli-batchai-0.4.7/azure_cli_batchai.egg-info/PKG-INFO     
2019-01-25 20:44:08.000000000 +0100
+++ new/azure-cli-batchai-0.4.10/azure_cli_batchai.egg-info/PKG-INFO    
2019-06-13 23:18:11.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: azure-cli-batchai
-Version: 0.4.7
+Version: 0.4.10
 Summary: Microsoft Azure Batch AI Client Command-Line Tools
 Home-page: https://github.com/Azure/azure-cli
 Author: Microsoft Corporation
@@ -16,6 +16,19 @@
         
         Release History
         ===============
+        
+        0.4.10
+        ++++++
+        * BatchAI commands are now deprecated and hidden.
+        
+        0.4.9
+        +++++
+        * Upgrade azure-mgmt-storage from 3.1.1 to 3.3.0
+        
+        0.4.8
+        +++++
+        * Minor fixes.
+        
         0.4.7
         +++++
         * Minor fixes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-batchai-0.4.7/azure_cli_batchai.egg-info/requires.txt 
new/azure-cli-batchai-0.4.10/azure_cli_batchai.egg-info/requires.txt
--- old/azure-cli-batchai-0.4.7/azure_cli_batchai.egg-info/requires.txt 
2019-01-25 20:44:08.000000000 +0100
+++ new/azure-cli-batchai-0.4.10/azure_cli_batchai.egg-info/requires.txt        
2019-06-13 23:18:11.000000000 +0200
@@ -1,4 +1,4 @@
-azure-mgmt-storage==3.1.1
+azure-mgmt-storage==3.3.0
 azure-mgmt-batchai==2.0.0
 azure-storage-blob==1.3.1
 azure-cli-core
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-batchai-0.4.7/setup.py 
new/azure-cli-batchai-0.4.10/setup.py
--- old/azure-cli-batchai-0.4.7/setup.py        2019-01-25 20:43:40.000000000 
+0100
+++ new/azure-cli-batchai-0.4.10/setup.py       2019-06-13 23:17:46.000000000 
+0200
@@ -13,7 +13,7 @@
     logger.warn("Wheel is not available, disabling bdist_wheel hook")
     cmdclass = {}
 
-VERSION = "0.4.7"
+VERSION = "0.4.10"
 # The full list of classifiers is available at
 # https://pypi.python.org/pypi?%3Aaction=list_classifiers
 CLASSIFIERS = [
@@ -31,7 +31,7 @@
 ]
 
 DEPENDENCIES = [
-    'azure-mgmt-storage==3.1.1',
+    'azure-mgmt-storage==3.3.0',
     'azure-mgmt-batchai==2.0.0',
     'azure-storage-blob==1.3.1',
     'azure-cli-core',


Reply via email to