Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-azure-storage-file-share for openSUSE:Factory checked in at 2023-10-11 23:56:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-azure-storage-file-share (Old) and /work/SRC/openSUSE:Factory/.python-azure-storage-file-share.new.1807 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-azure-storage-file-share" Wed Oct 11 23:56:19 2023 rev:20 rq:1116914 version:12.14.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-azure-storage-file-share/python-azure-storage-file-share.changes 2023-10-05 20:04:45.134179278 +0200 +++ /work/SRC/openSUSE:Factory/.python-azure-storage-file-share.new.1807/python-azure-storage-file-share.changes 2023-10-12 11:52:20.855313282 +0200 @@ -1,0 +2,8 @@ +Wed Oct 11 09:44:19 UTC 2023 - John Paul Adrian Glaubitz <adrian.glaub...@suse.com> + +- New upstream release + + Version 12.14.2 + + For detailed information about changes see the + CHANGELOG.md file provided with this package + +------------------------------------------------------------------- Old: ---- azure-storage-file-share-12.14.1.tar.gz New: ---- azure-storage-file-share-12.14.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-azure-storage-file-share.spec ++++++ --- /var/tmp/diff_new_pack.ntBvi0/_old 2023-10-12 11:52:21.363331382 +0200 +++ /var/tmp/diff_new_pack.ntBvi0/_new 2023-10-12 11:52:21.363331382 +0200 @@ -21,7 +21,7 @@ %define skip_python2 1 %endif Name: python-azure-storage-file-share -Version: 12.14.1 +Version: 12.14.2 Release: 0 Summary: Azure Storage File Share client library for Python License: MIT ++++++ azure-storage-file-share-12.14.1.tar.gz -> azure-storage-file-share-12.14.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-storage-file-share-12.14.1/CHANGELOG.md new/azure-storage-file-share-12.14.2/CHANGELOG.md --- old/azure-storage-file-share-12.14.1/CHANGELOG.md 2023-09-13 23:18:55.000000000 +0200 +++ new/azure-storage-file-share-12.14.2/CHANGELOG.md 2023-10-10 23:34:03.000000000 +0200 @@ -1,5 +1,11 @@ # Release History +## 12.14.2 (2023-10-10) + +### Bugs Fixed +- Fixed an issue when an invalid type was provided for `credential` during client construction, the +`__str__` of the object would be present in the exception message and therefore potentially logged. + ## 12.14.1 (2023-09-13) ### Bugs Fixed diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-storage-file-share-12.14.1/PKG-INFO new/azure-storage-file-share-12.14.2/PKG-INFO --- old/azure-storage-file-share-12.14.1/PKG-INFO 2023-09-13 23:19:55.636464800 +0200 +++ new/azure-storage-file-share-12.14.2/PKG-INFO 2023-10-10 23:34:58.588385300 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: azure-storage-file-share -Version: 12.14.1 +Version: 12.14.2 Summary: Microsoft Azure Azure File Share Storage Client Library for Python Home-page: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-file-share Author: Microsoft Corporation @@ -15,6 +15,7 @@ Classifier: Programming Language :: Python :: 3.8 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 Classifier: License :: OSI Approved :: MIT License Requires-Python: >=3.7 Description-Content-Type: text/markdown @@ -422,6 +423,12 @@ # Release History +## 12.14.2 (2023-10-10) + +### Bugs Fixed +- Fixed an issue when an invalid type was provided for `credential` during client construction, the +`__str__` of the object would be present in the exception message and therefore potentially logged. + ## 12.14.1 (2023-09-13) ### Bugs Fixed diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-storage-file-share-12.14.1/azure/storage/fileshare/_shared/base_client.py new/azure-storage-file-share-12.14.2/azure/storage/fileshare/_shared/base_client.py --- old/azure-storage-file-share-12.14.1/azure/storage/fileshare/_shared/base_client.py 2023-09-13 23:18:55.000000000 +0200 +++ new/azure-storage-file-share-12.14.2/azure/storage/fileshare/_shared/base_client.py 2023-10-10 23:34:03.000000000 +0200 @@ -227,7 +227,7 @@ elif isinstance(credential, AzureSasCredential): self._credential_policy = AzureSasCredentialPolicy(credential) elif credential is not None: - raise TypeError(f"Unsupported credential: {credential}") + raise TypeError(f"Unsupported credential: {type(credential)}") config = kwargs.get("_configuration") or create_configuration(**kwargs) if kwargs.get("_pipeline"): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-storage-file-share-12.14.1/azure/storage/fileshare/_shared/base_client_async.py new/azure-storage-file-share-12.14.2/azure/storage/fileshare/_shared/base_client_async.py --- old/azure-storage-file-share-12.14.1/azure/storage/fileshare/_shared/base_client_async.py 2023-09-13 23:18:55.000000000 +0200 +++ new/azure-storage-file-share-12.14.2/azure/storage/fileshare/_shared/base_client_async.py 2023-10-10 23:34:03.000000000 +0200 @@ -76,7 +76,7 @@ elif isinstance(credential, AzureSasCredential): self._credential_policy = AzureSasCredentialPolicy(credential) elif credential is not None: - raise TypeError(f"Unsupported credential: {credential}") + raise TypeError(f"Unsupported credential: {type(credential)}") config = kwargs.get('_configuration') or create_configuration(**kwargs) if kwargs.get('_pipeline'): return config, kwargs['_pipeline'] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-storage-file-share-12.14.1/azure/storage/fileshare/_version.py new/azure-storage-file-share-12.14.2/azure/storage/fileshare/_version.py --- old/azure-storage-file-share-12.14.1/azure/storage/fileshare/_version.py 2023-09-13 23:18:55.000000000 +0200 +++ new/azure-storage-file-share-12.14.2/azure/storage/fileshare/_version.py 2023-10-10 23:34:03.000000000 +0200 @@ -4,4 +4,4 @@ # license information. # -------------------------------------------------------------------------- -VERSION = "12.14.1" +VERSION = "12.14.2" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-storage-file-share-12.14.1/azure_storage_file_share.egg-info/PKG-INFO new/azure-storage-file-share-12.14.2/azure_storage_file_share.egg-info/PKG-INFO --- old/azure-storage-file-share-12.14.1/azure_storage_file_share.egg-info/PKG-INFO 2023-09-13 23:19:55.000000000 +0200 +++ new/azure-storage-file-share-12.14.2/azure_storage_file_share.egg-info/PKG-INFO 2023-10-10 23:34:58.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: azure-storage-file-share -Version: 12.14.1 +Version: 12.14.2 Summary: Microsoft Azure Azure File Share Storage Client Library for Python Home-page: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-file-share Author: Microsoft Corporation @@ -15,6 +15,7 @@ Classifier: Programming Language :: Python :: 3.8 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 Classifier: License :: OSI Approved :: MIT License Requires-Python: >=3.7 Description-Content-Type: text/markdown @@ -422,6 +423,12 @@ # Release History +## 12.14.2 (2023-10-10) + +### Bugs Fixed +- Fixed an issue when an invalid type was provided for `credential` during client construction, the +`__str__` of the object would be present in the exception message and therefore potentially logged. + ## 12.14.1 (2023-09-13) ### Bugs Fixed diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-storage-file-share-12.14.1/setup.py new/azure-storage-file-share-12.14.2/setup.py --- old/azure-storage-file-share-12.14.1/setup.py 2023-09-13 23:18:55.000000000 +0200 +++ new/azure-storage-file-share-12.14.2/setup.py 2023-10-10 23:34:03.000000000 +0200 @@ -53,6 +53,7 @@ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'License :: OSI Approved :: MIT License', ], zip_safe=False,