Skip to content
This repository has been archived by the owner on May 18, 2023. It is now read-only.

Commit

Permalink
Update CDK version to 1.67.0 (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
frikille authored Oct 9, 2020
1 parent 7b3b263 commit 2308366
Show file tree
Hide file tree
Showing 6 changed files with 956 additions and 1,872 deletions.
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Mira consists of the following built-ins:
* An opinionated set of AWS CDK aspects, e.g. IAM Policy validator.
* Complementary sample applications e.g. a simple S3-based web hosting app.

__Note: Currently supported version of the AWS CDK is: *[1.61.1](https://github.com/aws/aws-cdk/releases/tag/v1.61.1)*.__
__Note: Currently supported version of the AWS CDK is: *[1.67.0](https://github.com/aws/aws-cdk/releases/tag/v1.67.0)*.__

Please make sure your application depends on that exact version of the CDK.

Expand Down
16 changes: 8 additions & 8 deletions docs/quick-start/new-project/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ Next, install Mira, the AWS CDK and other dependencies. Edit your `package.json`

```json
"dependencies": {
"@aws-cdk/aws-cloudformation": "1.61.1",
"@aws-cdk/aws-lambda-event-sources": "1.61.1",
"@aws-cdk/aws-rds": "1.61.1",
"@aws-cdk/aws-s3-deployment": "1.61.1",
"@aws-cdk/aws-secretsmanager": "1.61.1",
"@aws-cdk/core": "1.61.1",
"aws-cdk": "1.61.1",
"@aws-cdk/aws-cloudformation": "1.67.0",
"@aws-cdk/aws-lambda-event-sources": "1.67.0",
"@aws-cdk/aws-rds": "1.67.0",
"@aws-cdk/aws-s3-deployment": "1.67.0",
"@aws-cdk/aws-secretsmanager": "1.67.0",
"@aws-cdk/core": "1.67.0",
"aws-cdk": "1.67.0",
"mira": "^1.3.0"
}
```
Note: Use the same version of the CDK for every additional library you choose. At the time of writing, Mira 1.3.0 supports the 1.61.1 version of the CDK.
Note: Use the same version of the CDK for every additional library you choose. At the time of writing, Mira 1.3.0 supports the 1.67.0 version of the CDK.

Run `npm install`.

Expand Down
42 changes: 21 additions & 21 deletions docs/working-with-mira/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,27 +69,27 @@ Typical issues includes:
Keep in mind, AWS CDK requires all the modules to be the same version.
```json
{
"aws-cdk": "1.61.1",
"@aws-cdk/aws-cloudformation": "1.61.1",
"@aws-cdk/aws-codebuild": "1.61.1",
"@aws-cdk/aws-codecommit": "1.61.1",
"@aws-cdk/aws-codepipeline": "1.61.1",
"@aws-cdk/aws-codepipeline-actions": "1.61.1",
"@aws-cdk/aws-iam": "1.61.1",
"@aws-cdk/aws-lambda-event-sources": "1.61.1",
"@aws-cdk/aws-lambda": "1.61.1",
"@aws-cdk/aws-s3-assets": "1.61.1",
"@aws-cdk/aws-secretsmanager": "1.61.1",
"@aws-cdk/custom-resources": "1.61.1",
"@aws-cdk/aws-sns": "1.61.1",
"@aws-cdk/aws-s3": "1.61.1",
"@aws-cdk/aws-sqs": "1.61.1",
"@aws-cdk/assets": "1.61.1",
"@aws-cdk/aws-kms": "1.61.1",
"@aws-cdk/aws-ec2": "1.61.1",
"@aws-cdk/aws-rds": "1.61.1",
"@aws-cdk/aws-ssm": "1.61.1",
"@aws-cdk/core": "1.61.1"
"aws-cdk": "1.67.0",
"@aws-cdk/aws-cloudformation": "1.67.0",
"@aws-cdk/aws-codebuild": "1.67.0",
"@aws-cdk/aws-codecommit": "1.67.0",
"@aws-cdk/aws-codepipeline": "1.67.0",
"@aws-cdk/aws-codepipeline-actions": "1.67.0",
"@aws-cdk/aws-iam": "1.67.0",
"@aws-cdk/aws-lambda-event-sources": "1.67.0",
"@aws-cdk/aws-lambda": "1.67.0",
"@aws-cdk/aws-s3-assets": "1.67.0",
"@aws-cdk/aws-secretsmanager": "1.67.0",
"@aws-cdk/custom-resources": "1.67.0",
"@aws-cdk/aws-sns": "1.67.0",
"@aws-cdk/aws-s3": "1.67.0",
"@aws-cdk/aws-sqs": "1.67.0",
"@aws-cdk/assets": "1.67.0",
"@aws-cdk/aws-kms": "1.67.0",
"@aws-cdk/aws-ec2": "1.67.0",
"@aws-cdk/aws-rds": "1.67.0",
"@aws-cdk/aws-ssm": "1.67.0",
"@aws-cdk/core": "1.67.0"
}
```

Expand Down
Loading

0 comments on commit 2308366

Please sign in to comment.