Skip to content

Commit 65acdc2

Browse files
author
Paddy
committed
v0.7.11
1 parent af64289 commit 65acdc2

File tree

3 files changed

+27
-27
lines changed

3 files changed

+27
-27
lines changed

CHANGELOG.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ BACKWARDS INCOMPATIBILITIES / NOTES:
44

55
* `template_file` _inline_ templates must escape their variable usage. What
66
was previously `${foo}` must now be `$${foo}`. Note that this is only
7-
for _inline_ templates. Templates read from files are unchanged. [GH-9698]
7+
for _inline_ templates. Templates read from files are unchanged. ([#9698](https://github.com/hashicorp/terraform/issues/9698))
88
* Escape sequences used to require double-escaping when used within interpolations.
99
You now must only escape once (which is the expected/typical behavior).
1010
For example: `${replace(var.foo, "\\", "\\\\")}` is correct. Before,
@@ -14,53 +14,53 @@ BACKWARDS INCOMPATIBILITIES / NOTES:
1414

1515
FEATURES:
1616

17-
* **New provider:** `nomad` [GH-9538]
18-
* **New provider:** `vault` [GH-9158]
17+
* **New provider:** `nomad` ([#9538](https://github.com/hashicorp/terraform/issues/9538))
18+
* **New provider:** `vault` ([#9158](https://github.com/hashicorp/terraform/issues/9158))
1919
* The `import` command will now read provider configuration from Terraform
20-
configuration files (including loading tfvars files and so on). [GH-9809]
20+
configuration files (including loading tfvars files and so on). ([#9809](https://github.com/hashicorp/terraform/issues/9809))
2121
* Providers and resources are now notified by Terraform core to "stop" when
2222
an interrupt is received, allowing resources to gracefully exit much, much
23-
faster. [GH-9607]
23+
faster. ([#9607](https://github.com/hashicorp/terraform/issues/9607))
2424

2525
IMPROVEMENTS:
2626

2727
* helper/schema: only map, list, and set elements that are actually causing
28-
a resource to destroy/create are marked as "requires new". [GH-9613]
28+
a resource to destroy/create are marked as "requires new". ([#9613](https://github.com/hashicorp/terraform/issues/9613))
2929

3030
BUG FIXES:
3131

32-
* core: Escape sequences in interpolations work in every case. [GH-8709]
33-
* core: Maps in outputs with computed values are no longer removed. [GH-9549]
34-
* command/fmt: Multiline comments aren't indented every fmt. [GH-6524]
32+
* core: Escape sequences in interpolations work in every case. ([#8709](https://github.com/hashicorp/terraform/issues/8709))
33+
* core: Maps in outputs with computed values are no longer removed. ([#9549](https://github.com/hashicorp/terraform/issues/9549))
34+
* command/fmt: Multiline comments aren't indented every fmt. ([#6524](https://github.com/hashicorp/terraform/issues/6524))
3535

36-
## 0.7.11 (Unreleased)
36+
## 0.7.11 (November 15, 2016)
3737

3838
FEATURES:
3939

4040
IMPROVEMENTS:
4141

4242
* provider/aws: Expose RDS DB Instance HostedZoneId attribute ([#10000](https://github.com/hashicorp/terraform/issues/10000))
4343
* provider/aws: Ignore AWS internal tags ([#7454](https://github.com/hashicorp/terraform/issues/7454))
44-
* provider/aws: Exposed aws_iam_role create_date attribute [GH-10091]
45-
* provider/aws: Added aws_api_gateway_api_key created_date & last_updated_date attributes [GH-9530]
46-
* provider/aws: Added aws_api_gateway_rest_api created_date attribute [GH-9532]
47-
* provider/aws: Exposed aws_api_gateway_deployment.created_date attribute [GH-9534]
48-
* provider/aws: Added `retry_duraction` to `redshift_configuration` in `kinesis_firehose_delivery_stream` [GH-10113]
44+
* provider/aws: Exposed aws_iam_role create_date attribute ([#10091](https://github.com/hashicorp/terraform/issues/10091))
45+
* provider/aws: Added aws_api_gateway_api_key created_date & last_updated_date attributes ([#9530](https://github.com/hashicorp/terraform/issues/9530))
46+
* provider/aws: Added aws_api_gateway_rest_api created_date attribute ([#9532](https://github.com/hashicorp/terraform/issues/9532))
47+
* provider/aws: Exposed aws_api_gateway_deployment.created_date attribute ([#9534](https://github.com/hashicorp/terraform/issues/9534))
48+
* provider/aws: Added `retry_duraction` to `redshift_configuration` in `kinesis_firehose_delivery_stream` ([#10113](https://github.com/hashicorp/terraform/issues/10113))
4949
* provider/azurerm: allow updating load balancer sub-resources ([#10016](https://github.com/hashicorp/terraform/issues/10016))
5050
* provider/openstack: Instance `user_data` will now detect if input is already Base64-encode ([#9966](https://github.com/hashicorp/terraform/issues/9966))
5151

5252
BUG FIXES:
5353

54-
* core: Fix diff mismatch error on "Destroy: true to false" scenarios. [GH-10139]
55-
* core: New destroy graph `-target` includes dependencies. [GH-10036]
56-
* core: New destroy graph creates proper edges through module outputs [GH-10068]
57-
* core: Fix shadow error when using uuid() [GH-10106]
58-
* core: Fix an issue where applies with data sources could hang [GH-10134]
59-
* core: Fix plan operation diff mismatch for computed keys in slices [GH-10118]
60-
* provider/aws: fix the validation of aws_redshift_cluster database_name [GH-10019]
61-
* provider/aws: Fix panic in aws_acm_certificate datasource [GH-10051]
62-
* provider/aws: increase aws_lambda_function timeout [GH-10116]
63-
* provider/aws: Fixed ES buffering_interval option in `kinesis_firehose_delivery_stream` [GH-10112]
54+
* core: Fix diff mismatch error on "Destroy: true to false" scenarios. ([#10139](https://github.com/hashicorp/terraform/issues/10139))
55+
* core: New destroy graph `-target` includes dependencies. ([#10036](https://github.com/hashicorp/terraform/issues/10036))
56+
* core: New destroy graph creates proper edges through module outputs ([#10068](https://github.com/hashicorp/terraform/issues/10068))
57+
* core: Fix shadow error when using uuid() ([#10106](https://github.com/hashicorp/terraform/issues/10106))
58+
* core: Fix an issue where applies with data sources could hang ([#10134](https://github.com/hashicorp/terraform/issues/10134))
59+
* core: Fix plan operation diff mismatch for computed keys in slices ([#10118](https://github.com/hashicorp/terraform/issues/10118))
60+
* provider/aws: fix the validation of aws_redshift_cluster database_name ([#10019](https://github.com/hashicorp/terraform/issues/10019))
61+
* provider/aws: Fix panic in aws_acm_certificate datasource ([#10051](https://github.com/hashicorp/terraform/issues/10051))
62+
* provider/aws: increase aws_lambda_function timeout ([#10116](https://github.com/hashicorp/terraform/issues/10116))
63+
* provider/aws: Fixed ES buffering_interval option in `kinesis_firehose_delivery_stream` ([#10112](https://github.com/hashicorp/terraform/issues/10112))
6464

6565
## 0.7.10 (November 9, 2016)
6666

terraform/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const Version = "0.7.11"
1212
// A pre-release marker for the version. If this is "" (empty string)
1313
// then it means that it is a final release. Otherwise, this is a pre-release
1414
// such as "dev" (in development), "beta", "rc1", etc.
15-
const VersionPrerelease = "dev"
15+
const VersionPrerelease = ""
1616

1717
// SemVersion is an instance of version.Version. This has the secondary
1818
// benefit of verifying during tests and init time that our version is a

website/config.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
activate :hashicorp do |h|
44
h.name = "terraform"
5-
h.version = "0.7.10"
5+
h.version = "0.7.11"
66
h.github_slug = "hashicorp/terraform"
77
end
88

0 commit comments

Comments
 (0)