Skip to content

Commit 6605c57

Browse files
authored
Release 1.3.0 (#2713)
Update changelog and bump version.txt for 1.3.0 Fix #2714 by avoiding an empty string being set as the default value.
1 parent 1702f10 commit 6605c57

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

cli/azd/CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,29 @@
11
# Release History
22

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

55
### Features Added
66

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

1013
### Breaking Changes
1114

1215
### Bugs Fixed
1316

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

25+
- [[2660]](https://github.com/Azure/azure-dev/pull/2660) Starter templates now include `core` libraries by default.
26+
1627
## 1.2.0 (2023-08-09)
1728

1829
### Features Added

cli/azd/pkg/azureutil/location.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ func PromptLocationWithFilter(
6262
defaultLocation = accountManager.GetDefaultLocationName(ctx)
6363
}
6464

65-
var defaultOption string
65+
var defaultOption any
6666

6767
locationOptions := make([]string, len(locations))
6868
for index, location := range locations {

cli/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.0-beta.1
1+
1.3.0

0 commit comments

Comments
 (0)