Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ $ awslocal sns list-topics

## Change Log

* 3.0.3: Add missing `semver` dependency
* 3.0.2: Add support for `aws-cdk` versions after 2026-03-01 (see https://github.com/aws/aws-cdk-cli/issues/310)
* 3.0.1: Using the `-v`/`--version` flag prints the cdklocal version and the version of the underlying `aws-cdk` package (if possible)
* 3.0.0: Sanitise environment of configuration environment variables before deployment
Expand Down
139 changes: 65 additions & 74 deletions package-lock.json

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

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "aws-cdk-local",
"description": "CDK Toolkit for use with LocalStack",
"version": "3.0.2",
"version": "3.0.3",
"main": "src/index.js",
"bin": {
"cdklocal": "bin/cdklocal"
Expand All @@ -18,7 +18,8 @@
},
"license": "Apache-2.0",
"dependencies": {
"diff": "^5.0.0"
"diff": "^5.0.0",
"semver": "^7.7.4"
},
"devDependencies": {
"aws-cdk": "^2.1113.0",
Expand Down
Loading