Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions cli/azd/extensions/azure.ai.agents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History

## 1.0.0-beta.2 (2026-07-01)

### Bugs Fixed

- [[#8901]](https://github.com/Azure/azure-dev/pull/8901) Remove duplicate service-target provider claims from the `azure.ai.agents` extension manifest for hosts now owned by the split Foundry extensions (`azure.ai.projects`, `azure.ai.connections`, `azure.ai.toolboxes`). Thanks @huimiu for the contribution!

## 1.0.0-beta.1 (2026-06-30)

### Features Added
Expand Down
11 changes: 1 addition & 10 deletions cli/azd/extensions/azure.ai.agents/extension.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ displayName: Foundry agents (Beta)
description: Ship agents with Microsoft Foundry from your terminal. (Beta)
usage: azd ai agent <command> [options]
# NOTE: Make sure version.txt is in sync with this version.
version: 1.0.0-beta.1
version: 1.0.0-beta.2
requiredAzdVersion: ">=1.27.0"
dependencies:
- id: azure.ai.inspector
Expand All @@ -22,15 +22,6 @@ providers:
- name: azure.ai.agent
type: service-target
description: Deploys agents to the Foundry Agent Service
- name: azure.ai.project
type: service-target
description: Registers Foundry project service entries so azd up/deploy succeed
- name: azure.ai.connection
type: service-target
description: Registers Foundry connection service entries so azd up/deploy succeed
- name: azure.ai.toolbox
type: service-target
description: Registers Foundry toolbox service entries so azd up/deploy succeed
- name: microsoft.foundry
type: provisioning-provider
description: Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory
Expand Down
2 changes: 1 addition & 1 deletion cli/azd/extensions/azure.ai.agents/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0-beta.1
1.0.0-beta.2
88 changes: 88 additions & 0 deletions cli/azd/extensions/registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -5112,6 +5112,94 @@
"version": "~1.0.0-beta.1"
}
]
},
{
"version": "1.0.0-beta.2",
"requiredAzdVersion": ">=1.27.0",
"capabilities": [
"custom-commands",
"lifecycle-events",
"mcp-server",
"service-target-provider",
"provisioning-provider",
"metadata"
],
"providers": [
{
"name": "azure.ai.agent",
"type": "service-target",
"description": "Deploys agents to the Foundry Agent Service"
},
{
"name": "microsoft.foundry",
"type": "provisioning-provider",
"description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory"
}
],
"usage": "azd ai agent <command> [options]",
"examples": [
{
"name": "init",
"description": "Initialize a new AI agent project.",
"usage": "azd ai agent init"
}
],
"artifacts": {
"darwin/amd64": {
"checksum": {
"algorithm": "sha256",
"value": "57862cea72229938e7bc22c6b9000d497732919386786e3a54c5702c51ab7443"
},
"entryPoint": "azure-ai-agents-darwin-amd64",
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-darwin-amd64.zip"
},
"darwin/arm64": {
"checksum": {
"algorithm": "sha256",
"value": "4af8331d5e9824efbbad0dcb8c55f7098efe1a8d6b26356dc6cb917df2d0222c"
},
"entryPoint": "azure-ai-agents-darwin-arm64",
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-darwin-arm64.zip"
},
"linux/amd64": {
"checksum": {
"algorithm": "sha256",
"value": "624b22f27b49136965ffc19ee00229dfba819177dd0987afadabc747e0ef0eaa"
},
"entryPoint": "azure-ai-agents-linux-amd64",
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-linux-amd64.tar.gz"
},
"linux/arm64": {
"checksum": {
"algorithm": "sha256",
"value": "4bc8c7ffe937751b9f602ca85a49f1be2cae4afeea9f7f3f73f77fc19d6f998e"
},
"entryPoint": "azure-ai-agents-linux-arm64",
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-linux-arm64.tar.gz"
},
"windows/amd64": {
"checksum": {
"algorithm": "sha256",
"value": "c36bee112dd3af5b378c6111b979509c7a23c58ad89657a9adca11c193871f2f"
},
"entryPoint": "azure-ai-agents-windows-amd64.exe",
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-windows-amd64.zip"
},
"windows/arm64": {
"checksum": {
"algorithm": "sha256",
"value": "ac34cba2e3e55f42fb5d530e3debc26fb8a152a783852a91899c7e14f84667b5"
},
"entryPoint": "azure-ai-agents-windows-arm64.exe",
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-windows-arm64.zip"
}
},
"dependencies": [
{
"id": "azure.ai.inspector",
"version": "~1.0.0-beta.1"
}
]
}
]
},
Expand Down