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
10 changes: 10 additions & 0 deletions cli/azd/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@

### Other Changes

## 1.25.5 (2026-06-05)

### Bugs Fixed

- [[#8458]](https://github.com/Azure/azure-dev/pull/8458) Fix memory exhaustion and slow model catalog loads when Azure CLI delegated authentication (`auth.useAzCliAuth = true`) fans out concurrent token requests by caching tokens in-process per tenant.
- [[#8459]](https://github.com/Azure/azure-dev/pull/8459) Fix `azd auth status` reporting unauthenticated in Cloud Shell and blocking `azd provision` and `azd ai agent init` for sessions relying on the ambient Cloud Shell credential.
- [[#8493]](https://github.com/Azure/azure-dev/pull/8493) Fix `azd down` failing to purge Azure AI Foundry cognitive accounts due to an SDK type mismatch in the `networkInjections` response.
- [[#8527]](https://github.com/Azure/azure-dev/pull/8527) Fix `dotnet publish` failing with "empty dotnet configuration output" when Podman is the container engine by forwarding the detected engine to the .NET SDK.
- [[#8537]](https://github.com/Azure/azure-dev/pull/8537) Fix AI model quota preflight blocking all locations on subscriptions where the Azure Cognitive Services `/usages` API returns an empty list (for example, free-tier subscriptions); empty usage lists are now treated as available quota rather than zero quota.

## 1.25.4 (2026-05-29)

### Bugs Fixed
Expand Down
2 changes: 1 addition & 1 deletion cli/azd/pkg/azdext/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ package azdext
// Version is the semantic version of the azdext SDK package.
// This value mirrors the CLI version in cli/version.txt and is
// automatically updated by eng/scripts/Update-CliVersion.ps1.
const Version = "1.26.0-beta.1"
const Version = "1.25.5"
2 changes: 1 addition & 1 deletion cli/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.26.0-beta.1
1.25.5
Loading