Conversation
️✔️AzureCLI-FullTest
|
️✔️AzureCLI-BreakingChangeTest
|
Collaborator
|
Keyvault |
bebound
approved these changes
Aug 22, 2023
kairu-ms
reviewed
Aug 24, 2023
Contributor
kairu-ms
left a comment
There was a problem hiding this comment.
Did you test how many extensions will be affected?
jiasli
approved these changes
Aug 24, 2023
Member
|
Should we use a separate PR to fix the usage of |
Member
This is a good point and reminds me that once we start bundling Python 3.11, extensions that don't support Python 3.11 will be broken. |
Member
Author
Yes I have triggered extension regression pipeline and manually check the failure extension tests. The failures are not caused by keyvault |
Member
Author
|
zhoxing-ms
approved these changes
Aug 24, 2023
3 tasks
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.
Description
Keyvault module now depends on
azure-keyvault(api version2016-10-01and7.0)az keyvault security-domaincommand group (api version7.2)azure-keyvault-keys/azure-keyvault-secrets/azure-keyvault-certificates/azure-keyvault-administrationBut track1 sdk can't work with Python 3.11 because sdk uses
inspect.getargspecwhich has been dropped in Python 3.11.This PR removes public track1 sdk dependency and migrate all related commands to use vendored track1 sdk so that we can customize sdk code to unblock Python 3.11 support as a tmp workaround. Considering track1 sdk is not maintained and won't release new version anymore, our goal is to fully migrate all track1 sdk dependency to track2 which needs to be planned ASAP.
Testing Guide
History Notes
[Component Name 1] BREAKING CHANGE:
az command a: Make some customer-facing breaking change[Component Name 2]
az command b: Add some customer-facing featureThis checklist is used to make sure that common guidelines for a pull request are followed.
The PR title and description has followed the guideline in Submitting Pull Requests.
I adhere to the Command Guidelines.
I adhere to the Error Handling Guidelines.