Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-azure-keyvault-secrets for
openSUSE:Factory checked in at 2026-08-27 18:55:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-azure-keyvault-secrets (Old)
and /work/SRC/openSUSE:Factory/.python-azure-keyvault-secrets.new.1265
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-azure-keyvault-secrets"
Thu Aug 27 18:55:35 2026 rev:17 rq:1374074 version:4.11.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-azure-keyvault-secrets/python-azure-keyvault-secrets.changes
2026-08-19 17:58:04.547471066 +0200
+++
/work/SRC/openSUSE:Factory/.python-azure-keyvault-secrets.new.1265/python-azure-keyvault-secrets.changes
2026-08-27 18:57:16.666045066 +0200
@@ -1,0 +2,8 @@
+Thu Aug 27 10:28:15 UTC 2026 - John Paul Adrian Glaubitz
<[email protected]>
+
+- New upstream release
+ + Version 4.11.2
+ + For detailed information about changes see the
+ CHANGELOG.md file provided with this package
+
+-------------------------------------------------------------------
Old:
----
azure_keyvault_secrets-4.11.1.tar.gz
New:
----
azure_keyvault_secrets-4.11.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-azure-keyvault-secrets.spec ++++++
--- /var/tmp/diff_new_pack.cCSriI/_old 2026-08-27 18:57:17.344068934 +0200
+++ /var/tmp/diff_new_pack.cCSriI/_new 2026-08-27 18:57:17.346069005 +0200
@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-azure-keyvault-secrets
-Version: 4.11.1
+Version: 4.11.2
Release: 0
Summary: Microsoft Azure Key Vault Secrets Client Library for Python
License: MIT
++++++ azure_keyvault_secrets-4.11.1.tar.gz ->
azure_keyvault_secrets-4.11.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/azure_keyvault_secrets-4.11.1/CHANGELOG.md
new/azure_keyvault_secrets-4.11.2/CHANGELOG.md
--- old/azure_keyvault_secrets-4.11.1/CHANGELOG.md 2026-08-12
03:17:58.000000000 +0200
+++ new/azure_keyvault_secrets-4.11.2/CHANGELOG.md 2026-08-25
22:29:24.000000000 +0200
@@ -1,5 +1,11 @@
# Release History
+## 4.11.2 (2026-08-25)
+
+### Bugs Fixed
+
+- Fixed the challenge authentication policy to cache the authentication
challenge only after the challenge resource is verified, so that a rejected
challenge is not cached and reused by subsequent requests.
+
## 4.11.1 (2026-08-12)
### Bugs Fixed
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/azure_keyvault_secrets-4.11.1/PKG-INFO
new/azure_keyvault_secrets-4.11.2/PKG-INFO
--- old/azure_keyvault_secrets-4.11.1/PKG-INFO 2026-08-12 03:19:09.812467000
+0200
+++ new/azure_keyvault_secrets-4.11.2/PKG-INFO 2026-08-25 22:31:04.878698000
+0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.4
Name: azure-keyvault-secrets
-Version: 4.11.1
+Version: 4.11.2
Summary: Microsoft Corporation Key Vault Secrets Client Library for Python
Author-email: Microsoft Corporation <[email protected]>
License: MIT License
@@ -406,6 +406,12 @@
# Release History
+## 4.11.2 (2026-08-25)
+
+### Bugs Fixed
+
+- Fixed the challenge authentication policy to cache the authentication
challenge only after the challenge resource is verified, so that a rejected
challenge is not cached and reused by subsequent requests.
+
## 4.11.1 (2026-08-12)
### Bugs Fixed
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure_keyvault_secrets-4.11.1/azure/keyvault/secrets/_shared/async_challenge_auth_policy.py
new/azure_keyvault_secrets-4.11.2/azure/keyvault/secrets/_shared/async_challenge_auth_policy.py
---
old/azure_keyvault_secrets-4.11.1/azure/keyvault/secrets/_shared/async_challenge_auth_policy.py
2026-08-12 03:17:58.000000000 +0200
+++
new/azure_keyvault_secrets-4.11.2/azure/keyvault/secrets/_shared/async_challenge_auth_policy.py
2026-08-25 22:29:24.000000000 +0200
@@ -219,6 +219,8 @@
"See https://aka.ms/azsdk/blog/vault-uri for more
information."
)
+ ChallengeCache.set_challenge_for_url(request.http_request.url,
challenge)
+
# If we stashed the original request in on_request, use it now to send
along the original body content
request_copy = request.context.get(_REQUEST_COPY_KEY)
if request_copy:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure_keyvault_secrets-4.11.1/azure/keyvault/secrets/_shared/challenge_auth_policy.py
new/azure_keyvault_secrets-4.11.2/azure/keyvault/secrets/_shared/challenge_auth_policy.py
---
old/azure_keyvault_secrets-4.11.1/azure/keyvault/secrets/_shared/challenge_auth_policy.py
2026-08-12 03:17:58.000000000 +0200
+++
new/azure_keyvault_secrets-4.11.2/azure/keyvault/secrets/_shared/challenge_auth_policy.py
2026-08-25 22:29:24.000000000 +0200
@@ -64,7 +64,7 @@
def _update_challenge(request: PipelineRequest, challenger: PipelineResponse)
-> HttpChallenge:
- """Parse challenge from a challenge response, cache it, and return it.
+ """Parse challenge from a challenge response and return it.
:param request: The pipeline request that prompted the challenge response.
:type request: ~azure.core.pipeline.PipelineRequest
@@ -80,7 +80,6 @@
challenger.http_response.headers.get("WWW-Authenticate"),
response_headers=challenger.http_response.headers,
)
- ChallengeCache.set_challenge_for_url(request.http_request.url, challenge)
return challenge
@@ -234,6 +233,8 @@
"See https://aka.ms/azsdk/blog/vault-uri for more
information."
)
+ ChallengeCache.set_challenge_for_url(request.http_request.url,
challenge)
+
# If we stashed the original request in on_request, use it now to send
along the original body content
request_copy = request.context.get(_REQUEST_COPY_KEY)
if request_copy:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure_keyvault_secrets-4.11.1/azure/keyvault/secrets/_version.py
new/azure_keyvault_secrets-4.11.2/azure/keyvault/secrets/_version.py
--- old/azure_keyvault_secrets-4.11.1/azure/keyvault/secrets/_version.py
2026-08-12 03:17:58.000000000 +0200
+++ new/azure_keyvault_secrets-4.11.2/azure/keyvault/secrets/_version.py
2026-08-25 22:29:24.000000000 +0200
@@ -3,4 +3,4 @@
# Licensed under the MIT License.
# ------------------------------------
-VERSION = "4.11.1"
+VERSION = "4.11.2"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/azure_keyvault_secrets-4.11.1/azure_keyvault_secrets.egg-info/PKG-INFO
new/azure_keyvault_secrets-4.11.2/azure_keyvault_secrets.egg-info/PKG-INFO
--- old/azure_keyvault_secrets-4.11.1/azure_keyvault_secrets.egg-info/PKG-INFO
2026-08-12 03:19:09.000000000 +0200
+++ new/azure_keyvault_secrets-4.11.2/azure_keyvault_secrets.egg-info/PKG-INFO
2026-08-25 22:31:04.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.4
Name: azure-keyvault-secrets
-Version: 4.11.1
+Version: 4.11.2
Summary: Microsoft Corporation Key Vault Secrets Client Library for Python
Author-email: Microsoft Corporation <[email protected]>
License: MIT License
@@ -406,6 +406,12 @@
# Release History
+## 4.11.2 (2026-08-25)
+
+### Bugs Fixed
+
+- Fixed the challenge authentication policy to cache the authentication
challenge only after the challenge resource is verified, so that a rejected
challenge is not cached and reused by subsequent requests.
+
## 4.11.1 (2026-08-12)
### Bugs Fixed