Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package azure-cli for openSUSE:Factory 
checked in at 2022-02-25 21:25:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/azure-cli (Old)
 and      /work/SRC/openSUSE:Factory/.azure-cli.new.1958 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "azure-cli"

Fri Feb 25 21:25:19 2022 rev:39 rq:957626 version:2.33.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/azure-cli/azure-cli.changes      2022-02-14 
22:37:13.261577842 +0100
+++ /work/SRC/openSUSE:Factory/.azure-cli.new.1958/azure-cli.changes    
2022-02-25 21:25:54.163647207 +0100
@@ -1,0 +2,8 @@
+Wed Feb 23 12:08:52 UTC 2022 - John Paul Adrian Glaubitz 
<adrian.glaub...@suse.com>
+
+- New upstream release
+  + Version 2.33.1
+  + For detailed information about changes see the
+    HISTORY.rst file provided with this package
+
+-------------------------------------------------------------------

Old:
----
  azure-cli-2.33.0.tar.gz

New:
----
  azure-cli-2.33.1.tar.gz

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

Other differences:
------------------
++++++ azure-cli.spec ++++++
--- /var/tmp/diff_new_pack.owyCg9/_old  2022-02-25 21:25:54.743647310 +0100
+++ /var/tmp/diff_new_pack.owyCg9/_new  2022-02-25 21:25:54.747647311 +0100
@@ -32,7 +32,7 @@
 Name:           azure-cli%{?name_ext}
 %endif
 %define         short_name azure-cli
-Version:        2.33.0
+Version:        2.33.1
 Release:        0
 Summary:        Microsoft Azure CLI 2.0
 License:        MIT

++++++ azure-cli-2.33.0.tar.gz -> azure-cli-2.33.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-2.33.0/HISTORY.rst 
new/azure-cli-2.33.1/HISTORY.rst
--- old/azure-cli-2.33.0/HISTORY.rst    2022-01-28 11:41:16.000000000 +0100
+++ new/azure-cli-2.33.1/HISTORY.rst    2022-02-14 05:00:00.000000000 +0100
@@ -3,6 +3,17 @@
 Release History
 ===============
 
+2.33.1
+++++++
+
+**Compute**
+
+* Hotfix: Fix #21224: Fix the issue that VMCustomization is not enabled 
(#21241)
+
+**Packaging**
+
+* [BREAKING CHANGE] Drop jmespath-terminal from docker image (#21277)
+
 2.33.0
 ++++++
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-2.33.0/PKG-INFO 
new/azure-cli-2.33.1/PKG-INFO
--- old/azure-cli-2.33.0/PKG-INFO       2022-01-28 11:41:34.719464800 +0100
+++ new/azure-cli-2.33.1/PKG-INFO       2022-02-14 05:00:15.800790000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: azure-cli
-Version: 2.33.0
+Version: 2.33.1
 Summary: Microsoft Azure Command-Line Tools
 Home-page: https://github.com/Azure/azure-cli
 Author: Microsoft Corporation
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-2.33.0/azure/cli/__main__.py 
new/azure-cli-2.33.1/azure/cli/__main__.py
--- old/azure-cli-2.33.0/azure/cli/__main__.py  2022-01-28 11:41:16.000000000 
+0100
+++ new/azure-cli-2.33.1/azure/cli/__main__.py  2022-02-14 05:00:00.000000000 
+0100
@@ -17,7 +17,7 @@
 from knack.log import get_logger
 
 __author__ = "Microsoft Corporation <pyt...@microsoft.com>"
-__version__ = "2.33.0"
+__version__ = "2.33.1"
 
 
 # A workaround for https://bugs.python.org/issue32502 
(https://github.com/Azure/azure-cli/issues/5184)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-2.33.0/azure/cli/command_modules/vm/_template_builder.py 
new/azure-cli-2.33.1/azure/cli/command_modules/vm/_template_builder.py
--- old/azure-cli-2.33.0/azure/cli/command_modules/vm/_template_builder.py      
2022-01-28 11:41:19.000000000 +0100
+++ new/azure-cli-2.33.1/azure/cli/command_modules/vm/_template_builder.py      
2022-02-14 05:00:03.000000000 +0100
@@ -498,6 +498,9 @@
 
         return profile
 
+    vm_properties = {'hardwareProfile': {'vmSize': size}, 'networkProfile': 
{'networkInterfaces': nics},
+                     'storageProfile': _build_storage_profile()}
+
     vm_size_properties = {}
     if v_cpus_available is not None:
         vm_size_properties['vCPUsAvailable'] = v_cpus_available
@@ -505,8 +508,8 @@
     if v_cpus_per_core is not None:
         vm_size_properties['vCPUsPerCore'] = v_cpus_per_core
 
-    vm_properties = {'hardwareProfile': {'vmSize': size, 'vmSizeProperties': 
vm_size_properties},
-                     'networkProfile': {'networkInterfaces': nics}, 
'storageProfile': _build_storage_profile()}
+    if vm_size_properties:
+        vm_properties['hardwareProfile']['vmSizeProperties'] = 
vm_size_properties
 
     if availability_set_id:
         vm_properties['availabilitySet'] = {'id': availability_set_id}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-2.33.0/azure_cli.egg-info/PKG-INFO 
new/azure-cli-2.33.1/azure_cli.egg-info/PKG-INFO
--- old/azure-cli-2.33.0/azure_cli.egg-info/PKG-INFO    2022-01-28 
11:41:34.000000000 +0100
+++ new/azure-cli-2.33.1/azure_cli.egg-info/PKG-INFO    2022-02-14 
05:00:15.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: azure-cli
-Version: 2.33.0
+Version: 2.33.1
 Summary: Microsoft Azure Command-Line Tools
 Home-page: https://github.com/Azure/azure-cli
 Author: Microsoft Corporation
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-2.33.0/azure_cli.egg-info/requires.txt 
new/azure-cli-2.33.1/azure_cli.egg-info/requires.txt
--- old/azure-cli-2.33.0/azure_cli.egg-info/requires.txt        2022-01-28 
11:41:34.000000000 +0100
+++ new/azure-cli-2.33.1/azure_cli.egg-info/requires.txt        2022-02-14 
05:00:15.000000000 +0100
@@ -1,7 +1,7 @@
 antlr4-python3-runtime~=4.7.2
 azure-appconfiguration~=1.1.1
 azure-batch~=11.0.0
-azure-cli-core==2.33.0
+azure-cli-core==2.33.1
 azure-cosmos>=3.0.2,~=3.0
 azure-datalake-store~=0.0.49
 azure-graphrbac~=0.60.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-2.33.0/setup.py 
new/azure-cli-2.33.1/setup.py
--- old/azure-cli-2.33.0/setup.py       2022-01-28 11:41:20.000000000 +0100
+++ new/azure-cli-2.33.1/setup.py       2022-02-14 05:00:04.000000000 +0100
@@ -17,7 +17,7 @@
     logger.warn("Wheel is not available, disabling bdist_wheel hook")
     cmdclass = {}
 
-VERSION = "2.33.0"
+VERSION = "2.33.1"
 # If we have source, validate that our version numbers match
 # This should prevent uploading releases with mismatched versions.
 try:

Reply via email to