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

## 1.0.0-beta.6 (Unreleased)
## 1.0.0-beta.6 (2026-07-16)
Comment thread
trangevi marked this conversation as resolved.

### Features Added

- [[#9046]](https://github.com/Azure/azure-dev/pull/9046) `azd provision` now creates Foundry connections declared as `host: azure.ai.connection` services in `azure.yaml` at provision time via the `microsoft.foundry` synthesizer, for both greenfield and brownfield projects. Connection category, target, authentication type, credentials, and metadata are all supported. `azd deploy` for `host: azure.ai.connection` services is now a no-op; provision is the single source of truth.
- [[#9107]](https://github.com/Azure/azure-dev/pull/9107) Add `centralus` region to the list of supported hosted agent regions.
- [[#8942]](https://github.com/Azure/azure-dev/pull/8942) `azd deploy` can now carry over the current hosted-agent session across deploys. When `AZD_AGENT_RESUME_SESSION_ON_DEPLOY` is set to a truthy value, the session is stopped before deploy and re-pointed at the newly deployed version so the next invocation resumes with its `/home/session` volume intact instead of minting a fresh session.
Comment thread
trangevi marked this conversation as resolved.

### Bugs Fixed

- [[#9114]](https://github.com/Azure/azure-dev/pull/9114) Fix `azd ai agent invoke` failing with "agent name is required" on brownfield projects where the hosted agent name is written inline in the `azure.ai.agent` service config rather than emitted as a deployed environment output. The agent name is now seeded from the inline/config definition, with the deployed environment variable retaining precedence.
- [[#9007]](https://github.com/Azure/azure-dev/pull/9007) Add a preflight validation check that detects an immutable resource-group region conflict before provisioning. When the target resource group already exists in a different region than `AZURE_LOCATION`, the check surfaces the mismatch during azd's validation phase with clear remediation guidance instead of a slow deploy-time ARM `InvalidResourceGroupLocation` error.

### Other Changes

- [[#9112]](https://github.com/Azure/azure-dev/pull/9112) Terraform infrastructure eject now synthesizes
`azure.ai.connection` services into Foundry project connection resources, preserving their category, target,
authentication type, credentials, and metadata.
- [[#9112]](https://github.com/Azure/azure-dev/pull/9112) Terraform infrastructure eject now synthesizes `azure.ai.connection` services into Foundry project connection resources, preserving their category, target, authentication type, credentials, and metadata.
- [[#9049]](https://github.com/Azure/azure-dev/pull/9049) Switch the `invocations_ws` agent endpoint from the preview dispatcher form to the GA path-based route. `azd deploy` now registers `AGENT_{KEY}_INVOCATIONS_WS_ENDPOINT` (and `azd ai agent show` displays `Endpoint (invocations_ws)`) as `wss://<account>.services.ai.azure.com/api/projects/<project>/agents/<agent>/endpoint/protocols/invocations_ws?api-version=v1`, carrying the project and agent as path segments to mirror the HTTP `invocations` route. The previous form embedded them as `project_name`/`agent_name` query parameters on a single literal `/api/projects/agents/...` path.
- [[#9103]](https://github.com/Azure/azure-dev/pull/9103) Pin internal azd module dependency to released version.

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

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.5
version: 1.0.0-beta.6
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.5
1.0.0-beta.6
10 changes: 10 additions & 0 deletions cli/azd/extensions/azure.ai.connections/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-16)
Comment thread
trangevi marked this conversation as resolved.

### Breaking Changes

- [[#9046]](https://github.com/Azure/azure-dev/pull/9046) `azd deploy` for `host: azure.ai.connection` services is now a no-op; connections are created at provision time by the `microsoft.foundry` provider via `azd provision`. This removes the redundant ARM write on every `azd deploy`.

### Other Changes

- [[#9103]](https://github.com/Azure/azure-dev/pull/9103) Pin internal azd module dependency to released version.

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

### Bugs Fixed
Expand Down
2 changes: 1 addition & 1 deletion cli/azd/extensions/azure.ai.connections/extension.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ tags:
- ai
- connection
usage: azd ai connection <command> [options]
version: 1.0.0-beta.2
version: 1.0.0-beta.3
requiredAzdVersion: ">=1.27.0"
2 changes: 1 addition & 1 deletion cli/azd/extensions/azure.ai.connections/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0-beta.2
1.0.0-beta.3
6 changes: 6 additions & 0 deletions cli/azd/extensions/azure.ai.routines/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History

## 1.0.0-beta.3 (2026-07-16)
Comment thread
trangevi marked this conversation as resolved.

### Other Changes

- [[#9103]](https://github.com/Azure/azure-dev/pull/9103) Pin internal azd module dependency to released version.

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

### Bugs Fixed
Expand Down
2 changes: 1 addition & 1 deletion cli/azd/extensions/azure.ai.routines/extension.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ tags:
- ai
- routine
usage: azd ai routine <command> [options]
version: 1.0.0-beta.2
version: 1.0.0-beta.3
requiredAzdVersion: ">=1.27.0"
2 changes: 1 addition & 1 deletion cli/azd/extensions/azure.ai.routines/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0-beta.2
1.0.0-beta.3
14 changes: 14 additions & 0 deletions cli/azd/extensions/azure.ai.toolboxes/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Release History

## 1.0.0-beta.3 (2026-07-16)
Comment thread
trangevi marked this conversation as resolved.

### Features Added

- [[#9024]](https://github.com/Azure/azure-dev/pull/9024) `azd deploy` for `host: azure.ai.toolbox` services now supports an `endpoint:` field in `azure.yaml` to reference an existing toolbox by its MCP endpoint URL, skipping version creation. This enables reusing a toolbox managed outside the current project.

### Bugs Fixed

- [[#9013]](https://github.com/Azure/azure-dev/pull/9013) Fix `azd ai toolbox skill add/remove` and `connection add/remove` branching from the toolbox's default version instead of its latest, causing sequential mutations to silently drop earlier changes. Add a `--from-version` flag to override the branch source.

### Other Changes

- [[#9103]](https://github.com/Azure/azure-dev/pull/9103) Pin internal azd module dependency to released version.

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

### Other Changes
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.2
version: 1.0.0-beta.3
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.2
1.0.0-beta.3
Loading