Skip to content

Commit 68e18a4

Browse files
author
Rico Huijbers
committed
v0.15.0
Bug Fixes ======== * **aws-autoscaling:** allow minSize to be set to 0 ([#1015](#1015)) ([67f7fa1](67f7fa1)) * **aws-codebuild:** correctly pass the timeout property to CFN when creating a Project. ([#1071](#1071)) ([b1322bb](b1322bb)) * **aws-codebuild:** correctly set S3 path when using it as artifact. ([#1072](#1072)) ([f32cba9](f32cba9)) * **aws-kms:** add output value when exporting an encryption key ([#1036](#1036)) ([cb490be](cb490be)) * Switch from `js-yaml` to `yaml` ([#1092](#1092)) ([0b132b5](0b132b5)) Features ======== * don't upload the same asset multiple times ([#1011](#1011)) ([35937b6](35937b6)), closes [#989](#989) * **app-delivery:** CI/CD for CDK Stacks ([#1022](#1022)) ([f2fe4e9](f2fe4e9)) * add a new construct library for ECS ([#1058](#1058)) ([ae03ddb](ae03ddb)) * **applets:** integrate into toolkit ([#1039](#1039)) ([fdabe95](fdabe95)), closes [#849](#849) [#342](#342) [#291](#291) * **aws-codecommit:** use CloudWatch Events instead of polling by default in the CodePipeline Action. ([#1026](#1026)) ([d09d30c](d09d30c)) * **aws-dynamodb:** allow specifying partition/sort keys in props ([#1054](#1054)) ([ec87331](ec87331)), closes [#1051](#1051) * **aws-ec2:** AmazonLinuxImage supports AL2 ([#1081](#1081)) ([97b57a5](97b57a5)), closes [#1062](#1062) * **aws-lambda:** high level API for event sources ([#1063](#1063)) ([1be3442](1be3442)) * **aws-sqs:** improvements to IAM grants API ([#1052](#1052)) ([6f2475e](6f2475e)) * **codepipeline/cfn:** Use fewer statements for pipeline permissions ([#1009](#1009)) ([8f4c2ab](8f4c2ab)) * **pkglint:** Make sure .snk files are ignored ([#1049](#1049)) ([53c8d76](53c8d76)), closes [#643](#643) * **toolkit:** deployment ui improvements ([#1067](#1067)) ([c832eaf](c832eaf)) * Update to CloudFormation resource specification v2.11.0 BREAKING CHANGES ======== * The ec2.Connections object has been changed to be able to manage multiple security groups. The relevant property has been changed from `securityGroup` to `securityGroups` (an array of security group objects). * **aws-codecommit:** this modifies the default behavior of the CodeCommit Action. It also changes the internal API contract between the aws-codepipeline-api module and the CodePipeline Actions in the service packages. * **applets:** The applet schema has changed to allow Multiple applets can be define in one file by structuring the files like this: * **applets:** The applet schema has changed to allow definition of multiple applets in the same file. The schema now looks like this: applets: MyApplet: type: ./my-applet-file properties: property1: value ... By starting an applet specifier with npm://, applet modules can directly be referenced in NPM. You can include a version specifier (@1.2.3) to reference specific versions. * **aws-sqs:** `queue.grantReceiveMessages` has been removed. It is unlikely that this would be sufficient to interact with a queue. Alternatively you can use `queue.grantConsumeMessages` or `queue.grant('sqs:ReceiveMessage')` if there's a need to only grant this action.
1 parent f2fe4e9 commit 68e18a4

File tree

99 files changed

+865
-806
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+865
-806
lines changed

CHANGELOG.md

+59
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,62 @@
1+
<a name="0.15.0"></a>
2+
## [0.15.0](https://github.com/awslabs/aws-cdk/compare/v0.14.1...v0.15.0) (2018-11-06)
3+
4+
### Bug Fixes
5+
6+
* **aws-autoscaling:** allow minSize to be set to 0 ([#1015](https://github.com/awslabs/aws-cdk/issues/1015)) ([67f7fa1](https://github.com/awslabs/aws-cdk/commit/67f7fa1))
7+
* **aws-codebuild:** correctly pass the timeout property to CFN when creating a Project. ([#1071](https://github.com/awslabs/aws-cdk/issues/1071)) ([b1322bb](https://github.com/awslabs/aws-cdk/commit/b1322bb))
8+
* **aws-codebuild:** correctly set S3 path when using it as artifact. ([#1072](https://github.com/awslabs/aws-cdk/issues/1072)) ([f32cba9](https://github.com/awslabs/aws-cdk/commit/f32cba9))
9+
* **aws-kms:** add output value when exporting an encryption key ([#1036](https://github.com/awslabs/aws-cdk/issues/1036)) ([cb490be](https://github.com/awslabs/aws-cdk/commit/cb490be))
10+
* Switch from `js-yaml` to `yaml` ([#1092](https://github.com/awslabs/aws-cdk/issues/1092)) ([0b132b5](https://github.com/awslabs/aws-cdk/commit/0b132b5))
11+
12+
13+
### Features
14+
15+
* don't upload the same asset multiple times ([#1011](https://github.com/awslabs/aws-cdk/issues/1011)) ([35937b6](https://github.com/awslabs/aws-cdk/commit/35937b6)), closes [#989](https://github.com/awslabs/aws-cdk/issues/989)
16+
* **app-delivery:** CI/CD for CDK Stacks ([#1022](https://github.com/awslabs/aws-cdk/issues/1022)) ([f2fe4e9](https://github.com/awslabs/aws-cdk/commit/f2fe4e9))
17+
* add a new construct library for ECS ([#1058](https://github.com/awslabs/aws-cdk/issues/1058)) ([ae03ddb](https://github.com/awslabs/aws-cdk/commit/ae03ddb))
18+
* **applets:** integrate into toolkit ([#1039](https://github.com/awslabs/aws-cdk/issues/1039)) ([fdabe95](https://github.com/awslabs/aws-cdk/commit/fdabe95)), closes [#849](https://github.com/awslabs/aws-cdk/issues/849) [#342](https://github.com/awslabs/aws-cdk/issues/342) [#291](https://github.com/awslabs/aws-cdk/issues/291)
19+
* **aws-codecommit:** use CloudWatch Events instead of polling by default in the CodePipeline Action. ([#1026](https://github.com/awslabs/aws-cdk/issues/1026)) ([d09d30c](https://github.com/awslabs/aws-cdk/commit/d09d30c))
20+
* **aws-dynamodb:** allow specifying partition/sort keys in props ([#1054](https://github.com/awslabs/aws-cdk/issues/1054)) ([ec87331](https://github.com/awslabs/aws-cdk/commit/ec87331)), closes [#1051](https://github.com/awslabs/aws-cdk/issues/1051)
21+
* **aws-ec2:** AmazonLinuxImage supports AL2 ([#1081](https://github.com/awslabs/aws-cdk/issues/1081)) ([97b57a5](https://github.com/awslabs/aws-cdk/commit/97b57a5)), closes [#1062](https://github.com/awslabs/aws-cdk/issues/1062)
22+
* **aws-lambda:** high level API for event sources ([#1063](https://github.com/awslabs/aws-cdk/issues/1063)) ([1be3442](https://github.com/awslabs/aws-cdk/commit/1be3442))
23+
* **aws-sqs:** improvements to IAM grants API ([#1052](https://github.com/awslabs/aws-cdk/issues/1052)) ([6f2475e](https://github.com/awslabs/aws-cdk/commit/6f2475e))
24+
* **codepipeline/cfn:** Use fewer statements for pipeline permissions ([#1009](https://github.com/awslabs/aws-cdk/issues/1009)) ([8f4c2ab](https://github.com/awslabs/aws-cdk/commit/8f4c2ab))
25+
* **pkglint:** Make sure .snk files are ignored ([#1049](https://github.com/awslabs/aws-cdk/issues/1049)) ([53c8d76](https://github.com/awslabs/aws-cdk/commit/53c8d76)), closes [#643](https://github.com/awslabs/aws-cdk/issues/643)
26+
* **toolkit:** deployment ui improvements ([#1067](https://github.com/awslabs/aws-cdk/issues/1067)) ([c832eaf](https://github.com/awslabs/aws-cdk/commit/c832eaf))
27+
* Update to CloudFormation resource specification v2.11.0
28+
29+
30+
### BREAKING CHANGES
31+
32+
* The ec2.Connections object has been changed to be able to manage multiple
33+
security groups. The relevant property has been changed from `securityGroup`
34+
to `securityGroups` (an array of security group objects).
35+
* **aws-codecommit:** this modifies the default behavior of the CodeCommit
36+
Action. It also changes the internal API contract between the
37+
aws-codepipeline-api module and the CodePipeline Actions in the service
38+
packages.
39+
* **applets:** The applet schema has changed to allow Multiple applets can be
40+
define in one file by structuring the files like this:
41+
* **applets:** The applet schema has changed to allow definition of multiple
42+
applets in the same file.
43+
44+
The schema now looks like this:
45+
46+
applets:
47+
MyApplet:
48+
type: ./my-applet-file
49+
properties:
50+
property1: value
51+
...
52+
By starting an applet specifier with npm://, applet modules can directly be
53+
referenced in NPM. You can include a version specifier (@1.2.3) to reference
54+
specific versions.
55+
* **aws-sqs:** `queue.grantReceiveMessages` has been removed. It is unlikely
56+
that this would be sufficient to interact with a queue. Alternatively you can
57+
use `queue.grantConsumeMessages` or `queue.grant('sqs:ReceiveMessage')` if
58+
there's a need to only grant this action.
59+
160
<a name="0.14.1"></a>
261
## [0.14.1](https://github.com/awslabs/aws-cdk/compare/v0.14.0...v0.14.1) (2018-10-26)
362

examples/cdk-examples-java/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cdk-examples-java",
3-
"version": "0.14.1",
3+
"version": "0.15.0",
44
"description": "CDK examples in Java",
55
"private": true,
66
"repository": {
@@ -22,7 +22,7 @@
2222
},
2323
"license": "Apache-2.0",
2424
"devDependencies": {
25-
"aws-cdk": "^0.14.1",
26-
"pkgtools": "^0.14.1"
25+
"aws-cdk": "^0.15.0",
26+
"pkgtools": "^0.15.0"
2727
}
2828
}

examples/cdk-examples-typescript/package.json

+21-21
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cdk-examples-typescript",
3-
"version": "0.14.1",
3+
"version": "0.15.0",
44
"description": "A bunch of CDK examples",
55
"private": true,
66
"scripts": {
@@ -18,28 +18,28 @@
1818
},
1919
"license": "Apache-2.0",
2020
"devDependencies": {
21-
"aws-cdk": "^0.14.1",
22-
"cdk-build-tools": "^0.14.1",
23-
"pkglint": "^0.14.1"
21+
"aws-cdk": "^0.15.0",
22+
"cdk-build-tools": "^0.15.0",
23+
"pkglint": "^0.15.0"
2424
},
2525
"dependencies": {
26-
"@aws-cdk/aws-autoscaling": "^0.14.1",
27-
"@aws-cdk/aws-cloudformation": "^0.14.1",
28-
"@aws-cdk/aws-cognito": "^0.14.1",
29-
"@aws-cdk/aws-dynamodb": "^0.14.1",
30-
"@aws-cdk/aws-ec2": "^0.14.1",
31-
"@aws-cdk/aws-ecs": "^0.14.1",
32-
"@aws-cdk/aws-elasticloadbalancing": "^0.14.1",
33-
"@aws-cdk/aws-elasticloadbalancingv2": "^0.14.1",
34-
"@aws-cdk/aws-iam": "^0.14.1",
35-
"@aws-cdk/aws-lambda": "^0.14.1",
36-
"@aws-cdk/aws-neptune": "^0.14.1",
37-
"@aws-cdk/aws-rds": "^0.14.1",
38-
"@aws-cdk/aws-s3": "^0.14.1",
39-
"@aws-cdk/aws-sns": "^0.14.1",
40-
"@aws-cdk/aws-sqs": "^0.14.1",
41-
"@aws-cdk/cdk": "^0.14.1",
42-
"@aws-cdk/runtime-values": "^0.14.1"
26+
"@aws-cdk/aws-autoscaling": "^0.15.0",
27+
"@aws-cdk/aws-cloudformation": "^0.15.0",
28+
"@aws-cdk/aws-cognito": "^0.15.0",
29+
"@aws-cdk/aws-dynamodb": "^0.15.0",
30+
"@aws-cdk/aws-ec2": "^0.15.0",
31+
"@aws-cdk/aws-ecs": "^0.15.0",
32+
"@aws-cdk/aws-elasticloadbalancing": "^0.15.0",
33+
"@aws-cdk/aws-elasticloadbalancingv2": "^0.15.0",
34+
"@aws-cdk/aws-iam": "^0.15.0",
35+
"@aws-cdk/aws-lambda": "^0.15.0",
36+
"@aws-cdk/aws-neptune": "^0.15.0",
37+
"@aws-cdk/aws-rds": "^0.15.0",
38+
"@aws-cdk/aws-s3": "^0.15.0",
39+
"@aws-cdk/aws-sns": "^0.15.0",
40+
"@aws-cdk/aws-sqs": "^0.15.0",
41+
"@aws-cdk/cdk": "^0.15.0",
42+
"@aws-cdk/runtime-values": "^0.15.0"
4343
},
4444
"repository": {
4545
"url": "https://github.com/awslabs/aws-cdk.git",

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
}
1515
},
1616
"rejectCycles": "true",
17-
"version": "0.14.1"
17+
"version": "0.15.0"
1818
}

packages/@aws-cdk/app-delivery/package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-cdk/app-delivery",
33
"description": "Continuous Integration / Continuous Delivery for CDK Applications",
4-
"version": "0.14.1",
4+
"version": "0.15.0",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
77
"jsii": {
@@ -32,19 +32,19 @@
3232
"integ": "cdk-integ"
3333
},
3434
"dependencies": {
35-
"@aws-cdk/aws-cloudformation": "^0.14.1",
36-
"@aws-cdk/aws-codebuild": "^0.14.1",
37-
"@aws-cdk/aws-codepipeline-api": "^0.14.1",
38-
"@aws-cdk/cdk": "^0.14.1",
39-
"@aws-cdk/cx-api": "^0.14.1"
35+
"@aws-cdk/aws-cloudformation": "^0.15.0",
36+
"@aws-cdk/aws-codebuild": "^0.15.0",
37+
"@aws-cdk/aws-codepipeline-api": "^0.15.0",
38+
"@aws-cdk/cdk": "^0.15.0",
39+
"@aws-cdk/cx-api": "^0.15.0"
4040
},
4141
"devDependencies": {
42-
"@aws-cdk/aws-codepipeline": "^0.14.1",
43-
"@aws-cdk/aws-s3": "^0.14.1",
44-
"cdk-build-tools": "^0.14.1",
45-
"cdk-integ-tools": "^0.14.1",
42+
"@aws-cdk/aws-codepipeline": "^0.15.0",
43+
"@aws-cdk/aws-s3": "^0.15.0",
44+
"cdk-build-tools": "^0.15.0",
45+
"cdk-integ-tools": "^0.15.0",
4646
"fast-check": "^1.7.0",
47-
"pkglint": "^0.14.1"
47+
"pkglint": "^0.15.0"
4848
},
4949
"repository": {
5050
"type": "git",

packages/@aws-cdk/applet-js/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-cdk/applet-js",
3-
"version": "0.14.1",
3+
"version": "0.15.0",
44
"description": "Javascript CDK applet host program",
55
"main": "bin/cdk-applet-js.js",
66
"types": "bin/cdk-applet-js.d.ts",
@@ -24,11 +24,11 @@
2424
"devDependencies": {
2525
"@types/fs-extra": "^5.0.4",
2626
"@types/yaml": "^1.0.0",
27-
"cdk-build-tools": "^0.14.1",
28-
"pkglint": "^0.14.1"
27+
"cdk-build-tools": "^0.15.0",
28+
"pkglint": "^0.15.0"
2929
},
3030
"dependencies": {
31-
"@aws-cdk/cdk": "^0.14.1",
31+
"@aws-cdk/cdk": "^0.15.0",
3232
"fs-extra": "^7.0.0",
3333
"source-map-support": "^0.5.6",
3434
"yaml": "^1.0.0"

packages/@aws-cdk/assert/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-cdk/assert",
3-
"version": "0.14.1",
3+
"version": "0.15.0",
44
"description": "An assertion library for use with CDK Apps",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -23,13 +23,13 @@
2323
},
2424
"license": "Apache-2.0",
2525
"devDependencies": {
26-
"cdk-build-tools": "^0.14.1",
27-
"pkglint": "^0.14.1"
26+
"cdk-build-tools": "^0.15.0",
27+
"pkglint": "^0.15.0"
2828
},
2929
"dependencies": {
30-
"@aws-cdk/cdk": "^0.14.1",
31-
"@aws-cdk/cloudformation-diff": "^0.14.1",
32-
"@aws-cdk/cx-api": "^0.14.1",
30+
"@aws-cdk/cdk": "^0.15.0",
31+
"@aws-cdk/cloudformation-diff": "^0.15.0",
32+
"@aws-cdk/cx-api": "^0.15.0",
3333
"source-map-support": "^0.5.6"
3434
},
3535
"repository": {

packages/@aws-cdk/assets/package.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-cdk/assets",
3-
"version": "0.14.1",
3+
"version": "0.15.0",
44
"description": "Integration of CDK apps with local assets",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -49,22 +49,22 @@
4949
},
5050
"license": "Apache-2.0",
5151
"devDependencies": {
52-
"@aws-cdk/assert": "^0.14.1",
53-
"aws-cdk": "^0.14.1",
54-
"cdk-build-tools": "^0.14.1",
55-
"cdk-integ-tools": "^0.14.1",
56-
"pkglint": "^0.14.1"
52+
"@aws-cdk/assert": "^0.15.0",
53+
"aws-cdk": "^0.15.0",
54+
"cdk-build-tools": "^0.15.0",
55+
"cdk-integ-tools": "^0.15.0",
56+
"pkglint": "^0.15.0"
5757
},
5858
"dependencies": {
59-
"@aws-cdk/aws-iam": "^0.14.1",
60-
"@aws-cdk/aws-s3": "^0.14.1",
61-
"@aws-cdk/cdk": "^0.14.1",
62-
"@aws-cdk/cx-api": "^0.14.1"
59+
"@aws-cdk/aws-iam": "^0.15.0",
60+
"@aws-cdk/aws-s3": "^0.15.0",
61+
"@aws-cdk/cdk": "^0.15.0",
62+
"@aws-cdk/cx-api": "^0.15.0"
6363
},
6464
"homepage": "https://github.com/awslabs/aws-cdk",
6565
"peerDependencies": {
66-
"@aws-cdk/cdk": "^0.14.1",
6766
"@aws-cdk/aws-iam": "^0.14.1",
68-
"@aws-cdk/aws-s3": "^0.14.1"
67+
"@aws-cdk/aws-s3": "^0.14.1",
68+
"@aws-cdk/cdk": "^0.14.1"
6969
}
7070
}

packages/@aws-cdk/aws-amazonmq/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-cdk/aws-amazonmq",
3-
"version": "0.14.1",
3+
"version": "0.15.0",
44
"description": "The CDK Construct Library for AWS::AmazonMQ",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -53,13 +53,13 @@
5353
},
5454
"license": "Apache-2.0",
5555
"devDependencies": {
56-
"@aws-cdk/assert": "^0.14.1",
57-
"cdk-build-tools": "^0.14.1",
58-
"cfn2ts": "^0.14.1",
59-
"pkglint": "^0.14.1"
56+
"@aws-cdk/assert": "^0.15.0",
57+
"cdk-build-tools": "^0.15.0",
58+
"cfn2ts": "^0.15.0",
59+
"pkglint": "^0.15.0"
6060
},
6161
"dependencies": {
62-
"@aws-cdk/cdk": "^0.14.1"
62+
"@aws-cdk/cdk": "^0.15.0"
6363
},
6464
"peerDependencies": {
6565
"@aws-cdk/cdk": "^0.14.1"

packages/@aws-cdk/aws-apigateway/package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-cdk/aws-apigateway",
3-
"version": "0.14.1",
3+
"version": "0.15.0",
44
"description": "The CDK Construct Library for AWS::ApiGateway",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -52,21 +52,21 @@
5252
},
5353
"license": "Apache-2.0",
5454
"devDependencies": {
55-
"@aws-cdk/assert": "^0.14.1",
56-
"cdk-build-tools": "^0.14.1",
57-
"cdk-integ-tools": "^0.14.1",
58-
"cfn2ts": "^0.14.1",
59-
"pkglint": "^0.14.1"
55+
"@aws-cdk/assert": "^0.15.0",
56+
"cdk-build-tools": "^0.15.0",
57+
"cdk-integ-tools": "^0.15.0",
58+
"cfn2ts": "^0.15.0",
59+
"pkglint": "^0.15.0"
6060
},
6161
"dependencies": {
62-
"@aws-cdk/aws-iam": "^0.14.1",
63-
"@aws-cdk/aws-lambda": "^0.14.1",
64-
"@aws-cdk/cdk": "^0.14.1"
62+
"@aws-cdk/aws-iam": "^0.15.0",
63+
"@aws-cdk/aws-lambda": "^0.15.0",
64+
"@aws-cdk/cdk": "^0.15.0"
6565
},
6666
"homepage": "https://github.com/awslabs/aws-cdk",
6767
"peerDependencies": {
68-
"@aws-cdk/cdk": "^0.14.1",
6968
"@aws-cdk/aws-iam": "^0.14.1",
70-
"@aws-cdk/aws-lambda": "^0.14.1"
69+
"@aws-cdk/aws-lambda": "^0.14.1",
70+
"@aws-cdk/cdk": "^0.14.1"
7171
}
7272
}

packages/@aws-cdk/aws-applicationautoscaling/package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-cdk/aws-applicationautoscaling",
3-
"version": "0.14.1",
3+
"version": "0.15.0",
44
"description": "The CDK Construct Library for AWS::ApplicationAutoScaling",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -52,21 +52,21 @@
5252
},
5353
"license": "Apache-2.0",
5454
"devDependencies": {
55-
"@aws-cdk/assert": "^0.14.1",
56-
"cdk-build-tools": "^0.14.1",
57-
"cfn2ts": "^0.14.1",
55+
"@aws-cdk/assert": "^0.15.0",
56+
"cdk-build-tools": "^0.15.0",
57+
"cfn2ts": "^0.15.0",
5858
"fast-check": "^1.6.1",
59-
"pkglint": "^0.14.1"
59+
"pkglint": "^0.15.0"
6060
},
6161
"dependencies": {
62-
"@aws-cdk/aws-cloudwatch": "^0.14.1",
63-
"@aws-cdk/aws-iam": "^0.14.1",
64-
"@aws-cdk/cdk": "^0.14.1"
62+
"@aws-cdk/aws-cloudwatch": "^0.15.0",
63+
"@aws-cdk/aws-iam": "^0.15.0",
64+
"@aws-cdk/cdk": "^0.15.0"
6565
},
6666
"homepage": "https://github.com/awslabs/aws-cdk",
6767
"peerDependencies": {
68-
"@aws-cdk/cdk": "^0.14.1",
68+
"@aws-cdk/aws-cloudwatch": "^0.14.1",
6969
"@aws-cdk/aws-iam": "^0.14.1",
70-
"@aws-cdk/aws-cloudwatch": "^0.14.1"
70+
"@aws-cdk/cdk": "^0.14.1"
7171
}
7272
}

0 commit comments

Comments
 (0)