Skip to content

Commit

Permalink
Release v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hc-github-team-tf-core committed Sep 28, 2022
1 parent 48a999f commit ebc1f29
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions CHANGELOG.md
@@ -1,15 +1,15 @@
## 1.3.1 (Unreleased)
## 1.3.1 (September 28, 2022)

NOTE:
* On `darwin/amd64` and `darwin/arm64` architectures, `terraform` binaries are now built with CGO enabled. This should not have any user-facing impact, except in cases where the pure Go DNS resolver causes problems on recent versions of macOS: using CGO may mitigate these issues. Please see the upstream bug https://github.com/golang/go/issues/52839 for more details.

BUG FIXES:

* Fixed a crash when using objects with optional attributes and default values in collections, most visible with nested modules. [GH-31847]
* Prevent cycles in some situations where a provider depends on resources in the configuration which are participating in planned changes. [GH-31857]
* Fixed an error when attempting to destroy a configuration where resources do not exist in the state. [GH-31858]
* Data sources which cannot be read during will no longer prevent the state from being serialized. [GH-31871]
* Fixed a crash which occured when a resource with a precondition and/or a postcondition appeared inside a module with two or more instances. [GH-31860]
* Fixed a crash when using objects with optional attributes and default values in collections, most visible with nested modules. ([#31847](https://github.com/hashicorp/terraform/issues/31847))
* Prevent cycles in some situations where a provider depends on resources in the configuration which are participating in planned changes. ([#31857](https://github.com/hashicorp/terraform/issues/31857))
* Fixed an error when attempting to destroy a configuration where resources do not exist in the state. ([#31858](https://github.com/hashicorp/terraform/issues/31858))
* Data sources which cannot be read during will no longer prevent the state from being serialized. ([#31871](https://github.com/hashicorp/terraform/issues/31871))
* Fixed a crash which occured when a resource with a precondition and/or a postcondition appeared inside a module with two or more instances. ([#31860](https://github.com/hashicorp/terraform/issues/31860))

## 1.3.0 (September 21, 2022)

Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Expand Up @@ -16,7 +16,7 @@ var Version = "1.3.1"
// A pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release
// such as "dev" (in development), "beta", "rc1", etc.
var Prerelease = "dev"
var Prerelease = ""

// SemVer is an instance of version.Version. This has the secondary
// benefit of verifying during tests and init time that our version is a
Expand Down

0 comments on commit ebc1f29

Please sign in to comment.