Skip to content
Closed
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
9 changes: 8 additions & 1 deletion cli/azd/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 1.24.0-beta.1 (Unreleased)
## 1.25.0-beta.1 (Unreleased)

### Features Added

Expand All @@ -10,6 +10,13 @@

### Other Changes

## 1.24.1 (2026-04-17)

### Features Added

- [[#7697]](https://github.com/Azure/azure-dev/pull/7697) Add `.azdxignore` support for `azd x watch`; create a `.azdxignore` file in the project root to exclude files and directories from the file watcher, preventing excessive rebuilds. Patterns from `.gitignore` are also respected.
- [[#7746]](https://github.com/Azure/azure-dev/pull/7746) Add local Bicep preflight check for Azure reserved resource names; `azd provision` now warns before provisioning when predicted resource names match Azure's reserved-word restrictions (exact match, substring, or prefix rules).

## 1.24.0 (2026-04-14)

### Features Added
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.24.0"
const Version = "1.24.1"
2 changes: 1 addition & 1 deletion cli/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.24.0
1.24.1
Loading