Skip to content

Commit 7fd138b

Browse files
authored
Add microsoft.azd.extensions v0.6.0 to registry (#5988)
* Add microsoft.azd.extensions v0.6.0 to registry * Update changelog
1 parent 2063759 commit 7fd138b

File tree

2 files changed

+102
-7
lines changed

2 files changed

+102
-7
lines changed

cli/azd/extensions/microsoft.azd.extensions/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release History
22

3+
## 0.6.0 (2025-10-14)
4+
5+
- Improve extension metadata validation
6+
- Update `publish` command to include `providers` field in extension schema and registry
7+
- Add MCP and service target provider capabilities to `init` command
8+
39
## 0.5.1 (2025-09-22)
410

511
- Updates `azd x publish` to automatically set up local registry if not configured

cli/azd/extensions/registry.json

Lines changed: 96 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
"description": "This extension provides examples of the AZD extension framework.",
88
"versions": [
99
{
10+
"version": "0.1.0-beta.1",
1011
"capabilities": [
1112
"custom-commands",
1213
"lifecycle-events"
1314
],
14-
"version": "0.1.0-beta.1",
1515
"usage": "azd demo \u003ccommand\u003e [options]",
1616
"examples": [
1717
{
@@ -77,12 +77,12 @@
7777
}
7878
},
7979
{
80+
"version": "0.3.0",
8081
"capabilities": [
8182
"custom-commands",
8283
"lifecycle-events",
8384
"mcp-server"
8485
],
85-
"version": "0.3.0",
8686
"usage": "azd demo \u003ccommand\u003e [options]",
8787
"examples": [
8888
{
@@ -161,10 +161,10 @@
161161
"description": "This extension provides a set of tools for AZD extension developers to test and debug their extensions.",
162162
"versions": [
163163
{
164+
"version": "0.4.2",
164165
"capabilities": [
165166
"custom-commands"
166167
],
167-
"version": "0.4.2",
168168
"usage": "azd x \u003ccommand\u003e [options]",
169169
"examples": [
170170
{
@@ -245,10 +245,10 @@
245245
}
246246
},
247247
{
248+
"version": "0.5.0",
248249
"capabilities": [
249250
"custom-commands"
250251
],
251-
"version": "0.5.0",
252252
"usage": "azd x \u003ccommand\u003e [options]",
253253
"examples": [
254254
{
@@ -334,10 +334,10 @@
334334
}
335335
},
336336
{
337+
"version": "0.5.1",
337338
"capabilities": [
338339
"custom-commands"
339340
],
340-
"version": "0.5.1",
341341
"usage": "azd x \u003ccommand\u003e [options]",
342342
"examples": [
343343
{
@@ -421,6 +421,95 @@
421421
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-windows-arm64.zip"
422422
}
423423
}
424+
},
425+
{
426+
"version": "0.6.0",
427+
"capabilities": [
428+
"custom-commands"
429+
],
430+
"usage": "azd x \u003ccommand\u003e [options]",
431+
"examples": [
432+
{
433+
"name": "init",
434+
"description": "Initialize a new AZD extension project.",
435+
"usage": "azd x init"
436+
},
437+
{
438+
"name": "build",
439+
"description": "Build the AZD extension project.",
440+
"usage": "azd x build"
441+
},
442+
{
443+
"name": "pack",
444+
"description": "Package the AZD extension project into a distributable format and add to local registry.",
445+
"usage": "azd x pack"
446+
},
447+
{
448+
"name": "publish",
449+
"description": "Publish the AZD extension project to an extension source.",
450+
"usage": "azd x publish"
451+
},
452+
{
453+
"name": "release",
454+
"description": "Create an new release of the AZD extension project to a Github repository.",
455+
"usage": "azd x release"
456+
},
457+
{
458+
"name": "watch",
459+
"description": "Watch for changes in the extension project and automatically rebuild and reload the extension.",
460+
"usage": "azd x watch"
461+
}
462+
],
463+
"artifacts": {
464+
"darwin/amd64": {
465+
"checksum": {
466+
"algorithm": "sha256",
467+
"value": "c78800b88d7010be996357f0fd823b557b98dcd4ad03c37ba740bcfa798af691"
468+
},
469+
"entryPoint": "microsoft-azd-extensions-darwin-amd64",
470+
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-darwin-amd64.zip"
471+
},
472+
"darwin/arm64": {
473+
"checksum": {
474+
"algorithm": "sha256",
475+
"value": "81d05b3f09a20c02f5ff95e6733a365aec26fde247018d1226a6bf7d1fad475e"
476+
},
477+
"entryPoint": "microsoft-azd-extensions-darwin-arm64",
478+
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-darwin-arm64.zip"
479+
},
480+
"linux/amd64": {
481+
"checksum": {
482+
"algorithm": "sha256",
483+
"value": "e224f538bc1c8882dfffe8b3719bdbb23e8a300c2b1b17213a7741eb95d260f2"
484+
},
485+
"entryPoint": "microsoft-azd-extensions-linux-amd64",
486+
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-linux-amd64.tar.gz"
487+
},
488+
"linux/arm64": {
489+
"checksum": {
490+
"algorithm": "sha256",
491+
"value": "7032f59e5a35b1400a3e586786bdfb9e6c7a06c6be3528ee57fc7327cfcd41dc"
492+
},
493+
"entryPoint": "microsoft-azd-extensions-linux-arm64",
494+
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-linux-arm64.tar.gz"
495+
},
496+
"windows/amd64": {
497+
"checksum": {
498+
"algorithm": "sha256",
499+
"value": "544dd88bbda18f80d24a2cde9bd48a5fb14d710ac30b830792f9cec6daf96115"
500+
},
501+
"entryPoint": "microsoft-azd-extensions-windows-amd64.exe",
502+
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-windows-amd64.zip"
503+
},
504+
"windows/arm64": {
505+
"checksum": {
506+
"algorithm": "sha256",
507+
"value": "b4cfa9e6ec1d63f1486007455b67fa91c8930ada99df6dcd58d42d5f781190b1"
508+
},
509+
"entryPoint": "microsoft-azd-extensions-windows-arm64.exe",
510+
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-windows-arm64.zip"
511+
}
512+
}
424513
}
425514
]
426515
},
@@ -431,10 +520,10 @@
431520
"description": "This extension configures GitHub Copilot Coding Agent access to Azure",
432521
"versions": [
433522
{
523+
"version": "0.5.0",
434524
"capabilities": [
435525
"custom-commands"
436526
],
437-
"version": "0.5.0",
438527
"usage": "azd coding-agent \u003ccommand\u003e [options]",
439528
"examples": null,
440529
"artifacts": {
@@ -578,4 +667,4 @@
578667
]
579668
}
580669
]
581-
}
670+
}

0 commit comments

Comments
 (0)