From 57518af2c6481866d2f42a6de3bdbfddde36b878 Mon Sep 17 00:00:00 2001 From: Daniel Schmidt Date: Thu, 27 May 2021 17:05:03 +0200 Subject: [PATCH 1/2] chore: release 0.4.0 --- CHANGELOG.md | 25 ++++++++++++++++++++++++- package.json | 2 +- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6920cbc199..a1b8b93bdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +## 0.4.0 (May 27, 2021) + +**Implemented enhancements** + +- Experimental Go Support [\#686](https://github.com/hashicorp/terraform-cdk/pull/686) +- Add Asset Construct [\#698](https://github.com/hashicorp/terraform-cdk/pull/698) +- Support sensitive variables [\#701](https://github.com/hashicorp/terraform-cdk/pull/701) +- Update python templates to use RemoteBackend construct [\#644](https://github.com/hashicorp/terraform-cdk/pull/644) & [\#669](https://github.com/hashicorp/terraform-cdk/pull/669) +- UX: Explain how to specify a stack in the error message [\#689](https://github.com/hashicorp/terraform-cdk/pull/689) +- Terraform Cloud: Output uses attribute name instead of id [\#717](https://github.com/hashicorp/terraform-cdk/pull/717) +- Terraform Cloud: Stream resource updates [\#712](https://github.com/hashicorp/terraform-cdk/pull/712) + +**Fixed Bugs** + +- Return non-zero exit code on unknown command and allow terraform-like command names [\#680](https://github.com/hashicorp/terraform-cdk/pull/680) +- Add cdktf.log to .gitignore of built-in templates [\#662](https://github.com/hashicorp/terraform-cdk/pull/662) +- Fix elasticsearch index resource [\#681](https://github.com/hashicorp/terraform-cdk/pull/681) +- Fix gitignore after init [\#691](https://github.com/hashicorp/terraform-cdk/pull/691) +- Deploy changes on TF output changes [\#687](https://github.com/hashicorp/terraform-cdk/pull/687) +- Fix: Unable to use resources containing an argument named 'stack' [\#716](https://github.com/hashicorp/terraform-cdk/pull/716) +- OCI Synth issues: "module has already exported a member" [\#713](https://github.com/hashicorp/terraform-cdk/pull/713) +- Adapt to changed output format in Terraform 0.15.4 [\#736](https://github.com/hashicorp/terraform-cdk/pull/736) + ## 0.3.0 (April 21, 2021) **Breaking Changes** @@ -6,7 +29,7 @@ We're now supporting multiple Stacks! - existing Terraform state files from **lo Up until CDK for Terraform version `0.2` only a single stack was supported. For local state handling, a `terraform.tfstate` file in the project root folder was used. With version `0.3.0` the local state file reflects the stack name it belongs to in its file name. When a `terraform.tfstate` file is still present in the project root folder, it has to be renamed to match the schema `terraform..tfstate` manually. -**Implemented enhancements:** +**Implemented enhancements** - Add support for remote templates [\#645](https://github.com/hashicorp/terraform-cdk/pull/645) - Handle Multiple Stacks [\#636](https://github.com/hashicorp/terraform-cdk/pull/636) diff --git a/package.json b/package.json index 0064abd740..5d8306120b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "root", - "version": "0.3.0", + "version": "0.4.0", "private": true, "scripts": { "build": "lerna run --scope cdktf* --scope @cdktf/* build", From 8a4f98e251a2f56106337433d8f9f4402da75f12 Mon Sep 17 00:00:00 2001 From: Sebastian Korfmann Date: Thu, 27 May 2021 18:18:51 +0200 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1b8b93bdf..58843cf4dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ - UX: Explain how to specify a stack in the error message [\#689](https://github.com/hashicorp/terraform-cdk/pull/689) - Terraform Cloud: Output uses attribute name instead of id [\#717](https://github.com/hashicorp/terraform-cdk/pull/717) - Terraform Cloud: Stream resource updates [\#712](https://github.com/hashicorp/terraform-cdk/pull/712) +- Add JSDoc links to Terraform Registry docs when generating providers [\#576](https://github.com/hashicorp/terraform-cdk/pull/576) **Fixed Bugs**