Skip to content

Commit

Permalink
v0.11.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Sander van Harmelen committed Mar 8, 2019
1 parent b9eaba4 commit 057286e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
## 0.11.12 (Unreleased)
## 0.11.12 (March 8, 2019)

IMPROVEMENTS:

* The `filemd5`, `filesha1`, etc functions from Terraform v0.12 are backported primarily to allow writing
modules that can work in both Terraform 0.11 and 0.12, since the `sha1(file("..."))` pattern in 0.12
works only for files containing valid UTF-8 text; `sha1file("...")` must be used instead. Both
forms are equivalent in Terraform 0.11.
* backend/remote: Retry calls when the remote backend responds with a server error [GH-20589]
* backend/remote: Check for external updates while waiting for user input [GH-20622]
* backend/remote: Retry calls when the remote backend responds with a server error ([#20589](https://github.com/hashicorp/terraform/issues/20589))
* backend/remote: Check for external updates while waiting for user input ([#20622](https://github.com/hashicorp/terraform/issues/20622))

BUG FIXES:

* backend/remote: Fix "token too long" errors when streaming remote operation logs [GH-20241]
* backend/remote: Use the `can-queue-apply` permission to detect if apply is allowed [GH-20462]
* backend/remote: Exit with 1 when a remote run is canceled [GH-20482]
* core: Use slashes in the module manifest to prevent Windows/Linux compatibility issues [GH-20246]
* backend/remote: Fix "token too long" errors when streaming remote operation logs ([#20241](https://github.com/hashicorp/terraform/issues/20241))
* backend/remote: Use the `can-queue-apply` permission to detect if apply is allowed ([#20462](https://github.com/hashicorp/terraform/issues/20462))
* backend/remote: Exit with 1 when a remote run is canceled ([#20482](https://github.com/hashicorp/terraform/issues/20482))
* core: Use slashes in the module manifest to prevent Windows/Linux compatibility issues ([#20246](https://github.com/hashicorp/terraform/issues/20246))

## 0.11.12-beta1 (January 28, 2019)

Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var Version = "0.11.12"
// 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 057286e

Please sign in to comment.