Skip to content

Commit 157b290

Browse files
chore: release 0.20.6
1 parent af6d921 commit 157b290

File tree

2 files changed

+26
-13
lines changed

2 files changed

+26
-13
lines changed

CHANGELOG.md

+23-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## 0.20.6
2+
3+
### fix
4+
5+
- fix(lib): Correctly render string tokens that contain plain objects [\#3545](https://github.com/hashicorp/terraform-cdk/pull/3545)
6+
- fix: hcl rendering nested maps [\#3536](https://github.com/hashicorp/terraform-cdk/pull/3536)
7+
- fix(docs): Italics broken [\#3490](https://github.com/hashicorp/terraform-cdk/pull/3490)
8+
9+
### chore
10+
11+
- chore: fix typo [\#3553](https://github.com/hashicorp/terraform-cdk/pull/3553)
12+
- chore: add separate workflow for JSII upgrades [\#3552](https://github.com/hashicorp/terraform-cdk/pull/3552)
13+
- chore(deps): pin trusted workflows based on HashiCorp TSCCR [\#3549](https://github.com/hashicorp/terraform-cdk/pull/3549)
14+
- chore: Upgrade dependencies for util [\#3548](https://github.com/hashicorp/terraform-cdk/pull/3548)
15+
- chore: Upgrade dependencies for util [\#3543](https://github.com/hashicorp/terraform-cdk/pull/3543)
16+
- chore(deps): pin trusted workflows based on HashiCorp TSCCR [\#3534](https://github.com/hashicorp/terraform-cdk/pull/3534)
17+
- chore: Upgrade dependencies for util [\#3533](https://github.com/hashicorp/terraform-cdk/pull/3533)
18+
- chore: run doc conversions on one runner [\#3522](https://github.com/hashicorp/terraform-cdk/pull/3522)
19+
- chore: Upgrade dependencies for cli [\#3517](https://github.com/hashicorp/terraform-cdk/pull/3517)
20+
- chore: Upgrade dependencies for lib [\#3516](https://github.com/hashicorp/terraform-cdk/pull/3516)
21+
- chore: update-project-board-issue calls different repo [\#3513](https://github.com/hashicorp/terraform-cdk/pull/3513)
22+
123
## 0.20.5
224

325
### fix
@@ -104,7 +126,7 @@
104126

105127
**AWS Provider changes (breaking)**
106128

107-
The AWS pre-built provider for Go is currently too large to be installed due to a hard limit in Go. This release adds skipping the `statement` block in the `rule` block of the `aws_wafv2_web_acl` and `aws_wafv2_rule_group` resources. Our [resource docs page](https://developer.hashicorp.com/terraform/cdktf/concepts/resources#special-cases) previously already mentioned that these resources have skipped attributes but they weren't actually skipped. This almost doubled AWS provider bindings in size due to the recursive nature of the `statement` block.
129+
The AWS pre-built provider for Go is currently too large to be installed due to a hard limit in Go. This release adds skipping the `statement` block in the `rule` block of the `aws_wafv2_web_acl` and `aws_wafv2_rule_group` resources. Our [resource docs page](https://developer.hashicorp.com/terraform/cdktf/concepts/resources#special-cases) previously already mentioned that these resources have skipped attributes but they weren't actually skipped. This almost doubled AWS provider bindings in size due to the recursive nature of the `statement` block.
108130
If you are using any of these two resources, the `statement` now has to be passed as a plain object instead and its keys have to be snake-cased (e.g. `and_statement` or `regex_match_statement`).
109131

110132
### feat

package.json

+3-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "root",
3-
"version": "0.20.5",
3+
"version": "0.20.6",
44
"private": true,
55
"scripts": {
66
"build-and-package": "lerna run --scope 'cdktf*' --scope @cdktf/* build,package && tools/collect-dist.sh",
@@ -98,10 +98,7 @@
9898
},
9999
"eslintConfig": {
100100
"parser": "@typescript-eslint/parser",
101-
"plugins": [
102-
"@typescript-eslint",
103-
"monorepo"
104-
],
101+
"plugins": ["@typescript-eslint", "monorepo"],
105102
"settings": {
106103
"react": {
107104
"version": "detect"
@@ -110,12 +107,6 @@
110107
"rules": {
111108
"monorepo/no-relative-import": "error"
112109
},
113-
"ignorePatterns": [
114-
"node_modules",
115-
"dist",
116-
"coverage",
117-
"*.d.ts",
118-
"*.js"
119-
]
110+
"ignorePatterns": ["node_modules", "dist", "coverage", "*.d.ts", "*.js"]
120111
}
121112
}

0 commit comments

Comments
 (0)