commit python-msrestazure for openSUSE:Factory
Hello community, here is the log from the commit of package python-msrestazure for openSUSE:Factory checked in at 2020-03-31 19:41:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-msrestazure (Old) and /work/SRC/openSUSE:Factory/.python-msrestazure.new.3160 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "python-msrestazure" Tue Mar 31 19:41:39 2020 rev:9 rq:790244 version:0.6.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-msrestazure/python-msrestazure.changes 2019-10-10 14:32:11.608367572 +0200 +++ /work/SRC/openSUSE:Factory/.python-msrestazure.new.3160/python-msrestazure.changes 2020-03-31 19:41:39.984588647 +0200 @@ -1,0 +2,8 @@ +Tue Mar 31 15:28:19 UTC 2020 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com> + +- New upstream release + + Version 0.6.3 + + For detailed information about changes see the + README.rst file provided with this package + +------------------------------------------------------------------- Old: ---- msrestazure-0.6.2.tar.gz New: ---- msrestazure-0.6.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-msrestazure.spec ++++++ --- /var/tmp/diff_new_pack.3UVBOs/_old 2020-03-31 19:41:41.236589310 +0200 +++ /var/tmp/diff_new_pack.3UVBOs/_new 2020-03-31 19:41:41.236589310 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-msrestazure # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,12 +18,12 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-msrestazure -Version: 0.6.2 +Version: 0.6.3 Release: 0 Summary: AutoRest swagger generator - Azure-specific module License: MIT Group: Development/Languages/Python -Url: https://pypi.python.org/pypi/msrestazure +URL: https://pypi.python.org/pypi/msrestazure Source: https://files.pythonhosted.org/packages/source/m/msrestazure/msrestazure-%{version}.tar.gz Source1: LICENSE.md BuildRequires: %{python_module setuptools} ++++++ msrestazure-0.6.2.tar.gz -> msrestazure-0.6.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/msrestazure-0.6.2/PKG-INFO new/msrestazure-0.6.3/PKG-INFO --- old/msrestazure-0.6.2/PKG-INFO 2019-09-16 21:34:10.000000000 +0200 +++ new/msrestazure-0.6.3/PKG-INFO 2020-03-17 23:45:08.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: msrestazure -Version: 0.6.2 +Version: 0.6.3 Summary: AutoRest swagger generator Python client runtime. Azure-specific module. Home-page: https://github.com/Azure/msrestazure-for-python Author: Microsoft Corporation @@ -28,6 +28,20 @@ Release History --------------- + 2020-03-17 Version 0.6.3 + ++++++++++++++++++++++++ + + **Bugfix** + + - Unable to raise exception if JSON body contains UTF-8 characters #144 + - Prepare old poller implementation to Python 3.9 #138 + + **Features** + + - Add Microsoft Graph to Cloud environment #142 + + Thanks to @psignoret and @tirkarthi for his contribution + 2019-09-16 Version 0.6.2 ++++++++++++++++++++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/msrestazure-0.6.2/README.rst new/msrestazure-0.6.3/README.rst --- old/msrestazure-0.6.2/README.rst 2019-09-16 21:33:20.000000000 +0200 +++ new/msrestazure-0.6.3/README.rst 2020-03-17 23:44:21.000000000 +0100 @@ -20,6 +20,20 @@ Release History --------------- +2020-03-17 Version 0.6.3 +++++++++++++++++++++++++ + +**Bugfix** + +- Unable to raise exception if JSON body contains UTF-8 characters #144 +- Prepare old poller implementation to Python 3.9 #138 + +**Features** + +- Add Microsoft Graph to Cloud environment #142 + +Thanks to @psignoret and @tirkarthi for his contribution + 2019-09-16 Version 0.6.2 ++++++++++++++++++++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/msrestazure-0.6.2/msrestazure/azure_cloud.py new/msrestazure-0.6.3/msrestazure/azure_cloud.py --- old/msrestazure-0.6.2/msrestazure/azure_cloud.py 2019-09-16 21:33:20.000000000 +0200 +++ new/msrestazure-0.6.3/msrestazure/azure_cloud.py 2020-03-17 23:44:21.000000000 +0100 @@ -56,7 +56,8 @@ gallery=None, active_directory=None, active_directory_resource_id=None, - active_directory_graph_resource_id=None): + active_directory_graph_resource_id=None, + microsoft_graph_resource_id=None): # Attribute names are significant. They are used when storing/retrieving clouds from config self.management = management self.resource_manager = resource_manager @@ -66,6 +67,7 @@ self.active_directory = active_directory self.active_directory_resource_id = active_directory_resource_id self.active_directory_graph_resource_id = active_directory_graph_resource_id + self.microsoft_graph_resource_id = microsoft_graph_resource_id def has_endpoint_set(self, endpoint_name): try: @@ -138,7 +140,8 @@ gallery='https://gallery.azure.com/', active_directory='https://login.microsoftonline.com', active_directory_resource_id='https://management.core.windows.net/', - active_directory_graph_resource_id='https://graph.windows.net/'), + active_directory_graph_resource_id='https://graph.windows.net/', + microsoft_graph_resource_id='https://graph.microsoft.com/'), suffixes=CloudSuffixes( storage_endpoint='core.windows.net', keyvault_dns='.vault.azure.net', @@ -156,7 +159,8 @@ gallery='https://gallery.chinacloudapi.cn/', active_directory='https://login.chinacloudapi.cn', active_directory_resource_id='https://management.core.chinacloudapi.cn/', - active_directory_graph_resource_id='https://graph.chinacloudapi.cn/'), + active_directory_graph_resource_id='https://graph.chinacloudapi.cn/', + microsoft_graph_resource_id='https://microsoftgraph.chinacloudapi.cn/'), suffixes=CloudSuffixes( storage_endpoint='core.chinacloudapi.cn', keyvault_dns='.vault.azure.cn', @@ -172,7 +176,8 @@ gallery='https://gallery.usgovcloudapi.net/', active_directory='https://login.microsoftonline.us', active_directory_resource_id='https://management.core.usgovcloudapi.net/', - active_directory_graph_resource_id='https://graph.windows.net/'), + active_directory_graph_resource_id='https://graph.windows.net/', + microsoft_graph_resource_id='https://graph.microsoft.us/'), suffixes=CloudSuffixes( storage_endpoint='core.usgovcloudapi.net', keyvault_dns='.vault.usgovcloudapi.net', @@ -188,7 +193,8 @@ gallery='https://gallery.cloudapi.de/', active_directory='https://login.microsoftonline.de', active_directory_resource_id='https://management.core.cloudapi.de/', - active_directory_graph_resource_id='https://graph.cloudapi.de/'), + active_directory_graph_resource_id='https://graph.cloudapi.de/', + microsoft_graph_resource_id='https://graph.microsoft.de/'), suffixes=CloudSuffixes( storage_endpoint='core.cloudapi.de', keyvault_dns='.vault.microsoftazure.de', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/msrestazure-0.6.2/msrestazure/azure_exceptions.py new/msrestazure-0.6.3/msrestazure/azure_exceptions.py --- old/msrestazure-0.6.2/msrestazure/azure_exceptions.py 2019-09-16 21:33:20.000000000 +0200 +++ new/msrestazure-0.6.3/msrestazure/azure_exceptions.py 2020-03-17 23:44:21.000000000 +0100 @@ -116,8 +116,7 @@ error_str += "\nAdditional Information:" for error_info in self.additionalInfo: error_str += "\n\t{}".format(str(error_info).replace("\n", "\n\t")) - error_bytes = error_str.encode() - return error_bytes.decode('ascii') + return error_str @classmethod def _get_subtype_map(cls): @@ -264,5 +263,4 @@ """Cloud error message.""" error_str = "Type: {}".format(self.type) error_str += "\nInfo: {}".format(json.dumps(self.info, indent=4)) - error_bytes = error_str.encode() - return error_bytes.decode('ascii') \ No newline at end of file + return error_str diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/msrestazure-0.6.2/msrestazure/azure_operation.py new/msrestazure-0.6.3/msrestazure/azure_operation.py --- old/msrestazure-0.6.2/msrestazure/azure_operation.py 2019-09-16 21:33:20.000000000 +0200 +++ new/msrestazure-0.6.3/msrestazure/azure_operation.py 2020-03-17 23:44:21.000000000 +0100 @@ -514,7 +514,7 @@ :returns: 'True' if the process has completed, else 'False'. """ - return self._thread is None or not self._thread.isAlive() + return self._thread is None or not self._thread.is_alive() def add_done_callback(self, func): """Add callback function to be run once the long running operation diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/msrestazure-0.6.2/msrestazure/version.py new/msrestazure-0.6.3/msrestazure/version.py --- old/msrestazure-0.6.2/msrestazure/version.py 2019-09-16 21:33:20.000000000 +0200 +++ new/msrestazure-0.6.3/msrestazure/version.py 2020-03-17 23:44:21.000000000 +0100 @@ -25,4 +25,4 @@ # -------------------------------------------------------------------------- #: version of the package. Use msrestazure.__version__ instead. -msrestazure_version = "0.6.2" +msrestazure_version = "0.6.3" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/msrestazure-0.6.2/msrestazure.egg-info/PKG-INFO new/msrestazure-0.6.3/msrestazure.egg-info/PKG-INFO --- old/msrestazure-0.6.2/msrestazure.egg-info/PKG-INFO 2019-09-16 21:34:10.000000000 +0200 +++ new/msrestazure-0.6.3/msrestazure.egg-info/PKG-INFO 2020-03-17 23:45:08.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: msrestazure -Version: 0.6.2 +Version: 0.6.3 Summary: AutoRest swagger generator Python client runtime. Azure-specific module. Home-page: https://github.com/Azure/msrestazure-for-python Author: Microsoft Corporation @@ -28,6 +28,20 @@ Release History --------------- + 2020-03-17 Version 0.6.3 + ++++++++++++++++++++++++ + + **Bugfix** + + - Unable to raise exception if JSON body contains UTF-8 characters #144 + - Prepare old poller implementation to Python 3.9 #138 + + **Features** + + - Add Microsoft Graph to Cloud environment #142 + + Thanks to @psignoret and @tirkarthi for his contribution + 2019-09-16 Version 0.6.2 ++++++++++++++++++++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/msrestazure-0.6.2/setup.py new/msrestazure-0.6.3/setup.py --- old/msrestazure-0.6.2/setup.py 2019-09-16 21:33:20.000000000 +0200 +++ new/msrestazure-0.6.3/setup.py 2020-03-17 23:44:21.000000000 +0100 @@ -28,7 +28,7 @@ setup( name='msrestazure', - version='0.6.2', + version='0.6.3', author='Microsoft Corporation', author_email='azpysdkhelp@microsoft.com', packages=find_packages(exclude=["tests", "tests.*"]),
participants (1)
-
root