Skip to content
Open
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
10 changes: 10 additions & 0 deletions cli/azd/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release History

## 1.24.0-beta.1 (Unreleased)

### Bugs Fixed

- [[#7356]](https://github.com/Azure/azure-dev/pull/7356) Fix panic when running `azd auth token` with an unsupported `--output` value (e.g. `--output none`); the error is now returned cleanly instead of causing a nil-dereference panic.

### Other Changes

- [[#7298]](https://github.com/Azure/azure-dev/pull/7298) Restore Authenticode code-sign verification for Windows MSI installs triggered by `azd update`; the previous `-SkipVerify` bypass has been removed so the downloaded MSI is now verified before execution.

## 1.23.10 (2026-03-16)

### Bugs Fixed
Expand Down
4 changes: 4 additions & 0 deletions cli/azd/extensions/azure.ai.agents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## 0.1.16-preview (Unreleased)

- [[#7332]](https://github.com/Azure/azure-dev/pull/7332) Significantly speed up Foundry project discovery during `azd ai agent init`. Project listing now uses a single ARM subscription query instead of a sequential per-account scan (~27× faster), and providing `--project-id` short-circuits to a direct `GET` instead of a full subscription scan (~15× faster).

## 0.1.15-preview (2026-03-13)

- [[#7080]](https://github.com/Azure/azure-dev/pull/7080) Fix authentication failures (`AADSTS70043`/`AADSTS700082`) for multi-tenant and guest users by using `UserTenantId` for credential resolution
Expand Down
25 changes: 5 additions & 20 deletions cli/installer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,17 +85,7 @@ yum install -y azd-<version>-1.x86_64.rpm

### Windows

#### Uninstalling 0.5.0-beta.1 and later

The Azure Developer CLI uses MSI to install on Windows. Use the "Add or remove programs" dialog in Windows to remove the "Azure Developer CLI" application.

#### Uninstalling version 0.4.0-beta.1 and earlier

Use this PowerShell script to uninstall Azure Developer CLI 0.4.0-beta.1 and earlier.

```powershell
powershell -ex AllSigned -c "Invoke-RestMethod 'https://aka.ms/uninstall-azd.ps1' | Invoke-Expression"
```
The Azure Developer CLI uses MSI to install on Windows. Use the "Add or remove programs" dialog in Windows to remove the "Azure Developer CLI" application.

### Linux/MacOS

Expand Down Expand Up @@ -236,19 +226,14 @@ To download and install the "daily" version of azd (most recent build)

The Azure Developer CLI will write files to `~/.azd/` that are specific to the application's usage. Since this is user data uninstall processes do not alter or remove this data.

### Windows
For versions released after `0.5.0-beta.1` use the following procedure to remove `azd`:
### Windows

Use the following procedure to remove `azd`:

1. Search for `Add or remove programs` in Windows
2. Locate `Azure Developer CLI`
2. Locate `Azure Developer CLI`
3. Select `Uninstall`

Uninstall script for version s released before `0.5.0-beta.1` (does not work on versions `0.5.0-beta.1` and later):

```powershell
powershell -ex AllSigned -c "Invoke-RestMethod 'https://aka.ms/uninstall-azd.ps1' | Invoke-Expression"
```

### Linux/MacOS

If installed to the default location using the installation script `azd` can be removed using the uninstall script.
Expand Down