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

### Bugs Fixed

### Other Changes

## 1.25.6 (2026-06-12)

### Bugs Fixed

- [[#8414]](https://github.com/Azure/azure-dev/pull/8414) Fix stale token errors (for example `AADSTS700082`) persisting after re-running `azd auth login`; azd now automatically clears cached authentication data when re-logging in while already signed in.
- [[#8551]](https://github.com/Azure/azure-dev/pull/8551) Fix intermittent `DeploymentNotFound` failures during `azd up`, `azd provision`, and `azd down` by retrying the transient ARM 404 that can be returned immediately after a subscription- or resource-group-scoped deployment is submitted.
- [[#8561]](https://github.com/Azure/azure-dev/pull/8561) Make `azd init` idempotent with respect to the environment: re-running init in an initialized project now reuses the existing environment instead of failing with "environment already initialized". With `--no-prompt` and no `-e`, the recorded default environment is reused, and an explicitly requested environment is created and promoted to the default when it does not already exist.
- [[#8571]](https://github.com/Azure/azure-dev/pull/8571) Fix the AI model quota preflight rejecting all locations on free-tier subscriptions by lowering the required `OpenAI.S0.AccountCount` capacity from 2 to 1.
- [[#8588]](https://github.com/Azure/azure-dev/pull/8588) Fix Static Web Apps deployment failing with a BadRequest error for the `default` environment name by passing `production` to the SWA CLI, and add an optional `environment` field in `azure.yaml` for targeting named preview environments.
- [[#8598]](https://github.com/Azure/azure-dev/pull/8598) Fix Aspire .NET deployments not using Podman when Docker is unavailable by lazily detecting the container engine in the deploy path.

### Other Changes

- [[#8417]](https://github.com/Azure/azure-dev/pull/8417) Reduce the size of the generated Fig completion spec (`azd completion fig`) by pruning duplicated help subcommands and redundant extension output options; add `--include-help-subcommands` to restore the previous expanded output.
- [[#8579]](https://github.com/Azure/azure-dev/pull/8579) Update user-facing references from ".NET Aspire" to "Aspire" to reflect the product rebrand. Thanks @IEvangelist for the contribution!
- [[#8594]](https://github.com/Azure/azure-dev/pull/8594) Update the bundled Bicep CLI to v0.44.1.

## 1.25.5 (2026-06-05)

### 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.6"
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.6
Loading