Skip to content

Commit

Permalink
Release v1.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
hc-github-team-tf-core committed Apr 7, 2022
1 parent 8b5e2c4 commit 9f4147d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
@@ -1,10 +1,10 @@
## 1.1.8 (Unreleased)
## 1.1.8 (April 07, 2022)

BUG FIXES:

* cli: Fix missing identifying attributes (e.g. "id", "name") when displaying plan diffs with nested objects. [GH-30685]
* functions: Fix error when `sum()` function is called with a collection of string-encoded numbers, such as `sum(["1", "2", "3"])`. [GH-30684]
* When rendering a diff, Terraform now quotes the name of any object attribute whose string representation is not a valid identifier. [GH-30766]
* cli: Fix missing identifying attributes (e.g. "id", "name") when displaying plan diffs with nested objects. ([#30685](https://github.com/hashicorp/terraform/issues/30685))
* functions: Fix error when `sum()` function is called with a collection of string-encoded numbers, such as `sum(["1", "2", "3"])`. ([#30684](https://github.com/hashicorp/terraform/issues/30684))
* When rendering a diff, Terraform now quotes the name of any object attribute whose string representation is not a valid identifier. ([#30766](https://github.com/hashicorp/terraform/issues/30766))
* Terraform will no longer crash in the `terraform apply` phase if an error occurs during backend configuration. ([#30780](https://github.com/hashicorp/terraform/pull/30780))

## 1.1.7 (March 02, 2022)
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Expand Up @@ -16,7 +16,7 @@ var Version = "1.1.8"
// 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 9f4147d

Please sign in to comment.