Skip to content

Commit

Permalink
Release 1.3.0 (#2713)
Browse files Browse the repository at this point in the history
Update changelog and bump version.txt for 1.3.0

Fix #2714 by avoiding an empty string being set as the default value.
  • Loading branch information
weikanglim committed Sep 6, 2023
1 parent 1702f10 commit 6605c57
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion cli/azd/CHANGELOG.md
@@ -1,18 +1,29 @@
# Release History

## 1.3.0-beta.1 (Unreleased)
## 1.3.0 (2023-09-06)

### Features Added

- [[2573]](https://github.com/Azure/azure-dev/pull/2573) Adds support for custom template sources.
- [[2637]](https://github.com/Azure/azure-dev/pull/2637) Awesome azd templates are now shown by default in `azd init` template listing.
- [[2628]](https://github.com/Azure/azure-dev/pull/2628) Support for `.bicepparam`.
- [[2700]](https://github.com/Azure/azure-dev/pull/2700) New simplified `azd init` to initialize your existing application for Azure (alpha feature)
- [[2678]](https://github.com/Azure/azure-dev/pull/2678) Support for Cloud Native Buildpacks (alpha feature)

### Breaking Changes

### Bugs Fixed

- [[2624]](https://github.com/Azure/azure-dev/pull/2624) Fix provisioning deployment display not showing progress when certain errors occur.
- [[2676]](https://github.com/Azure/azure-dev/pull/2676) Fix `buildArgs` support for docker build.
- [[2698]](https://github.com/Azure/azure-dev/pull/2698) Fix `azd auth login` default browser prompt in Codespaces environments.
- [[2664]](https://github.com/Azure/azure-dev/pull/2664) Fix `azd auth login` login loop after upgrading to 1.2.0.
- [[2630]](https://github.com/Azure/azure-dev/pull/2630) Fix coloring for ignored operations in `azd provision --preview`

### Other Changes

- [[2660]](https://github.com/Azure/azure-dev/pull/2660) Starter templates now include `core` libraries by default.

## 1.2.0 (2023-08-09)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion cli/azd/pkg/azureutil/location.go
Expand Up @@ -62,7 +62,7 @@ func PromptLocationWithFilter(
defaultLocation = accountManager.GetDefaultLocationName(ctx)
}

var defaultOption string
var defaultOption any

locationOptions := make([]string, len(locations))
for index, location := range locations {
Expand Down
2 changes: 1 addition & 1 deletion cli/version.txt
@@ -1 +1 @@
1.3.0-beta.1
1.3.0

0 comments on commit 6605c57

Please sign in to comment.