{KeyVault} Upgrade azure-keyvault-administration to 4.8.0b2#33783
Open
MaddyMicrosoft wants to merge 1 commit into
Open
{KeyVault} Upgrade azure-keyvault-administration to 4.8.0b2#33783MaddyMicrosoft wants to merge 1 commit into
MaddyMicrosoft wants to merge 1 commit into
Conversation
|
Hi @MaddyMicrosoft, |
|
Azure Pipelines: There may be pipelines that require an authorized user to comment /azp run to run. |
Member
|
/azp run |
|
Azure Pipelines: Successfully started running 3 pipeline(s). |
MaddyMicrosoft
marked this pull request as ready for review
July 24, 2026 05:27
|
Azure Pipelines: There may be pipelines that require an authorized user to comment /azp run to run. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates Azure CLI’s pinned azure-keyvault-administration dependency to pick up an upstream fix for a client-side replay issue in ChallengeAuthPolicy that can cause false 409 Conflict: Another backup operation is in progress errors during Managed HSM backup operations (notably when using managed identity).
Changes:
- Bump
azure-keyvault-administrationfrom4.8.0b1to4.8.0b2in the CLI’s Python package dependencies. - Keep the pin consistent across
setup.pyand the per-OS Python 3 requirements files.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| src/azure-cli/setup.py | Updates the pinned azure-keyvault-administration version used by the main CLI package. |
| src/azure-cli/requirements.py3.windows.txt | Updates Windows pinned dependency list to 4.8.0b2. |
| src/azure-cli/requirements.py3.Linux.txt | Updates Linux pinned dependency list to 4.8.0b2. |
| src/azure-cli/requirements.py3.Darwin.txt | Updates macOS pinned dependency list to 4.8.0b2. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related command*
az keyvault backup start,az keyvault backup restore(Azure Managed HSM)Description
Fixes [ICM 757505017]
az keyvault backup start --use-managed-identity trueagainst Azure Managed HSM failswith
409 Conflict: Another backup operation is in progress, even though the backupwas accepted by the service.
Root cause is a client-side replay bug in
azure-keyvault-administration'sChallengeAuthPolicyThe SDK fix (Azure/azure-sdk-for-python#47742)
moves the request copy to per-request pipeline context so it can't leak into subsequent
requests on the same client. It shipped in
azure-keyvault-administration 4.8.0b2on2026-07-08. This PR picks up that fix.
Affected CLI versions: 2.77.0 – 2.88.0 (2.77–2.87 pinned
4.4.0, 2.88 pinned4.8.0b1;both contain the bug).
Testing Guide
Manual verification against Managed HSM with managed identity: