Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-azure-storage-file-datalake for openSUSE:Factory checked in at 2023-10-11 23:56:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-azure-storage-file-datalake (Old) and /work/SRC/openSUSE:Factory/.python-azure-storage-file-datalake.new.1807 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-azure-storage-file-datalake" Wed Oct 11 23:56:26 2023 rev:20 rq:1116921 version:12.13.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-azure-storage-file-datalake/python-azure-storage-file-datalake.changes 2023-09-15 22:09:58.806799599 +0200 +++ /work/SRC/openSUSE:Factory/.python-azure-storage-file-datalake.new.1807/python-azure-storage-file-datalake.changes 2023-10-12 11:52:19.995282639 +0200 @@ -1,0 +2,9 @@ +Fri Sep 15 17:12:25 UTC 2023 - John Paul Adrian Glaubitz <adrian.glaub...@suse.com> + +- New upstream release + + Version 12.13.1 + + For detailed information about changes see the + CHANGELOG.md file provided with this package +- Update Requires from setup.py + +------------------------------------------------------------------- Old: ---- azure-storage-file-datalake-12.13.0.tar.gz New: ---- azure-storage-file-datalake-12.13.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-azure-storage-file-datalake.spec ++++++ --- /var/tmp/diff_new_pack.dAoH5F/_old 2023-10-12 11:52:20.539302022 +0200 +++ /var/tmp/diff_new_pack.dAoH5F/_new 2023-10-12 11:52:20.539302022 +0200 @@ -21,7 +21,7 @@ %define skip_python2 1 %endif Name: python-azure-storage-file-datalake -Version: 12.13.0 +Version: 12.13.1 Release: 0 Summary: Azure DataLake service client library for Python License: MIT @@ -38,7 +38,7 @@ Requires: python-azure-core >= 1.28.0 Requires: python-azure-nspkg >= 3.0.0 Requires: python-azure-storage-blob < 13.0.0 -Requires: python-azure-storage-blob >= 12.18.0 +Requires: python-azure-storage-blob >= 12.18.1 Requires: python-azure-storage-nspkg >= 3.0.0 Requires: python-isodate >= 0.6.1 Requires: (python-typing_extensions >= 4.3.0) ++++++ azure-storage-file-datalake-12.13.0.tar.gz -> azure-storage-file-datalake-12.13.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-storage-file-datalake-12.13.0/CHANGELOG.md new/azure-storage-file-datalake-12.13.1/CHANGELOG.md --- old/azure-storage-file-datalake-12.13.0/CHANGELOG.md 2023-09-12 22:57:33.000000000 +0200 +++ new/azure-storage-file-datalake-12.13.1/CHANGELOG.md 2023-09-13 23:18:55.000000000 +0200 @@ -1,5 +1,11 @@ # Release History +## 12.13.1 (2023-09-13) + +### Bugs Fixed +- Fixed breaking `KeyError: 'sdk_moniker'` in `create_configuration`. +NOTE: This is not an exported method and therefore should not be imported/called directly. + ## 12.13.0 (2023-09-12) ### Features Added diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-storage-file-datalake-12.13.0/PKG-INFO new/azure-storage-file-datalake-12.13.1/PKG-INFO --- old/azure-storage-file-datalake-12.13.0/PKG-INFO 2023-09-12 22:58:34.050909300 +0200 +++ new/azure-storage-file-datalake-12.13.1/PKG-INFO 2023-09-13 23:19:55.000465600 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: azure-storage-file-datalake -Version: 12.13.0 +Version: 12.13.1 Summary: Microsoft Azure File DataLake Storage Client Library for Python Home-page: https://github.com/Azure/azure-sdk-for-python Author: Microsoft Corporation @@ -20,7 +20,7 @@ Description-Content-Type: text/markdown License-File: LICENSE Requires-Dist: azure-core<2.0.0,>=1.28.0 -Requires-Dist: azure-storage-blob<13.0.0,>=12.18.0 +Requires-Dist: azure-storage-blob<13.0.0,>=12.18.1 Requires-Dist: typing-extensions>=4.3.0 Requires-Dist: isodate>=0.6.1 Provides-Extra: aio diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-storage-file-datalake-12.13.0/azure/storage/filedatalake/_shared/base_client.py new/azure-storage-file-datalake-12.13.1/azure/storage/filedatalake/_shared/base_client.py --- old/azure-storage-file-datalake-12.13.0/azure/storage/filedatalake/_shared/base_client.py 2023-09-12 22:57:33.000000000 +0200 +++ new/azure-storage-file-datalake-12.13.1/azure/storage/filedatalake/_shared/base_client.py 2023-09-13 23:18:55.000000000 +0200 @@ -410,9 +410,12 @@ def create_configuration(**kwargs): # type: (**Any) -> Configuration + # Backwards compatibility if someone is not passing sdk_moniker + if not kwargs.get("sdk_moniker"): + kwargs["sdk_moniker"] = f"storage-{kwargs.pop('storage_sdk')}/{VERSION}" config = Configuration(**kwargs) config.headers_policy = StorageHeadersPolicy(**kwargs) - config.user_agent_policy = UserAgentPolicy(sdk_moniker=kwargs.pop('sdk_moniker'), **kwargs) + config.user_agent_policy = UserAgentPolicy(**kwargs) config.retry_policy = kwargs.get("retry_policy") or ExponentialRetry(**kwargs) config.logging_policy = StorageLoggingPolicy(**kwargs) config.proxy_policy = ProxyPolicy(**kwargs) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-storage-file-datalake-12.13.0/azure/storage/filedatalake/_version.py new/azure-storage-file-datalake-12.13.1/azure/storage/filedatalake/_version.py --- old/azure-storage-file-datalake-12.13.0/azure/storage/filedatalake/_version.py 2023-09-12 22:57:33.000000000 +0200 +++ new/azure-storage-file-datalake-12.13.1/azure/storage/filedatalake/_version.py 2023-09-13 23:18:55.000000000 +0200 @@ -4,4 +4,4 @@ # license information. # -------------------------------------------------------------------------- -VERSION = "12.13.0" +VERSION = "12.13.1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-storage-file-datalake-12.13.0/azure_storage_file_datalake.egg-info/PKG-INFO new/azure-storage-file-datalake-12.13.1/azure_storage_file_datalake.egg-info/PKG-INFO --- old/azure-storage-file-datalake-12.13.0/azure_storage_file_datalake.egg-info/PKG-INFO 2023-09-12 22:58:33.000000000 +0200 +++ new/azure-storage-file-datalake-12.13.1/azure_storage_file_datalake.egg-info/PKG-INFO 2023-09-13 23:19:54.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: azure-storage-file-datalake -Version: 12.13.0 +Version: 12.13.1 Summary: Microsoft Azure File DataLake Storage Client Library for Python Home-page: https://github.com/Azure/azure-sdk-for-python Author: Microsoft Corporation @@ -20,7 +20,7 @@ Description-Content-Type: text/markdown License-File: LICENSE Requires-Dist: azure-core<2.0.0,>=1.28.0 -Requires-Dist: azure-storage-blob<13.0.0,>=12.18.0 +Requires-Dist: azure-storage-blob<13.0.0,>=12.18.1 Requires-Dist: typing-extensions>=4.3.0 Requires-Dist: isodate>=0.6.1 Provides-Extra: aio diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-storage-file-datalake-12.13.0/azure_storage_file_datalake.egg-info/requires.txt new/azure-storage-file-datalake-12.13.1/azure_storage_file_datalake.egg-info/requires.txt --- old/azure-storage-file-datalake-12.13.0/azure_storage_file_datalake.egg-info/requires.txt 2023-09-12 22:58:33.000000000 +0200 +++ new/azure-storage-file-datalake-12.13.1/azure_storage_file_datalake.egg-info/requires.txt 2023-09-13 23:19:54.000000000 +0200 @@ -1,5 +1,5 @@ azure-core<2.0.0,>=1.28.0 -azure-storage-blob<13.0.0,>=12.18.0 +azure-storage-blob<13.0.0,>=12.18.1 typing-extensions>=4.3.0 isodate>=0.6.1 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azure-storage-file-datalake-12.13.0/setup.py new/azure-storage-file-datalake-12.13.1/setup.py --- old/azure-storage-file-datalake-12.13.0/setup.py 2023-09-12 22:57:33.000000000 +0200 +++ new/azure-storage-file-datalake-12.13.1/setup.py 2023-09-13 23:18:55.000000000 +0200 @@ -77,7 +77,7 @@ python_requires=">=3.7", install_requires=[ "azure-core<2.0.0,>=1.28.0", - "azure-storage-blob<13.0.0,>=12.18.0", + "azure-storage-blob<13.0.0,>=12.18.1", "typing-extensions>=4.3.0", "isodate>=0.6.1" ],