fix: publish waza 0.38.4 registry entry - #524
Open
Shayne Boyer (spboyer) wants to merge 1 commit into
Open
Conversation
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the azd extension registry (registry.json) to add a microsoft.azd.waza entry for version 0.38.4, so azd ext install microsoft.azd.waza can resolve a newer published version.
Changes:
- Added a new
0.38.4version block including capabilities, usage, examples, and platform artifacts. - Populated artifact URLs, entrypoints, and SHA-256 checksums for six target platforms.
Show a summary per file
| File | Description |
|---|---|
| registry.json | Adds a new 0.38.4 registry entry with artifacts/checksums so azd can install the extension version. |
Review details
Tip
Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Suppressed comments (2)
registry.json:1099
- Windows artifacts currently point to the standalone
v0.38.4.exeassets, but the azd extension registry has historically referenced the extension packages (microsoft-azd-waza-windows-*.zip) published under theazd-ext-microsoft-azd-waza_0.38.4release tag. Updating these URLs/checksums/entrypoints keeps the registry consistent with the extension distribution format.
"windows/amd64": {
"checksum": {
"algorithm": "sha256",
"value": "17f12d9bc6c71c895714e119cc0b83bffd82e2eb8062d778f3f644480c60ac3c"
},
registry.json:1083
- Linux artifacts also reference the standalone
v0.38.4binaries (waza-linux-*) instead of the azd-extension release assets (microsoft-azd-waza-linux-*.tar.gz) published underazd-ext-microsoft-azd-waza_0.38.4. This is inconsistent with the rest of the registry entries and likely breaks azd extension installation.
"linux/amd64": {
"checksum": {
"algorithm": "sha256",
"value": "1222c45ce4068e4e9e68cc994f1811ddd71b29ec9f20b4b31c827d3fa5c82c6e"
},
- Files reviewed: 1/1 changed files
- Comments generated: 1
- Review effort level: Lite
Comment on lines
+1063
to
+1078
| "darwin/amd64": { | ||
| "checksum": { | ||
| "algorithm": "sha256", | ||
| "value": "8819ff747881798808f4401e550cead4f303477b11ef41db08587ca55f98d922" | ||
| }, | ||
| "entryPoint": "waza-darwin-amd64", | ||
| "url": "https://github.com/microsoft/waza/releases/download/v0.38.4/waza-darwin-amd64" | ||
| }, | ||
| "darwin/arm64": { | ||
| "checksum": { | ||
| "algorithm": "sha256", | ||
| "value": "b35f0596a8ee37a13abcf73dc91f4dee1a1aa0919b3f420d7d27a8687c49c4d7" | ||
| }, | ||
| "entryPoint": "waza-darwin-arm64", | ||
| "url": "https://github.com/microsoft/waza/releases/download/v0.38.4/waza-darwin-arm64" | ||
| }, |
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.
Summary
Fixes #505
Validated registry JSON with jq and verified each release asset digest against the registry entry.