Skip to content

Commit

Permalink
chore!: upgrade to cdktf 0.19.0 (#13)
Browse files Browse the repository at this point in the history
This PR initiates the upgrade of CDKTF from version `0.18.0` to version
`0.19.0`.
Unfortunately, not everything can be automated, and the following steps
need to be completed manually:
 
- [x] Update `@cdktf/provider-null` to a version compatible with
`cdktf@0.19.0`
[here](https://github.com/cdktf/construct-projen-template/blob/d62067602139725e957e516ef41d94c384af731a/.projenrc.ts#L84).
Look up the version
[here](https://github.com/cdktf/cdktf-provider-null/releases/).
- [x] Run `npx projen`
 
Please checkout this PR, complete the above steps, push the changes to
this branch, and then mark this PR as ready for review to complete the
upgrade. Thanks!

---------

Signed-off-by: team-tf-cdk <github-team-tf-cdk@hashicorp.com>
Co-authored-by: Daniel Schmidt <danielmschmidt92@gmail.com>
  • Loading branch information
team-tf-cdk and DanielMSchmidt authored Oct 18, 2023
1 parent 2c02f4a commit 7dd9bc5
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 19 deletions.
4 changes: 2 additions & 2 deletions .projen/deps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ const project = new cdktf.ConstructLibraryCdktf({
// moduleName: `github.com/cdktf/${shortName}-go`,
// packageName: shortName.replace(/-/g, ""),
// },
cdktfVersion: "^0.18.0",
cdktfVersion: "0.19.0",
jsiiVersion: "^5.1.0",
minNodeVersion: "18.12.0",
});

project.addPeerDeps(
"cdktf@>=0.18.0",
"@cdktf/provider-null@>=8.0.0",
"cdktf@>=0.19.0",
"@cdktf/provider-null@>=9.0.0",
"constructs@^10.0.25"
);
project.addDevDeps(
Expand Down
13 changes: 12 additions & 1 deletion API.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A projen template for CDKTF constructs authored by HashiCorp (internal use only)
## Compatibility

- `node` >= 18.12.0
- `cdktf` >= 0.18.0
- `cdktf` >= 0.19.0
- `constructs` >= 10.0.25

## How to Use
Expand Down
8 changes: 4 additions & 4 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions yarn.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7dd9bc5

Please sign in to comment.