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
20 changes: 20 additions & 0 deletions cli/azd/extensions/azure.ai.agents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Release History

## 1.0.0-beta.7 (2026-07-23)

### Features Added

- [[#9009]](https://github.com/Azure/azure-dev/pull/9009) `azd ai agent init` now offers `invocations_ws` as a selectable agent protocol (including for bring-your-own-image `--image` init), while `responses` remains the default.
- [[#9204]](https://github.com/Azure/azure-dev/pull/9204) Add `eastus`, `italynorth`, `uaenorth`, `southcentralus`, `switzerlandwest`, `ukwest`, `westeurope`, `westcentralus`, and `japanwest` to the list of supported hosted agent regions.

### Bugs Fixed

- [[#9149]](https://github.com/Azure/azure-dev/pull/9149) Fix `azd ai agent run` and `azd deploy` not consistently resolving agent definitions declared inline in `azure.yaml`, via the deprecated `config:` block, or through local `$ref` files.
- [[#9171]](https://github.com/Azure/azure-dev/pull/9171) Fix modern Python agent projects (using `pyproject.toml`) being incorrectly routed to container deployment and prompted for an unnecessary Azure Container Registry during code deploy.
- [[#9205]](https://github.com/Azure/azure-dev/pull/9205) Fix `azd deploy` failing with HTTP 403 when the signed-in user's role (for example a subscription-inherited Owner or Azure AI Developer) lacked Cognitive Services data-plane access; the deploy-time RBAC check now recognizes only roles that grant it and auto-assigns the Foundry User role when needed.
- [[#9225]](https://github.com/Azure/azure-dev/pull/9225) Fix `azd ai agent init` accepting stale Azure Container Registry connections from an existing Foundry project; init now validates discovered registries against ARM and clears missing ones instead of deferring the failure until publish.
- [[#9254]](https://github.com/Azure/azure-dev/pull/9254) Fix `azd ai agent doctor` failing valid projects whose agent definition is declared inline in `azure.yaml`; the definition check now uses the same resolver as run and deploy.
- [[#9264]](https://github.com/Azure/azure-dev/pull/9264) Fix `azd ai agent doctor` reporting a false pass for an inline or `$ref` agent definition with an unsupported kind; resolved non-hosted definitions are now validated, while valid `workflow` definitions still pass.
Comment thread
huimiu marked this conversation as resolved.

### Other Changes

- [[#9133]](https://github.com/Azure/azure-dev/pull/9133) Foundry project provisioning has moved to the `azure.ai.projects` extension. Update `azure.ai.agents` and `azure.ai.projects` together, since mixing versions can cause both extensions to register the same `microsoft.foundry` provider.

## 1.0.0-beta.6 (2026-07-16)

### Features Added
Expand Down
4 changes: 4 additions & 0 deletions cli/azd/extensions/azure.ai.agents/cspell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ words:
- germanywestcentral
- italynorth
- japaneast
- japanwest
- koreacentral
- northcentralus
- norwayeast
Expand All @@ -27,9 +28,12 @@ words:
- southindia
- spaincentral
- switzerlandnorth
- switzerlandwest
- uaenorth
- uksouth
- ukwest
- westeurope
- westcentralus
# Project terms
- ABAC
- abbrs
Expand Down
2 changes: 1 addition & 1 deletion 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.6
version: 1.0.0-beta.7
requiredAzdVersion: ">=1.27.1"
dependencies:
- id: azure.ai.inspector
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.6
1.0.0-beta.7
10 changes: 10 additions & 0 deletions cli/azd/extensions/azure.ai.projects/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release History

## 1.0.0-beta.3 (2026-07-23)

### Features Added

- [[#9133]](https://github.com/Azure/azure-dev/pull/9133) The `azure.ai.projects` extension now owns Foundry project provisioning through the `microsoft.foundry` provider, including updating deployments and connections on existing projects (set `AZURE_AI_PROJECT_ID` to the project ARM resource ID), using the customer VNet region for private endpoints, and blocking automatic Azure Container Registry creation for private-network projects. Release it together with `azure.ai.agents`, since mixing versions can cause both extensions to register the same provider.

### Bugs Fixed

- [[#9149]](https://github.com/Azure/azure-dev/pull/9149) Fix Foundry project synthesis and provisioning not consistently resolving configuration declared inline in `azure.yaml`, via the deprecated `config:` block, or through local `$ref` files.

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

### Other Changes
Expand Down
2 changes: 1 addition & 1 deletion cli/azd/extensions/azure.ai.projects/extension.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ tags:
- ai
- project
usage: azd ai project <command> [options]
version: 1.0.0-beta.2
version: 1.0.0-beta.3
requiredAzdVersion: ">=1.27.1"
2 changes: 1 addition & 1 deletion cli/azd/extensions/azure.ai.projects/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0-beta.2
1.0.0-beta.3
10 changes: 10 additions & 0 deletions cli/azd/extensions/azure.ai.toolboxes/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release History

## 1.0.0-beta.4 (2026-07-23)

### Features Added

- [[#9229]](https://github.com/Azure/azure-dev/pull/9229) `azd ai toolbox` now supports the WorkIQ (`work_iq_preview`), FabricIQ (`fabric_iq_preview`), and toolbox-search (`toolbox_search_preview`) preview tools, and `azd ai toolbox connection list` now surfaces any tool that exposes a project connection.

### Bugs Fixed

- [[#9220]](https://github.com/Azure/azure-dev/pull/9220) Fix `azd ai toolbox create --project-endpoint --from-file` failing when run outside an azd project; the best-effort environment sync now skips silently when no `azure.yaml` is present instead of failing the command.

## 1.0.0-beta.3 (2026-07-16)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion cli/azd/extensions/azure.ai.toolboxes/extension.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ tags:
- ai
- toolbox
usage: azd ai toolbox <command> [options]
version: 1.0.0-beta.3
version: 1.0.0-beta.4
requiredAzdVersion: ">=1.27.0"
2 changes: 1 addition & 1 deletion cli/azd/extensions/azure.ai.toolboxes/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0-beta.3
1.0.0-beta.4
Loading