v0.12.0-rc1
This commit is contained in:
parent
02781206ff
commit
66c5acffa6
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -1,22 +1,24 @@
|
||||||
## 0.12.0-rc1 (Unreleased)
|
## 0.12.0-rc1 (May 7, 2019)
|
||||||
|
|
||||||
|
The following are the significant changes since 0.12.0-beta2.
|
||||||
|
|
||||||
NEW FEATURES:
|
NEW FEATURES:
|
||||||
|
|
||||||
* New function `strrev`, for reversing unicode strings. [GH-21091]
|
* New function `strrev`, for reversing unicode strings. ([#21091](https://github.com/hashicorp/terraform/issues/21091))
|
||||||
|
|
||||||
IMPROVEMENTS:
|
IMPROVEMENTS:
|
||||||
|
|
||||||
* backend/s3: Support for the new AWS region `ap-east-1` [GH-21117]
|
* backend/s3: Support for the new AWS region `ap-east-1` ([#21117](https://github.com/hashicorp/terraform/issues/21117))
|
||||||
* backend/remote: Do not unlock a workspace after a failed state upload [GH-21148]
|
* backend/remote: Do not unlock a workspace after a failed state upload ([#21148](https://github.com/hashicorp/terraform/issues/21148))
|
||||||
* command/init: Improve formatting of provider names during discovery [GH-21094]
|
* command/init: Improve formatting of provider names during discovery ([#21094](https://github.com/hashicorp/terraform/issues/21094))
|
||||||
* command/0.12upgrade: Upgrade indexing of splat syntax [GH-21103]
|
* command/0.12upgrade: Upgrade indexing of splat syntax ([#21103](https://github.com/hashicorp/terraform/issues/21103))
|
||||||
* command/0.12upgrade: Return error for invalid references (e.g. with initial digits) [GH-21103]
|
* command/0.12upgrade: Return error for invalid references (e.g. with initial digits) ([#21103](https://github.com/hashicorp/terraform/issues/21103))
|
||||||
|
|
||||||
BUG FIXES:
|
BUG FIXES:
|
||||||
|
|
||||||
* core: Make sure UIInput keeps working after being canceled [GH-21139]
|
* core: Make sure UIInput keeps working after being canceled ([#21139](https://github.com/hashicorp/terraform/issues/21139))
|
||||||
* lang/funcs: `flatten` fix handling of sets and tuples; return a tuple [GH-21171]
|
* lang/funcs: `flatten` fix handling of sets and tuples; return a tuple ([#21171](https://github.com/hashicorp/terraform/issues/21171))
|
||||||
* states/statefile: properly upgrade dependency syntax [GH-21159]
|
* states/statefile: properly upgrade dependency syntax ([#21159](https://github.com/hashicorp/terraform/issues/21159))
|
||||||
|
|
||||||
## 0.12.0-beta2 (Apr 18, 2019)
|
## 0.12.0-beta2 (Apr 18, 2019)
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ var Version = "0.12.0"
|
||||||
// A pre-release marker for the version. If this is "" (empty string)
|
// 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
|
// then it means that it is a final release. Otherwise, this is a pre-release
|
||||||
// such as "dev" (in development), "beta", "rc1", etc.
|
// such as "dev" (in development), "beta", "rc1", etc.
|
||||||
var Prerelease = "dev"
|
var Prerelease = "rc1"
|
||||||
|
|
||||||
// SemVer is an instance of version.Version. This has the secondary
|
// SemVer is an instance of version.Version. This has the secondary
|
||||||
// benefit of verifying during tests and init time that our version is a
|
// benefit of verifying during tests and init time that our version is a
|
||||||
|
|
Loading…
Reference in New Issue