[Emergency Fix] Fix-forward to 1.12.3 to restore to last known good version of stack-hci-vm extension#9658
Conversation
️✔️Azure CLI Extensions Breaking Change Test
|
|
Hi @han-sogawa-microsoft, |
|
Thank you for your contribution! We will review the pull request and get back to you soon. |
|
The git hooks are available for azure-cli and azure-cli-extensions repos. They could help you run required checks before creating the PR. Please sync the latest code with latest dev branch (for azure-cli) or main branch (for azure-cli-extensions). pip install azdev --upgrade
azdev setup -c <your azure-cli repo path> -r <your azure-cli-extensions repo path>
|
|
There was a problem hiding this comment.
Pull request overview
This PR attempts to restore the stack-hci-vm Azure CLI extension to a “last known good” release by adding a new 1.12.3 wheel entry to the extension index (src/index.json), which is the catalog Azure CLI uses to resolve extension downloads.
Changes:
- Add a new
stack-hci-vmindex entry for version1.12.3(download URL + SHA256). - Keep existing
1.12.2entry intact and append1.12.3as the newest version.
| }, | ||
| { | ||
| "downloadUrl": "https://hciarcvmsstorage.z13.web.core.windows.net/cli-extensions/stack_hci_vm-1.12.3-py3-none-any.whl", | ||
| "filename": "stack_hci_vm-1.12.3-py3-none-any.whl", | ||
| "metadata": { |
There was a problem hiding this comment.
This PR directly modifies src/index.json, but the repo’s publish workflow expects index.json to be updated by the automated pipeline in a follow-up PR after merge (see .github/pull_request_template.md:22-24). Please revert the index.json change here and instead update the extension’s setup.py version + HISTORY.rst (or use the established release/publish process) so the index is generated/updated automatically.
|
/azp run |
|
Azure Pipelines successfully started running 2 pipeline(s). |
This checklist is used to make sure that common guidelines for a pull request are followed.
Related command
General Guidelines
azdev style <YOUR_EXT>locally? (pip install azdevrequired)python scripts/ci/test_index.py -qlocally? (pip install wheel==0.30.0required)For new extensions:
About Extension Publish
There is a pipeline to automatically build, upload and publish extension wheels.
Once your pull request is merged into main branch, a new pull request will be created to update
src/index.jsonautomatically.You only need to update the version information in file setup.py and historical information in file HISTORY.rst in your PR but do not modify
src/index.json.