Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-azure-storage-queue for
openSUSE:Factory checked in at 2023-10-05 20:03:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-azure-storage-queue (Old)
and /work/SRC/openSUSE:Factory/.python-azure-storage-queue.new.28202 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-azure-storage-queue"
Thu Oct 5 20:03:47 2023 rev:18 rq:1115599 version:12.7.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-azure-storage-queue/python-azure-storage-queue.changes
2023-09-15 22:09:55.446679459 +0200
+++
/work/SRC/openSUSE:Factory/.python-azure-storage-queue.new.28202/python-azure-storage-queue.changes
2023-10-05 20:04:46.566231013 +0200
@@ -1,0 +2,8 @@
+Fri Sep 15 17:22:35 UTC 2023 - John Paul Adrian Glaubitz
<[email protected]>
+
+- New upstream release
+ + Version 12.7.1
+ + For detailed information about changes see the
+ CHANGELOG.md file provided with this package
+
+-------------------------------------------------------------------
Old:
----
azure-storage-queue-12.7.0.tar.gz
New:
----
azure-storage-queue-12.7.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-azure-storage-queue.spec ++++++
--- /var/tmp/diff_new_pack.21M1aN/_old 2023-10-05 20:04:47.662270609 +0200
+++ /var/tmp/diff_new_pack.21M1aN/_new 2023-10-05 20:04:47.662270609 +0200
@@ -21,7 +21,7 @@
%define skip_python2 1
%endif
Name: python-azure-storage-queue
-Version: 12.7.0
+Version: 12.7.1
Release: 0
Summary: Microsoft Azure Storage Queue Client Library for Python
License: MIT
++++++ azure-storage-queue-12.7.0.tar.gz -> azure-storage-queue-12.7.1.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/azure-storage-queue-12.7.0/CHANGELOG.md
new/azure-storage-queue-12.7.1/CHANGELOG.md
--- old/azure-storage-queue-12.7.0/CHANGELOG.md 2023-09-12 22:57:33.000000000
+0200
+++ new/azure-storage-queue-12.7.1/CHANGELOG.md 2023-09-13 23:18:55.000000000
+0200
@@ -1,5 +1,11 @@
# Release History
+## 12.7.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.7.0 (2023-09-12)
### Features Added
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/azure-storage-queue-12.7.0/PKG-INFO
new/azure-storage-queue-12.7.1/PKG-INFO
--- old/azure-storage-queue-12.7.0/PKG-INFO 2023-09-12 22:58:35.302909900
+0200
+++ new/azure-storage-queue-12.7.1/PKG-INFO 2023-09-13 23:19:56.268464000
+0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: azure-storage-queue
-Version: 12.7.0
+Version: 12.7.1
Summary: Microsoft Azure Azure Queue Storage Client Library for Python
Home-page:
https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-queue
Author: Microsoft Corporation
@@ -433,6 +433,12 @@
# Release History
+## 12.7.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.7.0 (2023-09-12)
### Features Added
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure-storage-queue-12.7.0/azure/storage/queue/_shared/base_client.py
new/azure-storage-queue-12.7.1/azure/storage/queue/_shared/base_client.py
--- old/azure-storage-queue-12.7.0/azure/storage/queue/_shared/base_client.py
2023-09-12 22:57:33.000000000 +0200
+++ new/azure-storage-queue-12.7.1/azure/storage/queue/_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-queue-12.7.0/azure/storage/queue/_version.py
new/azure-storage-queue-12.7.1/azure/storage/queue/_version.py
--- old/azure-storage-queue-12.7.0/azure/storage/queue/_version.py
2023-09-12 22:57:33.000000000 +0200
+++ new/azure-storage-queue-12.7.1/azure/storage/queue/_version.py
2023-09-13 23:18:55.000000000 +0200
@@ -4,4 +4,4 @@
# license information.
# --------------------------------------------------------------------------
-VERSION = "12.7.0"
+VERSION = "12.7.1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure-storage-queue-12.7.0/azure_storage_queue.egg-info/PKG-INFO
new/azure-storage-queue-12.7.1/azure_storage_queue.egg-info/PKG-INFO
--- old/azure-storage-queue-12.7.0/azure_storage_queue.egg-info/PKG-INFO
2023-09-12 22:58:35.000000000 +0200
+++ new/azure-storage-queue-12.7.1/azure_storage_queue.egg-info/PKG-INFO
2023-09-13 23:19:56.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: azure-storage-queue
-Version: 12.7.0
+Version: 12.7.1
Summary: Microsoft Azure Azure Queue Storage Client Library for Python
Home-page:
https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-queue
Author: Microsoft Corporation
@@ -433,6 +433,12 @@
# Release History
+## 12.7.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.7.0 (2023-09-12)
### Features Added