Hello community,
here is the log from the commit of package azure-cli-redis for openSUSE:Factory
checked in at 2019-10-31 18:17:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/azure-cli-redis (Old)
and /work/SRC/openSUSE:Factory/.azure-cli-redis.new.2990 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "azure-cli-redis"
Thu Oct 31 18:17:03 2019 rev:7 rq:742713 version:0.4.4
Changes:
--------
--- /work/SRC/openSUSE:Factory/azure-cli-redis/azure-cli-redis.changes
2019-06-05 11:44:44.923017134 +0200
+++
/work/SRC/openSUSE:Factory/.azure-cli-redis.new.2990/azure-cli-redis.changes
2019-10-31 18:17:06.634125750 +0100
@@ -1,0 +2,8 @@
+Thu Oct 24 12:11:42 UTC 2019 - John Paul Adrian Glaubitz
<[email protected]>
+
+- New upstream release
+ + Version 0.4.4
+ + For detailed information about changes see the
+ HISTORY.txt file provided with this package
+
+-------------------------------------------------------------------
Old:
----
azure-cli-redis-0.4.0.tar.gz
New:
----
azure-cli-redis-0.4.4.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ azure-cli-redis.spec ++++++
--- /var/tmp/diff_new_pack.Pd0dYp/_old 2019-10-31 18:17:07.270126407 +0100
+++ /var/tmp/diff_new_pack.Pd0dYp/_new 2019-10-31 18:17:07.274126412 +0100
@@ -17,7 +17,7 @@
Name: azure-cli-redis
-Version: 0.4.0
+Version: 0.4.4
Release: 0
Summary: Microsoft Azure CLI 'redis' Command Module
License: MIT
++++++ azure-cli-redis-0.4.0.tar.gz -> azure-cli-redis-0.4.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/azure-cli-redis-0.4.0/HISTORY.rst
new/azure-cli-redis-0.4.4/HISTORY.rst
--- old/azure-cli-redis-0.4.0/HISTORY.rst 2019-02-12 03:05:13.000000000
+0100
+++ new/azure-cli-redis-0.4.4/HISTORY.rst 2019-06-13 23:17:47.000000000
+0200
@@ -3,6 +3,22 @@
Release History
===============
+0.4.4
++++++
+* Minor fixes.
+
+0.4.3
++++++
+* Minor fixes.
+
+0.4.2
++++++
+* Minor fixes.
+
+0.4.1
++++++
+* Minor fixes.
+
0.4.0
++++++
* Added commands for managing firewall-rules (create, update, delete, show,
list)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/azure-cli-redis-0.4.0/PKG-INFO
new/azure-cli-redis-0.4.4/PKG-INFO
--- old/azure-cli-redis-0.4.0/PKG-INFO 2019-02-12 03:05:30.000000000 +0100
+++ new/azure-cli-redis-0.4.4/PKG-INFO 2019-06-13 23:18:14.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: azure-cli-redis
-Version: 0.4.0
+Version: 0.4.4
Summary: Microsoft Azure Command-Line Tools Redis Command Module
Home-page: https://github.com/Azure/azure-cli
Author: Microsoft Corporation
@@ -20,6 +20,22 @@
Release History
===============
+ 0.4.4
+ +++++
+ * Minor fixes.
+
+ 0.4.3
+ +++++
+ * Minor fixes.
+
+ 0.4.2
+ +++++
+ * Minor fixes.
+
+ 0.4.1
+ +++++
+ * Minor fixes.
+
0.4.0
++++++
* Added commands for managing firewall-rules (create, update, delete,
show, list)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure-cli-redis-0.4.0/azure/cli/command_modules/redis/__init__.py
new/azure-cli-redis-0.4.4/azure/cli/command_modules/redis/__init__.py
--- old/azure-cli-redis-0.4.0/azure/cli/command_modules/redis/__init__.py
2019-02-12 03:05:13.000000000 +0100
+++ new/azure-cli-redis-0.4.4/azure/cli/command_modules/redis/__init__.py
2019-06-13 23:17:47.000000000 +0200
@@ -12,12 +12,13 @@
def __init__(self, cli_ctx=None):
from azure.cli.core.commands import CliCommandType
+ from azure.cli.core.profiles import ResourceType
from azure.cli.command_modules.redis._client_factory import cf_redis
redis_custom = CliCommandType(
operations_tmpl='azure.cli.command_modules.redis.custom#{}',
client_factory=cf_redis)
super(RedisCommandsLoader, self).__init__(cli_ctx=cli_ctx,
-
min_profile='2017-03-10-profile',
+
resource_type=ResourceType.MGMT_REDIS,
custom_command_type=redis_custom)
def load_command_table(self, args):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure-cli-redis-0.4.0/azure/cli/command_modules/redis/_params.py
new/azure-cli-redis-0.4.4/azure/cli/command_modules/redis/_params.py
--- old/azure-cli-redis-0.4.0/azure/cli/command_modules/redis/_params.py
2019-02-12 03:05:13.000000000 +0100
+++ new/azure-cli-redis-0.4.4/azure/cli/command_modules/redis/_params.py
2019-06-13 23:17:47.000000000 +0200
@@ -5,7 +5,6 @@
# pylint: disable=line-too-long
from knack.arguments import CLIArgumentType
-import azure.cli.command_modules.redis._help # pylint: disable=unused-import
def load_arguments(self, _):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure-cli-redis-0.4.0/azure/cli/command_modules/redis/commands.py
new/azure-cli-redis-0.4.4/azure/cli/command_modules/redis/commands.py
--- old/azure-cli-redis-0.4.0/azure/cli/command_modules/redis/commands.py
2019-02-12 03:05:13.000000000 +0100
+++ new/azure-cli-redis-0.4.4/azure/cli/command_modules/redis/commands.py
2019-06-13 23:17:47.000000000 +0200
@@ -11,19 +11,19 @@
def load_command_table(self, _):
redis_sdk = CliCommandType(
-
operations_tmpl='azure.mgmt.redis.operations.redis_operations#RedisOperations.{}',
+ operations_tmpl='azure.mgmt.redis.operations#RedisOperations.{}',
client_factory=cf_redis)
redis_patch = CliCommandType(
-
operations_tmpl='azure.mgmt.redis.operations.patch_schedules_operations#PatchSchedulesOperations.{}',
+
operations_tmpl='azure.mgmt.redis.operations#PatchSchedulesOperations.{}',
client_factory=cf_patch_schedules)
redis_firewall_rules = CliCommandType(
-
operations_tmpl='azure.mgmt.redis.operations.firewall_rules_operations#FirewallRulesOperations.{}',
+
operations_tmpl='azure.mgmt.redis.operations#FirewallRulesOperations.{}',
client_factory=cf_firewall_rule)
redis_linked_server = CliCommandType(
-
operations_tmpl='azure.mgmt.redis.operations.linked_server_operations#LinkedServerOperations.{}',
+
operations_tmpl='azure.mgmt.redis.operations#LinkedServerOperations.{}',
client_factory=cf_linked_server)
with self.command_group('redis', redis_sdk) as g:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure-cli-redis-0.4.0/azure/cli/command_modules/redis/custom.py
new/azure-cli-redis-0.4.4/azure/cli/command_modules/redis/custom.py
--- old/azure-cli-redis-0.4.0/azure/cli/command_modules/redis/custom.py
2019-02-12 03:05:13.000000000 +0100
+++ new/azure-cli-redis-0.4.4/azure/cli/command_modules/redis/custom.py
2019-06-13 23:17:47.000000000 +0200
@@ -21,7 +21,7 @@
# pylint: disable=unused-argument
def cli_redis_export(cmd, client, resource_group_name, name, prefix,
container, file_format=None):
from azure.mgmt.redis.models import ExportRDBParameters
- parameters = ExportRDBParameters(prefix, container, file_format)
+ parameters = ExportRDBParameters(prefix=prefix, container=container,
format=file_format)
return client.export_data(resource_group_name, name, parameters)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure-cli-redis-0.4.0/azure_cli_redis.egg-info/PKG-INFO
new/azure-cli-redis-0.4.4/azure_cli_redis.egg-info/PKG-INFO
--- old/azure-cli-redis-0.4.0/azure_cli_redis.egg-info/PKG-INFO 2019-02-12
03:05:30.000000000 +0100
+++ new/azure-cli-redis-0.4.4/azure_cli_redis.egg-info/PKG-INFO 2019-06-13
23:18:14.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: azure-cli-redis
-Version: 0.4.0
+Version: 0.4.4
Summary: Microsoft Azure Command-Line Tools Redis Command Module
Home-page: https://github.com/Azure/azure-cli
Author: Microsoft Corporation
@@ -20,6 +20,22 @@
Release History
===============
+ 0.4.4
+ +++++
+ * Minor fixes.
+
+ 0.4.3
+ +++++
+ * Minor fixes.
+
+ 0.4.2
+ +++++
+ * Minor fixes.
+
+ 0.4.1
+ +++++
+ * Minor fixes.
+
0.4.0
++++++
* Added commands for managing firewall-rules (create, update, delete,
show, list)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/azure-cli-redis-0.4.0/setup.py
new/azure-cli-redis-0.4.4/setup.py
--- old/azure-cli-redis-0.4.0/setup.py 2019-02-12 03:05:13.000000000 +0100
+++ new/azure-cli-redis-0.4.4/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.0"
+VERSION = "0.4.4"
# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
CLASSIFIERS = [