|
1 | | -## 1.1.0 (Unreleased) |
| 1 | +## 1.0.3 (Unreleased) |
2 | 2 |
|
3 | | -NEW FEATURES: |
| 3 | +ENHANCEMENTS |
4 | 4 |
|
5 | | -* cli: `terraform add` generates resource configuration templates ([#28874](https://github.com/hashicorp/terraform/issues/28874)) |
6 | | -* config: a new `type()` function, only available in `terraform console` ([#28501](https://github.com/hashicorp/terraform/issues/28501)) |
| 5 | +* `terraform plan`: The JSON logs (`-json` option) will now include `resource_drift`, showing changes detected outside of Terraform during the refresh step. [GH-29072] |
| 6 | +* core: The automatic provider installer will now accept providers that are recorded in their registry as using provider protocol version 6. [GH-29153] |
| 7 | +* backend/etcdv3: New argument `max_request_bytes` allows larger requests and for the client, to match the server request limit. [GH-28078] |
| 8 | + |
| 9 | +BUG FIXES: |
| 10 | + |
| 11 | +* `terraform plan`: Will no longer panic when trying to render null maps. [GH-29207] |
| 12 | +* backend/pg: Prevent the creation of multiple workspaces with the same name. [GH-29157] |
| 13 | +* backend/oss: STS auth is now supported. [GH-29167] |
| 14 | + |
| 15 | +## 1.0.2 (July 07, 2021) |
| 16 | + |
| 17 | +BUG FIXES: |
| 18 | + |
| 19 | +* `terraform show`: Fix crash when rendering JSON plan with sensitive values in state ([#29049](https://github.com/hashicorp/terraform/issues/29049)) |
| 20 | +* config: The `floor` and `ceil` functions no longer lower the precision of arguments to what would fit inside a 64-bit float, instead preserving precision in a similar way as most other arithmetic functions. ([#29110](https://github.com/hashicorp/terraform/issues/29110)) |
| 21 | +* config: The `flatten` function was incorrectly treating null values of an unknown type as if they were unknown values. Now it will treat them the same as any other non-list/non-tuple value, flattening them down into the result as-is. ([#29110](https://github.com/hashicorp/terraform/issues/29110)) |
| 22 | + |
| 23 | +## 1.0.1 (June 24, 2021) |
7 | 24 |
|
8 | 25 | ENHANCEMENTS: |
9 | 26 |
|
10 | | -* config: Terraform now checks the syntax of and normalizes module source addresses (the `source` argument in `module` blocks) during configuration decoding rather than only at module installation time. This is largely just an internal refactoring, but a visible benefit of this change is that the `terraform init` messages about module downloading will now show the canonical module package address Terraform is downloading from, after interpreting the special shorthands for common cases like GitHub URLs. ([#28854](https://github.com/hashicorp/terraform/issues/28854)) |
| 27 | +* `terraform show`: The JSON plan output now indicates which state values are sensitive. ([#28889](https://github.com/hashicorp/terraform/issues/28889)) |
| 28 | +* cli: The macOS builds will now resolve hostnames using the system's DNS resolver, rather than the Go library's (incomplete) emulation of it. In particular, this will allow for the more complex resolver configurations often created by VPN clients on macOS, such as when a particular domain must be resolved using different nameservers while VPN connection is active. |
11 | 29 |
|
12 | 30 | BUG FIXES: |
13 | 31 |
|
14 | | -* core: Fixed an issue where provider configuration input variables were not properly merging with values in configuration ([#29000](https://github.com/hashicorp/terraform/issues/29000)) |
15 | | -* cli: Fixed a crashing bug with some edge-cases when reporting syntax errors that happen to be reported at the position of a newline. ([#29048](https://github.com/hashicorp/terraform/issues/29048)) |
| 32 | +* `terraform show`: Fix crash with deposed instances in json plan output. ([#28922](https://github.com/hashicorp/terraform/issues/28922)) |
| 33 | +* `terraform show`: Fix an issue where the JSON configuration representation was missing fully-unwrapped references. ([#28884](https://github.com/hashicorp/terraform/issues/28884)) |
| 34 | +* `terraform show`: Fix JSON plan resource drift to remove unchanged resources. ([#28975](https://github.com/hashicorp/terraform/issues/28975)) |
| 35 | +* core: Fix crash when provider modifies and unknown block during plan. ([#28941](https://github.com/hashicorp/terraform/issues/28941)) |
| 36 | +* core: Diagnostic context was missing for some errors when validating blocks. ([#28979](https://github.com/hashicorp/terraform/issues/28979)) |
| 37 | +* core: Fix crash when calling `setproduct` with unknown values. ([#28984](https://github.com/hashicorp/terraform/issues/28984)) |
| 38 | +* backend/remote: Fix faulty Terraform Cloud version check when migrating state to the remote backend with multiple local workspaces. ([#28864](https://github.com/hashicorp/terraform/issues/28864)) |
| 39 | + |
| 40 | +## 1.0.0 (June 08, 2021) |
| 41 | + |
| 42 | +Terraform v1.0 is an unusual release in that its primary focus is on stability, and it represents the culmination of several years of work in previous major releases to make sure that the Terraform language and internal architecture will be a suitable foundation for forthcoming additions that will remain backward compatible. |
| 43 | + |
| 44 | +Terraform v1.0.0 intentionally has no significant changes compared to Terraform v0.15.5. You can consider the v1.0 series as a direct continuation of the v0.15 series; we do not intend to issue any further releases in the v0.15 series, because all of the v1.0 releases will be only minor updates to address bugs. |
| 45 | + |
| 46 | +For all future minor releases with major version 1, we intend to preserve backward compatibility as described in detail in [the Terraform v1.0 Compatibility Promises](https://www.terraform.io/docs/language/v1-compatibility-promises.html). The later Terraform v1.1.0 will, therefore, be the first minor release with new features that we will implement with consideration of those promises. |
16 | 47 |
|
17 | 48 | ## Previous Releases |
18 | 49 |
|
19 | | -For information on prior major and minor releases, see their changelogs: |
| 50 | +For information on prior major releases, see their changelogs: |
20 | 51 |
|
21 | | -* [v1.0](https://github.com/hashicorp/terraform/blob/v1.0/CHANGELOG.md) |
22 | 52 | * [v0.15](https://github.com/hashicorp/terraform/blob/v0.15/CHANGELOG.md) |
23 | 53 | * [v0.14](https://github.com/hashicorp/terraform/blob/v0.14/CHANGELOG.md) |
24 | 54 | * [v0.13](https://github.com/hashicorp/terraform/blob/v0.13/CHANGELOG.md) |
|
0 commit comments