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-05 20:03:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-azure-storage-file-share (Old)
and /work/SRC/openSUSE:Factory/.python-azure-storage-file-share.new.28202
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-azure-storage-file-share"
Thu Oct 5 20:03:47 2023 rev:19 rq:1115598 version:12.14.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-azure-storage-file-share/python-azure-storage-file-share.changes
2023-09-14 16:29:19.250416737 +0200
+++
/work/SRC/openSUSE:Factory/.python-azure-storage-file-share.new.28202/python-azure-storage-file-share.changes
2023-10-05 20:04:45.134179278 +0200
@@ -1,0 +2,8 @@
+Fri Sep 15 17:16:36 UTC 2023 - John Paul Adrian Glaubitz
<[email protected]>
+
+- New upstream release
+ + Version 12.14.1
+ + For detailed information about changes see the
+ CHANGELOG.md file provided with this package
+
+-------------------------------------------------------------------
Old:
----
azure-storage-file-share-12.14.0.tar.gz
New:
----
azure-storage-file-share-12.14.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-azure-storage-file-share.spec ++++++
--- /var/tmp/diff_new_pack.hzWMEM/_old 2023-10-05 20:04:46.326222342 +0200
+++ /var/tmp/diff_new_pack.hzWMEM/_new 2023-10-05 20:04:46.326222342 +0200
@@ -21,7 +21,7 @@
%define skip_python2 1
%endif
Name: python-azure-storage-file-share
-Version: 12.14.0
+Version: 12.14.1
Release: 0
Summary: Azure Storage File Share client library for Python
License: MIT
++++++ azure-storage-file-share-12.14.0.tar.gz ->
azure-storage-file-share-12.14.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/azure-storage-file-share-12.14.0/CHANGELOG.md
new/azure-storage-file-share-12.14.1/CHANGELOG.md
--- old/azure-storage-file-share-12.14.0/CHANGELOG.md 2023-09-12
22:57:33.000000000 +0200
+++ new/azure-storage-file-share-12.14.1/CHANGELOG.md 2023-09-13
23:18:55.000000000 +0200
@@ -1,5 +1,11 @@
# Release History
+## 12.14.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.14.0 (2023-09-12)
### Features Added
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/azure-storage-file-share-12.14.0/PKG-INFO
new/azure-storage-file-share-12.14.1/PKG-INFO
--- old/azure-storage-file-share-12.14.0/PKG-INFO 2023-09-12
22:58:34.674909600 +0200
+++ new/azure-storage-file-share-12.14.1/PKG-INFO 2023-09-13
23:19:55.636464800 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: azure-storage-file-share
-Version: 12.14.0
+Version: 12.14.1
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
@@ -422,6 +422,12 @@
# Release History
+## 12.14.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.14.0 (2023-09-12)
### Features Added
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure-storage-file-share-12.14.0/azure/storage/fileshare/_shared/base_client.py
new/azure-storage-file-share-12.14.1/azure/storage/fileshare/_shared/base_client.py
---
old/azure-storage-file-share-12.14.0/azure/storage/fileshare/_shared/base_client.py
2023-09-12 22:57:33.000000000 +0200
+++
new/azure-storage-file-share-12.14.1/azure/storage/fileshare/_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-share-12.14.0/azure/storage/fileshare/_version.py
new/azure-storage-file-share-12.14.1/azure/storage/fileshare/_version.py
--- old/azure-storage-file-share-12.14.0/azure/storage/fileshare/_version.py
2023-09-12 22:57:33.000000000 +0200
+++ new/azure-storage-file-share-12.14.1/azure/storage/fileshare/_version.py
2023-09-13 23:18:55.000000000 +0200
@@ -4,4 +4,4 @@
# license information.
# --------------------------------------------------------------------------
-VERSION = "12.14.0"
+VERSION = "12.14.1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure-storage-file-share-12.14.0/azure_storage_file_share.egg-info/PKG-INFO
new/azure-storage-file-share-12.14.1/azure_storage_file_share.egg-info/PKG-INFO
---
old/azure-storage-file-share-12.14.0/azure_storage_file_share.egg-info/PKG-INFO
2023-09-12 22:58:34.000000000 +0200
+++
new/azure-storage-file-share-12.14.1/azure_storage_file_share.egg-info/PKG-INFO
2023-09-13 23:19:55.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: azure-storage-file-share
-Version: 12.14.0
+Version: 12.14.1
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
@@ -422,6 +422,12 @@
# Release History
+## 12.14.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.14.0 (2023-09-12)
### Features Added