Hello community,
here is the log from the commit of package azure-cli-relay for openSUSE:Factory
checked in at 2019-10-31 18:17:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/azure-cli-relay (Old)
and /work/SRC/openSUSE:Factory/.azure-cli-relay.new.2990 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "azure-cli-relay"
Thu Oct 31 18:17:06 2019 rev:3 rq:742714 version:0.1.5
Changes:
--------
--- /work/SRC/openSUSE:Factory/azure-cli-relay/azure-cli-relay.changes
2019-06-05 11:44:49.515015981 +0200
+++
/work/SRC/openSUSE:Factory/.azure-cli-relay.new.2990/azure-cli-relay.changes
2019-10-31 18:17:09.458128673 +0100
@@ -1,0 +2,8 @@
+Thu Oct 24 12:11:46 UTC 2019 - John Paul Adrian Glaubitz
<[email protected]>
+
+- New upstream release
+ + Version 0.1.5
+ + For detailed information about changes see the
+ HISTORY.txt file provided with this package
+
+-------------------------------------------------------------------
Old:
----
azure-cli-relay-0.1.3.tar.gz
New:
----
azure-cli-relay-0.1.5.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ azure-cli-relay.spec ++++++
--- /var/tmp/diff_new_pack.DCXMuh/_old 2019-10-31 18:17:10.226129468 +0100
+++ /var/tmp/diff_new_pack.DCXMuh/_new 2019-10-31 18:17:10.238129480 +0100
@@ -17,7 +17,7 @@
Name: azure-cli-relay
-Version: 0.1.3
+Version: 0.1.5
Release: 0
Summary: Microsoft Azure CLI 'relay' Command Module
License: MIT
++++++ azure-cli-relay-0.1.3.tar.gz -> azure-cli-relay-0.1.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/azure-cli-relay-0.1.3/HISTORY.rst
new/azure-cli-relay-0.1.5/HISTORY.rst
--- old/azure-cli-relay-0.1.3/HISTORY.rst 2019-01-25 20:43:41.000000000
+0100
+++ new/azure-cli-relay-0.1.5/HISTORY.rst 2019-06-13 23:17:47.000000000
+0200
@@ -2,6 +2,15 @@
Release History
===============
+
+0.1.5
++++++
+* Minor fixes
+
+0.1.4
++++++
+* Minor fixes
+
0.1.3
+++++
* Minor fixes
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/azure-cli-relay-0.1.3/PKG-INFO
new/azure-cli-relay-0.1.5/PKG-INFO
--- old/azure-cli-relay-0.1.3/PKG-INFO 2019-01-25 20:43:57.000000000 +0100
+++ new/azure-cli-relay-0.1.5/PKG-INFO 2019-06-13 23:18:01.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: azure-cli-relay
-Version: 0.1.3
+Version: 0.1.5
Summary: Microsoft Azure Command-Line Tools Relay Command Module
Home-page: https://github.com/Azure/azure-cli
Author: Microsoft Corporation
@@ -19,6 +19,15 @@
Release History
===============
+
+ 0.1.5
+ +++++
+ * Minor fixes
+
+ 0.1.4
+ +++++
+ * Minor fixes
+
0.1.3
+++++
* Minor fixes
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure-cli-relay-0.1.3/azure/cli/command_modules/relay/__init__.py
new/azure-cli-relay-0.1.5/azure/cli/command_modules/relay/__init__.py
--- old/azure-cli-relay-0.1.3/azure/cli/command_modules/relay/__init__.py
2019-01-25 20:43:41.000000000 +0100
+++ new/azure-cli-relay-0.1.5/azure/cli/command_modules/relay/__init__.py
2019-06-13 23:17:47.000000000 +0200
@@ -14,10 +14,11 @@
def __init__(self, cli_ctx=None):
from azure.cli.core.commands import CliCommandType
+ from azure.cli.core.profiles import ResourceType
relay_custom =
CliCommandType(operations_tmpl='azure.cli.command_modules.relay.custom#{}')
super(RelayCommandsLoader, self).__init__(
cli_ctx=cli_ctx, custom_command_type=relay_custom,
- min_profile='2017-03-10-profile')
+ resource_type=ResourceType.MGMT_RELAY)
def load_command_table(self, args):
from azure.cli.command_modules.relay.commands import load_command_table
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure-cli-relay-0.1.3/azure/cli/command_modules/relay/commands.py
new/azure-cli-relay-0.1.5/azure/cli/command_modules/relay/commands.py
--- old/azure-cli-relay-0.1.3/azure/cli/command_modules/relay/commands.py
2019-01-25 20:43:41.000000000 +0100
+++ new/azure-cli-relay-0.1.5/azure/cli/command_modules/relay/commands.py
2019-06-13 23:17:47.000000000 +0200
@@ -15,17 +15,17 @@
from azure.cli.command_modules.relay.custom import empty_on_404
sb_namespace_util = CliCommandType(
-
operations_tmpl='azure.mgmt.relay.operations.namespaces_operations#NamespacesOperations.{}',
+ operations_tmpl='azure.mgmt.relay.operations#NamespacesOperations.{}',
client_factory=namespaces_mgmt_client_factory
)
sb_wcfrelay_util = CliCommandType(
-
operations_tmpl='azure.mgmt.relay.operations.wcf_relays_operations#WCFRelaysOperations.{}',
+ operations_tmpl='azure.mgmt.relay.operations#WCFRelaysOperations.{}',
client_factory=wcfrelays_mgmt_client_factory
)
sb_hyco_util = CliCommandType(
-
operations_tmpl='azure.mgmt.relay.operations.hybrid_connections_operations#HybridConnectionsOperations.{}',
+
operations_tmpl='azure.mgmt.relay.operations#HybridConnectionsOperations.{}',
client_factory=hycos_mgmt_client_factory
)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure-cli-relay-0.1.3/azure_cli_relay.egg-info/PKG-INFO
new/azure-cli-relay-0.1.5/azure_cli_relay.egg-info/PKG-INFO
--- old/azure-cli-relay-0.1.3/azure_cli_relay.egg-info/PKG-INFO 2019-01-25
20:43:57.000000000 +0100
+++ new/azure-cli-relay-0.1.5/azure_cli_relay.egg-info/PKG-INFO 2019-06-13
23:18:01.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: azure-cli-relay
-Version: 0.1.3
+Version: 0.1.5
Summary: Microsoft Azure Command-Line Tools Relay Command Module
Home-page: https://github.com/Azure/azure-cli
Author: Microsoft Corporation
@@ -19,6 +19,15 @@
Release History
===============
+
+ 0.1.5
+ +++++
+ * Minor fixes
+
+ 0.1.4
+ +++++
+ * Minor fixes
+
0.1.3
+++++
* Minor fixes
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/azure-cli-relay-0.1.3/setup.py
new/azure-cli-relay-0.1.5/setup.py
--- old/azure-cli-relay-0.1.3/setup.py 2019-01-25 20:43:41.000000000 +0100
+++ new/azure-cli-relay-0.1.5/setup.py 2019-06-13 23:17:47.000000000 +0200
@@ -13,7 +13,7 @@
logger.warn("Wheel is not available, disabling bdist_wheel hook")
cmdclass = {}
-VERSION = "0.1.3"
+VERSION = "0.1.5"
# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers