Hello community,
here is the log from the commit of package azure-cli-reservations for
openSUSE:Factory checked in at 2019-10-31 18:17:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/azure-cli-reservations (Old)
and /work/SRC/openSUSE:Factory/.azure-cli-reservations.new.2990 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "azure-cli-reservations"
Thu Oct 31 18:17:09 2019 rev:5 rq:742717 version:0.4.3
Changes:
--------
---
/work/SRC/openSUSE:Factory/azure-cli-reservations/azure-cli-reservations.changes
2019-06-05 11:44:53.727014923 +0200
+++
/work/SRC/openSUSE:Factory/.azure-cli-reservations.new.2990/azure-cli-reservations.changes
2019-10-31 18:17:11.150130424 +0100
@@ -1,0 +2,8 @@
+Thu Oct 24 12:11:50 UTC 2019 - John Paul Adrian Glaubitz
<[email protected]>
+
+- New upstream release
+ + Version 0.4.3
+ + For detailed information about changes see the
+ HISTORY.txt file provided with this package
+
+-------------------------------------------------------------------
Old:
----
azure-cli-reservations-0.4.1.tar.gz
New:
----
azure-cli-reservations-0.4.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ azure-cli-reservations.spec ++++++
--- /var/tmp/diff_new_pack.s0UZOD/_old 2019-10-31 18:17:11.698130992 +0100
+++ /var/tmp/diff_new_pack.s0UZOD/_new 2019-10-31 18:17:11.702130995 +0100
@@ -17,7 +17,7 @@
Name: azure-cli-reservations
-Version: 0.4.1
+Version: 0.4.3
Release: 0
Summary: Microsoft Azure CLI 'reservations' Command Module
License: MIT
++++++ azure-cli-reservations-0.4.1.tar.gz ->
azure-cli-reservations-0.4.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/azure-cli-reservations-0.4.1/HISTORY.rst
new/azure-cli-reservations-0.4.3/HISTORY.rst
--- old/azure-cli-reservations-0.4.1/HISTORY.rst 2018-11-15
19:56:29.000000000 +0100
+++ new/azure-cli-reservations-0.4.3/HISTORY.rst 2019-06-13
23:17:47.000000000 +0200
@@ -2,6 +2,15 @@
Release History
===============
+
+0.4.3
++++++
+* Minor fixes
+
+0.4.2
++++++
+* Minor fixes
+
0.4.1
+++++
* Add RedHat in the reserved resource enum type
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/azure-cli-reservations-0.4.1/PKG-INFO
new/azure-cli-reservations-0.4.3/PKG-INFO
--- old/azure-cli-reservations-0.4.1/PKG-INFO 2018-11-15 19:56:53.000000000
+0100
+++ new/azure-cli-reservations-0.4.3/PKG-INFO 2019-06-13 23:18:04.000000000
+0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: azure-cli-reservations
-Version: 0.4.1
+Version: 0.4.3
Summary: Microsoft Azure Command-Line Tools Reservations Command Module
Home-page: https://github.com/azure/azure-cli
Author: Microsoft Corporation
@@ -17,6 +17,15 @@
Release History
===============
+
+ 0.4.3
+ +++++
+ * Minor fixes
+
+ 0.4.2
+ +++++
+ * Minor fixes
+
0.4.1
+++++
* Add RedHat in the reserved resource enum type
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure-cli-reservations-0.4.1/azure/cli/command_modules/reservations/__init__.py
new/azure-cli-reservations-0.4.3/azure/cli/command_modules/reservations/__init__.py
---
old/azure-cli-reservations-0.4.1/azure/cli/command_modules/reservations/__init__.py
2018-11-15 19:56:29.000000000 +0100
+++
new/azure-cli-reservations-0.4.3/azure/cli/command_modules/reservations/__init__.py
2019-06-13 23:17:47.000000000 +0200
@@ -14,12 +14,13 @@
def __init__(self, cli_ctx=None):
from azure.cli.core.commands import CliCommandType
+ from azure.cli.core.profiles import ResourceType
reservations_custom =
CliCommandType(operations_tmpl='azure.cli.command_modules.reservations.custom#{}',
client_factory=reservation_mgmt_client_factory,
exception_handler=reservations_exception_handler)
super(ReservationsCommandsLoader, self).__init__(cli_ctx=cli_ctx,
custom_command_type=reservations_custom,
-
min_profile='2017-03-10-profile')
+
resource_type=ResourceType.MGMT_RESERVATIONS)
def load_command_table(self, args):
from azure.cli.command_modules.reservations.commands import
load_command_table
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure-cli-reservations-0.4.1/azure/cli/command_modules/reservations/_exception_handler.py
new/azure-cli-reservations-0.4.3/azure/cli/command_modules/reservations/_exception_handler.py
---
old/azure-cli-reservations-0.4.1/azure/cli/command_modules/reservations/_exception_handler.py
2018-11-15 19:56:29.000000000 +0100
+++
new/azure-cli-reservations-0.4.3/azure/cli/command_modules/reservations/_exception_handler.py
2019-06-13 23:17:47.000000000 +0200
@@ -11,7 +11,6 @@
if isinstance(ex, Error):
message = ex.error.error.message
raise CLIError(message)
- else:
- import sys
- from six import reraise
- reraise(*sys.exc_info())
+ import sys
+ from six import reraise
+ reraise(*sys.exc_info())
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure-cli-reservations-0.4.1/azure/cli/command_modules/reservations/commands.py
new/azure-cli-reservations-0.4.3/azure/cli/command_modules/reservations/commands.py
---
old/azure-cli-reservations-0.4.1/azure/cli/command_modules/reservations/commands.py
2018-11-15 19:56:29.000000000 +0100
+++
new/azure-cli-reservations-0.4.3/azure/cli/command_modules/reservations/commands.py
2019-06-13 23:17:47.000000000 +0200
@@ -16,12 +16,12 @@
return CliCommandType(*args,
exception_handler=reservations_exception_handler, **kwargs)
reservations_order_sdk = reservations_type(
-
operations_tmpl='azure.mgmt.reservations.operations.reservation_order_operations#ReservationOrderOperations.{}',
+
operations_tmpl='azure.mgmt.reservations.operations#ReservationOrderOperations.{}',
client_factory=reservation_order_mgmt_client_factory
)
reservations_sdk = reservations_type(
-
operations_tmpl='azure.mgmt.reservations.operations.reservation_operations#ReservationOperations.{}',
+
operations_tmpl='azure.mgmt.reservations.operations#ReservationOperations.{}',
client_factory=reservation_mgmt_client_factory
)
@@ -47,3 +47,6 @@
with self.command_group('reservations catalog', reservations_client_sdk)
as g:
g.show_command('show', 'get_catalog')
+
+ with self.command_group('reservations', is_preview=True):
+ pass
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure-cli-reservations-0.4.1/azure_cli_reservations.egg-info/PKG-INFO
new/azure-cli-reservations-0.4.3/azure_cli_reservations.egg-info/PKG-INFO
--- old/azure-cli-reservations-0.4.1/azure_cli_reservations.egg-info/PKG-INFO
2018-11-15 19:56:53.000000000 +0100
+++ new/azure-cli-reservations-0.4.3/azure_cli_reservations.egg-info/PKG-INFO
2019-06-13 23:18:04.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: azure-cli-reservations
-Version: 0.4.1
+Version: 0.4.3
Summary: Microsoft Azure Command-Line Tools Reservations Command Module
Home-page: https://github.com/azure/azure-cli
Author: Microsoft Corporation
@@ -17,6 +17,15 @@
Release History
===============
+
+ 0.4.3
+ +++++
+ * Minor fixes
+
+ 0.4.2
+ +++++
+ * Minor fixes
+
0.4.1
+++++
* Add RedHat in the reserved resource enum type
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/azure-cli-reservations-0.4.1/setup.py
new/azure-cli-reservations-0.4.3/setup.py
--- old/azure-cli-reservations-0.4.1/setup.py 2018-11-15 19:56:29.000000000
+0100
+++ new/azure-cli-reservations-0.4.3/setup.py 2019-06-13 23:17:47.000000000
+0200
@@ -15,7 +15,7 @@
logger.warn("Wheel is not available, disabling bdist_wheel hook")
cmdclass = {}
-VERSION = "0.4.1"
+VERSION = "0.4.3"
# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
CLASSIFIERS = [