commit azure-cli-feedback for openSUSE:Factory

2019-10-31 Thread root
Hello community,

here is the log from the commit of package azure-cli-feedback for 
openSUSE:Factory checked in at 2019-10-31 18:16:10

Comparing /work/SRC/openSUSE:Factory/azure-cli-feedback (Old)
 and  /work/SRC/openSUSE:Factory/.azure-cli-feedback.new.2990 (New)


Package is "azure-cli-feedback"

Thu Oct 31 18:16:10 2019 rev:7 rq:742692 version:2.2.1

Changes:

--- /work/SRC/openSUSE:Factory/azure-cli-feedback/azure-cli-feedback.changes
2019-06-05 11:43:33.635035040 +0200
+++ 
/work/SRC/openSUSE:Factory/.azure-cli-feedback.new.2990/azure-cli-feedback.changes
  2019-10-31 18:16:12.170069368 +0100
@@ -1,0 +2,8 @@
+Thu Oct 24 12:10:24 UTC 2019 - John Paul Adrian Glaubitz 

+
+- New upstream release
+  + Version 2.2.1
+  + For detailed information about changes see the
+HISTORY.txt file provided with this package
+
+---

Old:

  azure-cli-feedback-2.2.0.tar.gz

New:

  azure-cli-feedback-2.2.1.tar.gz



Other differences:
--
++ azure-cli-feedback.spec ++
--- /var/tmp/diff_new_pack.jszJb2/_old  2019-10-31 18:16:13.014070242 +0100
+++ /var/tmp/diff_new_pack.jszJb2/_new  2019-10-31 18:16:13.022070250 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   azure-cli-feedback
-Version:2.2.0
+Version:2.2.1
 Release:0
 Summary:Microsoft Azure CLI 'feedback' Command Module
 License:MIT

++ azure-cli-feedback-2.2.0.tar.gz -> azure-cli-feedback-2.2.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-feedback-2.2.0/HISTORY.rst 
new/azure-cli-feedback-2.2.1/HISTORY.rst
--- old/azure-cli-feedback-2.2.0/HISTORY.rst2019-04-05 00:46:52.0 
+0200
+++ new/azure-cli-feedback-2.2.1/HISTORY.rst2019-04-19 00:15:19.0 
+0200
@@ -3,6 +3,10 @@
 Release History
 ===
 
+2.2.1
++
+* Minor fixes
+
 2.2.0
 +
 * `az feedback` now shows metadata on recently run commands
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-feedback-2.2.0/PKG-INFO 
new/azure-cli-feedback-2.2.1/PKG-INFO
--- old/azure-cli-feedback-2.2.0/PKG-INFO   2019-04-05 00:47:37.0 
+0200
+++ new/azure-cli-feedback-2.2.1/PKG-INFO   2019-04-19 00:16:08.0 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: azure-cli-feedback
-Version: 2.2.0
+Version: 2.2.1
 Summary: Microsoft Azure Command-Line Tools Feedback Command Module
 Home-page: https://github.com/Azure/azure-cli
 Author: Microsoft Corporation
@@ -20,6 +20,10 @@
 Release History
 ===
 
+2.2.1
++
+* Minor fixes
+
 2.2.0
 +
 * `az feedback` now shows metadata on recently run commands
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-feedback-2.2.0/azure/cli/command_modules/feedback/custom.py 
new/azure-cli-feedback-2.2.1/azure/cli/command_modules/feedback/custom.py
--- old/azure-cli-feedback-2.2.0/azure/cli/command_modules/feedback/custom.py   
2019-04-05 00:46:52.0 +0200
+++ new/azure-cli-feedback-2.2.1/azure/cli/command_modules/feedback/custom.py   
2019-04-19 00:15:19.0 +0200
@@ -5,6 +5,7 @@
 
 from __future__ import print_function
 import os
+import re
 import math
 import platform
 import datetime
@@ -23,12 +24,14 @@
 from azure.cli.core.util import get_az_version_string
 from azure.cli.core.azlogging import _UNKNOWN_COMMAND, _CMD_LOG_LINE_PREFIX
 from azure.cli.core.util import open_page_in_browser
-import pyperclip
 
 _ONE_MIN_IN_SECS = 60
 
 _ONE_HR_IN_SECS = 3600
 
+# see: 
https://stackoverflow.com/questions/417142/what-is-the-maximum-length-of-a-url-in-different-browsers
+_MAX_URL_LENGTH = 2035
+
 
 logger = get_logger(__name__)
 
@@ -36,8 +39,12 @@
 
 _GET_STARTED_URL = "aka.ms/azcli/get-started"
 _QUESTIONS_URL = "aka.ms/azcli/questions"
+
 _CLI_ISSUES_URL = "aka.ms/azcli/issues"
+_RAW_CLI_ISSUES_URL = "https://github.com/Azure/azure-cli/issues/new";
+
 _EXTENSIONS_ISSUES_URL = "aka.ms/azcli/ext/issues"
+_RAW_EXTENSIONS_ISSUES_URL = 
"https://github.com/Azure/azure-cli-extensions/issues/new";
 
 _MSG_INTR = \
 '\nWe appreciate your feedback!\n\n' \
@@ -54,12 +61,12 @@
 BEGIN TEMPLATE
 ===
 **A browser has been opened to {} to create an issue.**
-**The issue template has been copied to your clipboard. You can also run `az 
feedback --verbose` to emit the output to stdout.**
+**You can also run `az feedback --verbose` to emit the full output to stderr.**
 """
 
 _ISSUES_TEMPLATE = """
 
-### **This is an autogenerated template. Please review and update as needed.**
+### **This is aut

commit azure-cli-feedback for openSUSE:Factory

2019-06-05 Thread root
Hello community,

here is the log from the commit of package azure-cli-feedback for 
openSUSE:Factory checked in at 2019-06-05 11:43:31

Comparing /work/SRC/openSUSE:Factory/azure-cli-feedback (Old)
 and  /work/SRC/openSUSE:Factory/.azure-cli-feedback.new.5148 (New)


Package is "azure-cli-feedback"

Wed Jun  5 11:43:31 2019 rev:6 rq:707557 version:2.2.0

Changes:

--- /work/SRC/openSUSE:Factory/azure-cli-feedback/azure-cli-feedback.changes
2019-05-22 11:00:12.882752093 +0200
+++ 
/work/SRC/openSUSE:Factory/.azure-cli-feedback.new.5148/azure-cli-feedback.changes
  2019-06-05 11:43:33.635035040 +0200
@@ -1,0 +2,5 @@
+Tue Jun  4 09:43:37 UTC 2019 - John Paul Adrian Glaubitz 

+
+- Remove unneccesary %python_expand prefix from %fdupes call
+
+---



Other differences:
--
++ azure-cli-feedback.spec ++
--- /var/tmp/diff_new_pack.eYRZP8/_old  2019-06-05 11:43:34.271034880 +0200
+++ /var/tmp/diff_new_pack.eYRZP8/_new  2019-06-05 11:43:34.275034879 +0200
@@ -54,7 +54,7 @@
 
 %install
 python3 setup.py install --root=%{buildroot} --prefix=%{_prefix} 
--install-lib=%{python3_sitelib}
-%python_expand %fdupes %{buildroot}%{$python_sitelib}
+%fdupes %{buildroot}%{python3_sitelib}
 rm -rf %{buildroot}%{python3_sitelib}/azure/cli/command_modules/__init__.*
 rm -rf %{buildroot}%{python3_sitelib}/azure/cli/command_modules/__pycache__
 rm -rf %{buildroot}%{python3_sitelib}/azure/cli/__init__.*




commit azure-cli-feedback for openSUSE:Factory

2019-05-22 Thread root
Hello community,

here is the log from the commit of package azure-cli-feedback for 
openSUSE:Factory checked in at 2019-05-22 11:00:09

Comparing /work/SRC/openSUSE:Factory/azure-cli-feedback (Old)
 and  /work/SRC/openSUSE:Factory/.azure-cli-feedback.new.5148 (New)


Package is "azure-cli-feedback"

Wed May 22 11:00:09 2019 rev:5 rq:696836 version:2.2.0

Changes:

--- /work/SRC/openSUSE:Factory/azure-cli-feedback/azure-cli-feedback.changes
2018-10-15 10:44:37.435314408 +0200
+++ 
/work/SRC/openSUSE:Factory/.azure-cli-feedback.new.5148/azure-cli-feedback.changes
  2019-05-22 11:00:12.882752093 +0200
@@ -1,0 +2,15 @@
+Wed Apr 17 07:19:57 UTC 2019 - John Paul Adrian Glaubitz 

+
+- New upstream release
+  + Version 2.2.0
+  + For detailed information about changes see the
+HISTORY.txt file provided with this package
+- Bump minimum version for Python Azure SDK namespace
+  packages to 3.0.0 in BuildRequires and Requires
+- Remove python3-devel package from BuildRequires
+- Remove unzip package from BuildRequires
+- Run fdupes to hardlink duplicate files
+  + Add fdupes to BuildRequires
+  + Add %fdupes invocation to %install
+
+---

Old:

  azure-cli-feedback-2.1.4.tar.gz

New:

  azure-cli-feedback-2.2.0.tar.gz



Other differences:
--
++ azure-cli-feedback.spec ++
--- /var/tmp/diff_new_pack.JEchYy/_old  2019-05-22 11:00:13.618751139 +0200
+++ /var/tmp/diff_new_pack.JEchYy/_new  2019-05-22 11:00:13.622751134 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package azure-cli-feedback
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   azure-cli-feedback
-Version:2.1.4
+Version:2.2.0
 Release:0
 Summary:Microsoft Azure CLI 'feedback' Command Module
 License:MIT
@@ -27,15 +27,14 @@
 Source1:LICENSE.txt
 BuildRequires:  azure-cli-command-modules-nspkg
 BuildRequires:  azure-cli-nspkg
-BuildRequires:  python3-azure-nspkg
-BuildRequires:  python3-devel
+BuildRequires:  fdupes
+BuildRequires:  python3-azure-nspkg >= 3.0.0
 BuildRequires:  python3-setuptools
-BuildRequires:  unzip
 Requires:   azure-cli-command-modules-nspkg
 Requires:   azure-cli-core
 Requires:   azure-cli-nspkg
 Requires:   python3-applicationinsights
-Requires:   python3-azure-nspkg
+Requires:   python3-azure-nspkg >= 3.0.0
 Conflicts:  azure-cli < 2.0.0
 
 BuildArch:  noarch
@@ -55,6 +54,7 @@
 
 %install
 python3 setup.py install --root=%{buildroot} --prefix=%{_prefix} 
--install-lib=%{python3_sitelib}
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
 rm -rf %{buildroot}%{python3_sitelib}/azure/cli/command_modules/__init__.*
 rm -rf %{buildroot}%{python3_sitelib}/azure/cli/command_modules/__pycache__
 rm -rf %{buildroot}%{python3_sitelib}/azure/cli/__init__.*

++ azure-cli-feedback-2.1.4.tar.gz -> azure-cli-feedback-2.2.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-feedback-2.1.4/HISTORY.rst 
new/azure-cli-feedback-2.2.0/HISTORY.rst
--- old/azure-cli-feedback-2.1.4/HISTORY.rst2018-07-14 01:41:34.0 
+0200
+++ new/azure-cli-feedback-2.2.0/HISTORY.rst2019-04-05 00:46:52.0 
+0200
@@ -3,6 +3,12 @@
 Release History
 ===
 
+2.2.0
++
+* `az feedback` now shows metadata on recently run commands
+* `az feedback` prompts user to assist in issue creation process. Opens 
browser to issue url and copies auto-generated issue
+  text containing command and system related information to clipboard. Prints 
out issue body when run with '--verbose'
+
 2.1.4
 +
 * Minor fixes
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-feedback-2.1.4/PKG-INFO 
new/azure-cli-feedback-2.2.0/PKG-INFO
--- old/azure-cli-feedback-2.1.4/PKG-INFO   2018-07-14 01:41:55.0 
+0200
+++ new/azure-cli-feedback-2.2.0/PKG-INFO   2019-04-05 00:47:37.0 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: azure-cli-feedback
-Version: 2.1.4
+Version: 2.2.0
 Summary: Microsoft Azure Command-Line Tools Feedback Command Module
 Home-page: https://github.com/Azure/azure-cli
 Author: Microsoft Corporation
@@ -20,6 +20,12 @@
 Release History
 ===
 
+2.2.0
++
+* `az feedback` now shows metadata on recently run commands
+* `az feedback` prompts user to assist in issue creation 

commit azure-cli-feedback for openSUSE:Factory

2018-10-15 Thread root
Hello community,

here is the log from the commit of package azure-cli-feedback for 
openSUSE:Factory checked in at 2018-10-15 10:44:30

Comparing /work/SRC/openSUSE:Factory/azure-cli-feedback (Old)
 and  /work/SRC/openSUSE:Factory/.azure-cli-feedback.new (New)


Package is "azure-cli-feedback"

Mon Oct 15 10:44:30 2018 rev:4 rq:641108 version:2.1.4

Changes:

--- /work/SRC/openSUSE:Factory/azure-cli-feedback/azure-cli-feedback.changes
2018-05-13 16:02:27.252047015 +0200
+++ 
/work/SRC/openSUSE:Factory/.azure-cli-feedback.new/azure-cli-feedback.changes   
2018-10-15 10:44:37.435314408 +0200
@@ -1,0 +2,8 @@
+Mon Sep 17 10:26:42 UTC 2018 - John Paul Adrian Glaubitz 

+
+- New upstream release
+  + Version 2.1.4
+  + For detailed information about changes see the
+HISTORY.txt file provided with this package
+
+---

Old:

  azure-cli-feedback-2.1.1.tar.gz

New:

  azure-cli-feedback-2.1.4.tar.gz



Other differences:
--
++ azure-cli-feedback.spec ++
--- /var/tmp/diff_new_pack.tHcBMW/_old  2018-10-15 10:44:37.927313882 +0200
+++ /var/tmp/diff_new_pack.tHcBMW/_new  2018-10-15 10:44:37.931313878 +0200
@@ -12,12 +12,12 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   azure-cli-feedback
-Version:2.1.1
+Version:2.1.4
 Release:0
 Summary:Microsoft Azure CLI 'feedback' Command Module
 License:MIT

++ azure-cli-feedback-2.1.1.tar.gz -> azure-cli-feedback-2.1.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-feedback-2.1.1/HISTORY.rst 
new/azure-cli-feedback-2.1.4/HISTORY.rst
--- old/azure-cli-feedback-2.1.1/HISTORY.rst2018-04-06 19:33:13.0 
+0200
+++ new/azure-cli-feedback-2.1.4/HISTORY.rst2018-07-14 01:41:34.0 
+0200
@@ -3,9 +3,20 @@
 Release History
 ===
 
-2.1.1
+2.1.4
 +
+* Minor fixes
+
+2.1.3
+++
+* Minor fixes
+
+2.1.2
+++
+* Minor fixes
 
+2.1.1
++
 * `sdist` is now compatible with wheel 0.31.0
 
 2.1.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-feedback-2.1.1/PKG-INFO 
new/azure-cli-feedback-2.1.4/PKG-INFO
--- old/azure-cli-feedback-2.1.1/PKG-INFO   2018-04-06 19:33:35.0 
+0200
+++ new/azure-cli-feedback-2.1.4/PKG-INFO   2018-07-14 01:41:55.0 
+0200
@@ -1,12 +1,11 @@
 Metadata-Version: 1.1
 Name: azure-cli-feedback
-Version: 2.1.1
+Version: 2.1.4
 Summary: Microsoft Azure Command-Line Tools Feedback Command Module
 Home-page: https://github.com/Azure/azure-cli
 Author: Microsoft Corporation
 Author-email: azpy...@microsoft.com
 License: MIT
-Description-Content-Type: UNKNOWN
 Description: Microsoft Azure CLI 'feedback' Command Module
 =
 
@@ -21,9 +20,20 @@
 Release History
 ===
 
-2.1.1
+2.1.4
 +
+* Minor fixes
+
+2.1.3
+++
+* Minor fixes
+
+2.1.2
+++
+* Minor fixes
 
+2.1.1
++
 * `sdist` is now compatible with wheel 0.31.0
 
 2.1.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-feedback-2.1.1/azure/cli/command_modules/feedback/__init__.py 
new/azure-cli-feedback-2.1.4/azure/cli/command_modules/feedback/__init__.py
--- old/azure-cli-feedback-2.1.1/azure/cli/command_modules/feedback/__init__.py 
2018-04-06 19:33:13.0 +0200
+++ new/azure-cli-feedback-2.1.4/azure/cli/command_modules/feedback/__init__.py 
2018-07-14 01:41:34.0 +0200
@@ -22,5 +22,9 @@
 
 return self.command_table
 
+def load_arguments(self, command):
+with self.argument_context('feedback') as c:
+c.ignore('_subscription')  # hide global subscription param
+
 
 COMMAND_LOADER_CLS = FeedbackCommandsLoader
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-feedback-2.1.1/azure/cli/command_modules/feedback/_help.py 
new/azure-cli-feedback-2.1.4/azure/cli/command_modules/feedback/_help.py
--- old/azure-cli-feedback-2.1.1/azure/cli/command_modules/feedback/_help.py
2018-04-06 19:33:13.0 +0200
+++ new/azure-cli-feedback-2.1.4/azure/cli/command_modules/feedback/_help.py
2018-07-14 01:41:34.0 +0200
@@ -1,3 +1,4 @@
+# coding

commit azure-cli-feedback for openSUSE:Factory

2018-05-13 Thread root
Hello community,

here is the log from the commit of package azure-cli-feedback for 
openSUSE:Factory checked in at 2018-05-13 16:02:25

Comparing /work/SRC/openSUSE:Factory/azure-cli-feedback (Old)
 and  /work/SRC/openSUSE:Factory/.azure-cli-feedback.new (New)


Package is "azure-cli-feedback"

Sun May 13 16:02:25 2018 rev:3 rq:600051 version:2.1.1

Changes:

--- /work/SRC/openSUSE:Factory/azure-cli-feedback/azure-cli-feedback.changes
2018-02-14 09:30:57.044939436 +0100
+++ 
/work/SRC/openSUSE:Factory/.azure-cli-feedback.new/azure-cli-feedback.changes   
2018-05-13 16:02:27.252047015 +0200
@@ -1,0 +2,7 @@
+Wed Apr 18 13:38:36 UTC 2018 - adrian.glaub...@suse.com
+
+- New upstream release
+  + Version 2.1.1
+- Move LICENSE.txt from %doc to %license section
+
+---

Old:

  azure-cli-feedback-2.0.8.tar.gz

New:

  azure-cli-feedback-2.1.1.tar.gz



Other differences:
--
++ azure-cli-feedback.spec ++
--- /var/tmp/diff_new_pack.4I47Zm/_old  2018-05-13 16:02:27.972020747 +0200
+++ /var/tmp/diff_new_pack.4I47Zm/_new  2018-05-13 16:02:27.976020601 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   azure-cli-feedback
-Version:2.0.8
+Version:2.1.1
 Release:0
 Summary:Microsoft Azure CLI 'feedback' Command Module
 License:MIT
@@ -64,7 +64,8 @@
 
 %files
 %defattr(-,root,root,-)
-%doc HISTORY.rst LICENSE.txt README.rst
+%doc HISTORY.rst README.rst
+%license LICENSE.txt
 %{python3_sitelib}/azure/cli/command_modules/feedback
 %{python3_sitelib}/azure_cli_feedback-*.egg-info
 

++ azure-cli-feedback-2.0.8.tar.gz -> azure-cli-feedback-2.1.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-feedback-2.0.8/HISTORY.rst 
new/azure-cli-feedback-2.1.1/HISTORY.rst
--- old/azure-cli-feedback-2.0.8/HISTORY.rst2018-01-12 18:25:22.0 
+0100
+++ new/azure-cli-feedback-2.1.1/HISTORY.rst2018-04-06 19:33:13.0 
+0200
@@ -3,6 +3,16 @@
 Release History
 ===
 
+2.1.1
++
+
+* `sdist` is now compatible with wheel 0.31.0
+
+2.1.0
++
+* Switch AI upstream feed
+* Introduce extension management property to telemetry data.
+
 2.0.8
 +
 * Minor fixes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-feedback-2.0.8/PKG-INFO 
new/azure-cli-feedback-2.1.1/PKG-INFO
--- old/azure-cli-feedback-2.0.8/PKG-INFO   2018-01-12 18:25:33.0 
+0100
+++ new/azure-cli-feedback-2.1.1/PKG-INFO   2018-04-06 19:33:35.0 
+0200
@@ -1,11 +1,12 @@
 Metadata-Version: 1.1
 Name: azure-cli-feedback
-Version: 2.0.8
+Version: 2.1.1
 Summary: Microsoft Azure Command-Line Tools Feedback Command Module
 Home-page: https://github.com/Azure/azure-cli
 Author: Microsoft Corporation
 Author-email: azpy...@microsoft.com
 License: MIT
+Description-Content-Type: UNKNOWN
 Description: Microsoft Azure CLI 'feedback' Command Module
 =
 
@@ -20,6 +21,16 @@
 Release History
 ===
 
+2.1.1
++
+
+* `sdist` is now compatible with wheel 0.31.0
+
+2.1.0
++
+* Switch AI upstream feed
+* Introduce extension management property to telemetry data.
+
 2.0.8
 +
 * Minor fixes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-feedback-2.0.8/azure/cli/command_modules/feedback/__init__.py 
new/azure-cli-feedback-2.1.1/azure/cli/command_modules/feedback/__init__.py
--- old/azure-cli-feedback-2.0.8/azure/cli/command_modules/feedback/__init__.py 
2018-01-12 18:25:22.0 +0100
+++ new/azure-cli-feedback-2.1.1/azure/cli/command_modules/feedback/__init__.py 
2018-04-06 19:33:13.0 +0200
@@ -15,7 +15,6 @@
 super(FeedbackCommandsLoader, self).__init__(cli_ctx=cli_ctx)
 
 def load_command_table(self, args):
-
 custom_feedback = 
CliCommandType(operations_tmpl='azure.cli.command_modules.feedback.custom#{}')
 
 with self.command_group('', custom_feedback) as g:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-feedback-2.0.8/azure/cli/command_modules/feedback/custom.py 
new/azure-cli-feedback-2.1.1/azure/cli/command_modules/feedback/custom.py
--- old/azure-cli-feedback-2.0.8/azure/cli/command_modules/feedback/custom.py   
2018-01-12 18:25:22.0 +0100
+++ new/azure-cli-feedback-2.1.1/azure/cli/command_modules/feedback/custom.py   
2018-04-06 19:33:13.0 +0200
@@ -10,40 +10,30 @@
 from knack.prom

commit azure-cli-feedback for openSUSE:Factory

2018-02-14 Thread root
Hello community,

here is the log from the commit of package azure-cli-feedback for 
openSUSE:Factory checked in at 2018-02-14 09:30:55

Comparing /work/SRC/openSUSE:Factory/azure-cli-feedback (Old)
 and  /work/SRC/openSUSE:Factory/.azure-cli-feedback.new (New)


Package is "azure-cli-feedback"

Wed Feb 14 09:30:55 2018 rev:2 rq:574812 version:2.0.8

Changes:

--- /work/SRC/openSUSE:Factory/azure-cli-feedback/azure-cli-feedback.changes
2017-11-10 14:53:51.367763008 +0100
+++ 
/work/SRC/openSUSE:Factory/.azure-cli-feedback.new/azure-cli-feedback.changes   
2018-02-14 09:30:57.044939436 +0100
@@ -1,0 +2,9 @@
+Thu Feb  8 11:56:53 UTC 2018 - adrian.glaub...@suse.com
+
+- New upstream release
+  + Version 2.0.8
+  + For detailed information about changes see the
+HISTORY.rst file provided with this package
+- Install HISTORY.rst into doc directory
+
+---

Old:

  azure-cli-feedback-2.0.6.tar.gz

New:

  azure-cli-feedback-2.0.8.tar.gz



Other differences:
--
++ azure-cli-feedback.spec ++
--- /var/tmp/diff_new_pack.PcNwY4/_old  2018-02-14 09:30:57.756913637 +0100
+++ /var/tmp/diff_new_pack.PcNwY4/_new  2018-02-14 09:30:57.784912622 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package azure-cli-feedback
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,8 +15,9 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   azure-cli-feedback
-Version:2.0.6
+Version:2.0.8
 Release:0
 Summary:Microsoft Azure CLI 'feedback' Command Module
 License:MIT
@@ -24,17 +25,17 @@
 Url:https://github.com/Azure/azure-cli
 Source: 
https://files.pythonhosted.org/packages/source/a/azure-cli-feedback/azure-cli-feedback-%{version}.tar.gz
 Source1:LICENSE.txt
-BuildRequires:  python3-devel
-BuildRequires:  python3-setuptools
-BuildRequires:  unzip
 BuildRequires:  azure-cli-command-modules-nspkg
 BuildRequires:  azure-cli-nspkg
 BuildRequires:  python3-azure-nspkg
+BuildRequires:  python3-devel
+BuildRequires:  python3-setuptools
+BuildRequires:  unzip
 Requires:   azure-cli-command-modules-nspkg
+Requires:   azure-cli-core
 Requires:   azure-cli-nspkg
-Requires:   python3-azure-nspkg
 Requires:   python3-applicationinsights
-Requires:   azure-cli-core
+Requires:   python3-azure-nspkg
 Conflicts:  azure-cli < 2.0.0
 
 BuildArch:  noarch
@@ -63,7 +64,8 @@
 
 %files
 %defattr(-,root,root,-)
-%doc LICENSE.txt README.rst
+%doc HISTORY.rst LICENSE.txt README.rst
 %{python3_sitelib}/azure/cli/command_modules/feedback
 %{python3_sitelib}/azure_cli_feedback-*.egg-info
+
 %changelog

++ azure-cli-feedback-2.0.6.tar.gz -> azure-cli-feedback-2.0.8.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-feedback-2.0.6/HISTORY.rst 
new/azure-cli-feedback-2.0.8/HISTORY.rst
--- old/azure-cli-feedback-2.0.6/HISTORY.rst2017-07-07 18:20:11.0 
+0200
+++ new/azure-cli-feedback-2.0.8/HISTORY.rst2018-01-12 18:25:22.0 
+0100
@@ -2,8 +2,17 @@
 
 Release History
 ===
-2.0.6 (2017-07-07)
-++
+
+2.0.8
++
+* Minor fixes.
+
+2.0.7
+++
+* Update for CLI core changes.
+
+2.0.6
++
 * minor fixes
 
 2.0.5 (2017-06-21)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-feedback-2.0.6/PKG-INFO 
new/azure-cli-feedback-2.0.8/PKG-INFO
--- old/azure-cli-feedback-2.0.6/PKG-INFO   2017-07-07 18:20:12.0 
+0200
+++ new/azure-cli-feedback-2.0.8/PKG-INFO   2018-01-12 18:25:33.0 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: azure-cli-feedback
-Version: 2.0.6
+Version: 2.0.8
 Summary: Microsoft Azure Command-Line Tools Feedback Command Module
 Home-page: https://github.com/Azure/azure-cli
 Author: Microsoft Corporation
@@ -19,8 +19,17 @@
 
 Release History
 ===
-2.0.6 (2017-07-07)
-++
+
+2.0.8
++
+* Minor fixes.
+
+2.0.7
+++
+* Update for CLI core changes.
+
+2.0.6
++
 * minor fixes
 
 2.0.5 (2017-06-21)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-feedback-2.0.6/azure/cli/command_modules/feedback/__init__.py 
new/azure-cli-feedback-2