Hello community,

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

Package is "azure-cli-dla"

Thu Oct 31 18:15:54 2019 rev:7 rq:742686 version:0.2.6

Changes:
--------
--- /work/SRC/openSUSE:Factory/azure-cli-dla/azure-cli-dla.changes      
2019-06-05 11:43:01.007043235 +0200
+++ /work/SRC/openSUSE:Factory/.azure-cli-dla.new.2990/azure-cli-dla.changes    
2019-10-31 18:15:56.870053529 +0100
@@ -1,0 +2,9 @@
+Thu Oct 24 12:10:00 UTC 2019 - John Paul Adrian Glaubitz 
<adrian.glaub...@suse.com>
+
+- New upstream release
+  + Version 0.2.6
+  + For detailed information about changes see the
+    HISTORY.txt file provided with this package
+- Update Requires from setup.py
+
+-------------------------------------------------------------------

Old:
----
  azure-cli-dla-0.2.4.tar.gz

New:
----
  azure-cli-dla-0.2.6.tar.gz

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

Other differences:
------------------
++++++ azure-cli-dla.spec ++++++
--- /var/tmp/diff_new_pack.7noGnH/_old  2019-10-31 18:15:58.174054879 +0100
+++ /var/tmp/diff_new_pack.7noGnH/_new  2019-10-31 18:15:58.178054883 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           azure-cli-dla
-Version:        0.2.4
+Version:        0.2.6
 Release:        0
 Summary:        Microsoft Azure CLI 'data lake analytics' Command Module
 License:        MIT
@@ -33,7 +33,8 @@
 Requires:       azure-cli-command-modules-nspkg
 Requires:       azure-cli-core
 Requires:       azure-cli-nspkg
-Requires:       python3-azure-mgmt-datalake-analytics >= 0.2.0
+Requires:       python3-azure-mgmt-datalake-analytics < 1.0.0
+Requires:       python3-azure-mgmt-datalake-analytics >= 0.2.1
 Requires:       python3-azure-mgmt-datalake-store >= 0.5.0
 Requires:       python3-azure-nspkg >= 3.0.0
 Conflicts:      azure-cli < 2.0.0

++++++ azure-cli-dla-0.2.4.tar.gz -> azure-cli-dla-0.2.6.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-dla-0.2.4/HISTORY.rst 
new/azure-cli-dla-0.2.6/HISTORY.rst
--- old/azure-cli-dla-0.2.4/HISTORY.rst 2019-02-12 03:05:13.000000000 +0100
+++ new/azure-cli-dla-0.2.6/HISTORY.rst 2019-06-13 23:17:46.000000000 +0200
@@ -2,6 +2,15 @@
 
 Release History
 ===============
+
+0.2.6
++++++
+* Minor fixes.
+
+0.2.5
++++++
+* Minor fixes.
+
 0.2.4
 +++++
 * Minor fixes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-dla-0.2.4/PKG-INFO 
new/azure-cli-dla-0.2.6/PKG-INFO
--- old/azure-cli-dla-0.2.4/PKG-INFO    2019-02-12 03:05:42.000000000 +0100
+++ new/azure-cli-dla-0.2.6/PKG-INFO    2019-06-13 23:17:56.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: azure-cli-dla
-Version: 0.2.4
+Version: 0.2.6
 Summary: Microsoft Azure Command-Line Tools Data Lake Analytics Command Module
 Home-page: https://github.com/Azure/azure-cli
 Author: Microsoft Corporation
@@ -19,6 +19,15 @@
         
         Release History
         ===============
+        
+        0.2.6
+        +++++
+        * Minor fixes.
+        
+        0.2.5
+        +++++
+        * Minor fixes.
+        
         0.2.4
         +++++
         * Minor fixes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-dla-0.2.4/azure/cli/command_modules/dla/__init__.py 
new/azure-cli-dla-0.2.6/azure/cli/command_modules/dla/__init__.py
--- old/azure-cli-dla-0.2.4/azure/cli/command_modules/dla/__init__.py   
2019-02-12 03:05:13.000000000 +0100
+++ new/azure-cli-dla-0.2.6/azure/cli/command_modules/dla/__init__.py   
2019-06-13 23:17:46.000000000 +0200
@@ -13,9 +13,10 @@
 
     def __init__(self, cli_ctx=None):
         from azure.cli.core.commands import CliCommandType
+        from azure.cli.core.profiles import ResourceType
         dla_custom = 
CliCommandType(operations_tmpl='azure.cli.command_modules.dla.custom#{}')
         super(DataLakeAnalyticsCommandsLoader, self).__init__(cli_ctx=cli_ctx,
-                                                              
min_profile='2017-03-10-profile',
+                                                              
resource_type=ResourceType.MGMT_DATALAKE_ANALYTICS,
                                                               
custom_command_type=dla_custom)
 
     def load_command_table(self, args):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-dla-0.2.4/azure/cli/command_modules/dla/_help.py 
new/azure-cli-dla-0.2.6/azure/cli/command_modules/dla/_help.py
--- old/azure-cli-dla-0.2.4/azure/cli/command_modules/dla/_help.py      
2019-02-12 03:05:13.000000000 +0100
+++ new/azure-cli-dla-0.2.6/azure/cli/command_modules/dla/_help.py      
2019-06-13 23:17:46.000000000 +0200
@@ -9,17 +9,17 @@
 
 helps['dla'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics accounts, jobs, and 
catalogs.
+short-summary: Manage Data Lake Analytics accounts, jobs, and catalogs.
 """
 
 helps['dla account'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics accounts.
+short-summary: Manage Data Lake Analytics accounts.
 """
 
 helps['dla account blob-storage'] = """
 type: group
-short-summary: (PREVIEW) Manage links between Data Lake Analytics accounts and 
Azure Storage.
+short-summary: Manage links between Data Lake Analytics accounts and Azure 
Storage.
 """
 
 helps['dla account blob-storage add'] = """
@@ -34,7 +34,7 @@
 
 helps['dla account compute-policy'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics account compute policies.
+short-summary: Manage Data Lake Analytics account compute policies.
 """
 
 helps['dla account compute-policy create'] = """
@@ -108,7 +108,7 @@
 
 helps['dla account data-lake-store'] = """
 type: group
-short-summary: (PREVIEW) Manage links between Data Lake Analytics and Data 
Lake Store accounts.
+short-summary: Manage links between Data Lake Analytics and Data Lake Store 
accounts.
 """
 
 helps['dla account delete'] = """
@@ -118,7 +118,7 @@
 
 helps['dla account firewall'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics account firewall rules.
+short-summary: Manage Data Lake Analytics account firewall rules.
 """
 
 helps['dla account firewall create'] = """
@@ -189,17 +189,17 @@
 
 helps['dla catalog'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics catalogs.
+short-summary: Manage Data Lake Analytics catalogs.
 """
 
 helps['dla catalog assembly'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics catalog assemblies.
+short-summary: Manage Data Lake Analytics catalog assemblies.
 """
 
 helps['dla catalog credential'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics catalog credentials.
+short-summary: Manage Data Lake Analytics catalog credentials.
 """
 
 helps['dla catalog credential create'] = """
@@ -249,32 +249,32 @@
 
 helps['dla catalog database'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics catalog databases.
+short-summary: Manage Data Lake Analytics catalog databases.
 """
 
 helps['dla catalog external-data-source'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics catalog external data 
sources.
+short-summary: Manage Data Lake Analytics catalog external data sources.
 """
 
 helps['dla catalog package'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics catalog packages.
+short-summary: Manage Data Lake Analytics catalog packages.
 """
 
 helps['dla catalog procedure'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics catalog stored procedures.
+short-summary: Manage Data Lake Analytics catalog stored procedures.
 """
 
 helps['dla catalog schema'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics catalog schemas.
+short-summary: Manage Data Lake Analytics catalog schemas.
 """
 
 helps['dla catalog table'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics catalog tables.
+short-summary: Manage Data Lake Analytics catalog tables.
 """
 
 helps['dla catalog table list'] = """
@@ -291,12 +291,12 @@
 
 helps['dla catalog table-partition'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics catalog table partitions.
+short-summary: Manage Data Lake Analytics catalog table partitions.
 """
 
 helps['dla catalog table-stats'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics catalog table statistics.
+short-summary: Manage Data Lake Analytics catalog table statistics.
 """
 
 helps['dla catalog table-stats list'] = """
@@ -316,12 +316,12 @@
 
 helps['dla catalog table-type'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics catalog table types.
+short-summary: Manage Data Lake Analytics catalog table types.
 """
 
 helps['dla catalog tvf'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics catalog table valued 
functions.
+short-summary: Manage Data Lake Analytics catalog table valued functions.
 """
 
 helps['dla catalog tvf list'] = """
@@ -338,7 +338,7 @@
 
 helps['dla catalog view'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics catalog views.
+short-summary: Manage Data Lake Analytics catalog views.
 """
 
 helps['dla catalog view list'] = """
@@ -355,7 +355,7 @@
 
 helps['dla job'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics jobs.
+short-summary: Manage Data Lake Analytics jobs.
 """
 
 helps['dla job cancel'] = """
@@ -370,7 +370,7 @@
 
 helps['dla job pipeline'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics job pipelines.
+short-summary: Manage Data Lake Analytics job pipelines.
 """
 
 helps['dla job pipeline list'] = """
@@ -385,7 +385,7 @@
 
 helps['dla job recurrence'] = """
 type: group
-short-summary: (PREVIEW) Manage Data Lake Analytics job recurrences.
+short-summary: Manage Data Lake Analytics job recurrences.
 """
 
 helps['dla job recurrence list'] = """
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-dla-0.2.4/azure/cli/command_modules/dla/_params.py 
new/azure-cli-dla-0.2.6/azure/cli/command_modules/dla/_params.py
--- old/azure-cli-dla-0.2.4/azure/cli/command_modules/dla/_params.py    
2019-02-12 03:05:13.000000000 +0100
+++ new/azure-cli-dla-0.2.6/azure/cli/command_modules/dla/_params.py    
2019-06-13 23:17:46.000000000 +0200
@@ -53,12 +53,19 @@
     with self.argument_context('dla account blob-storage') as c:
         c.argument('access_key', help='the access key associated with this 
Azure Storage account that will be used to connect to it')
         c.argument('suffix', help='the optional suffix for the storage 
account')
+        c.argument('storage_account_name', help='Name of an existing storage 
account to link to.')
 
     # job
     with self.argument_context('dla job submit') as c:
         c.argument('compile_mode', arg_type=get_enum_type(CompileMode), 
help='Indicates the type of compilation to be done on this job. Valid values 
are: \'Semantic\' (Only performs semantic checks and necessary sanity checks), 
\'Full\' (full compilation) and \'SingleBox\' (Full compilation performed 
locally)')
         c.argument('compile_only', help='Indicates that the submission should 
only build the job and not execute if set to true.', action='store_true')
         c.argument('script', completer=FilesCompleter(), help="The script to 
submit. This is either the script contents or use `@<file path>` to load the 
script from a file")
+        c.argument('pipeline_id', help='Job relationship pipeline GUID.')
+        c.argument('pipeline_name', help='Friendly name of the job 
relationship pipeline.')
+        c.argument('pipeline_uri', help='Unique pipeline URI which links to 
the originating service for this pipeline.')
+        c.argument('run_id', help='GUID of the iteration of this pipeline.')
+        c.argument('recurrence_id', help='Recurrence GUID, unique per 
activity/script, regardless of iteration. Links different occurrences of the 
same job together.')
+        c.argument('recurrence_name', help='Friendly recurrence nae for the 
correlation between jobs.')
 
     with self.argument_context('dla job wait') as c:
         c.argument('max_wait_time_sec', help='The maximum amount of time to 
wait before erroring out. Default value is to never timeout. Any value <= 0 
means never timeout', type=int)
@@ -75,6 +82,9 @@
         c.argument('recurrence_id', help='A filter which returns jobs only 
containing the specified recurrence_id.')
 
     # credential
+    with self.argument_context('dla catalog credential') as c:
+        c.argument('uri', help='URI of the external data source.')
+
     with self.argument_context('dla catalog credential create') as c:
         c.argument('credential_user_password', options_list=['--password', 
'-p'], help='Password for the credential user. Will prompt if not given.')
         c.argument('credential_user_name', options_list=['--user-name'])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-dla-0.2.4/azure/cli/command_modules/dla/commands.py 
new/azure-cli-dla-0.2.6/azure/cli/command_modules/dla/commands.py
--- old/azure-cli-dla-0.2.4/azure/cli/command_modules/dla/commands.py   
2019-02-12 03:05:13.000000000 +0100
+++ new/azure-cli-dla-0.2.6/azure/cli/command_modules/dla/commands.py   
2019-06-13 23:17:46.000000000 +0200
@@ -186,3 +186,6 @@
         g.command('list', 'list_by_account')
         g.show_command('show', 'get')
         g.command('delete', 'delete')
+
+    with self.command_group('dla', is_preview=True):
+        pass
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-dla-0.2.4/azure_cli_dla.egg-info/PKG-INFO 
new/azure-cli-dla-0.2.6/azure_cli_dla.egg-info/PKG-INFO
--- old/azure-cli-dla-0.2.4/azure_cli_dla.egg-info/PKG-INFO     2019-02-12 
03:05:42.000000000 +0100
+++ new/azure-cli-dla-0.2.6/azure_cli_dla.egg-info/PKG-INFO     2019-06-13 
23:17:56.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: azure-cli-dla
-Version: 0.2.4
+Version: 0.2.6
 Summary: Microsoft Azure Command-Line Tools Data Lake Analytics Command Module
 Home-page: https://github.com/Azure/azure-cli
 Author: Microsoft Corporation
@@ -19,6 +19,15 @@
         
         Release History
         ===============
+        
+        0.2.6
+        +++++
+        * Minor fixes.
+        
+        0.2.5
+        +++++
+        * Minor fixes.
+        
         0.2.4
         +++++
         * Minor fixes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-dla-0.2.4/azure_cli_dla.egg-info/requires.txt 
new/azure-cli-dla-0.2.6/azure_cli_dla.egg-info/requires.txt
--- old/azure-cli-dla-0.2.4/azure_cli_dla.egg-info/requires.txt 2019-02-12 
03:05:42.000000000 +0100
+++ new/azure-cli-dla-0.2.6/azure_cli_dla.egg-info/requires.txt 2019-06-13 
23:17:56.000000000 +0200
@@ -1,3 +1,3 @@
 azure-mgmt-datalake-store==0.5.0
-azure-mgmt-datalake-analytics==0.2.0
+azure-mgmt-datalake-analytics~=0.2.1
 azure-cli-core
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-dla-0.2.4/setup.py 
new/azure-cli-dla-0.2.6/setup.py
--- old/azure-cli-dla-0.2.4/setup.py    2019-02-12 03:05:13.000000000 +0100
+++ new/azure-cli-dla-0.2.6/setup.py    2019-06-13 23:17:46.000000000 +0200
@@ -16,7 +16,7 @@
     cmdclass = {}
 
 
-VERSION = "0.2.4"
+VERSION = "0.2.6"
 # The full list of classifiers is available at
 # https://pypi.python.org/pypi?%3Aaction=list_classifiers
 CLASSIFIERS = [
@@ -35,7 +35,7 @@
 
 DEPENDENCIES = [
     'azure-mgmt-datalake-store==0.5.0',
-    'azure-mgmt-datalake-analytics==0.2.0',
+    'azure-mgmt-datalake-analytics~=0.2.1',
     'azure-cli-core',
 ]
 


Reply via email to