Skip to content
This repository was archived by the owner on Dec 10, 2025. It is now read-only.

Commit efe216f

Browse files
chore: release 0.20.6
1 parent af6d921 commit efe216f

File tree

2 files changed

+27
-13
lines changed

2 files changed

+27
-13
lines changed

CHANGELOG.md

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

326
### fix
@@ -104,7 +127,7 @@
104127

105128
**AWS Provider changes (breaking)**
106129

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.
130+
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.
108131
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`).
109132

110133
### feat

package.json

Lines changed: 3 additions & 12 deletions
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)