Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into tls-for-lb-fargat…
Browse files Browse the repository at this point in the history
…e-svc
  • Loading branch information
clareliguori committed Nov 12, 2018
2 parents da61dca + fbb091a commit cd2ecf4
Show file tree
Hide file tree
Showing 101 changed files with 1,034 additions and 985 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
<a name="0.16.0"></a>
## [0.16.0](https://github.com/awslabs/aws-cdk/compare/v0.15.2...v0.16.0) (2018-11-12)

### Bug Fixes

* **aws-elasticloadbalancingv2:** listener dependency ([#1146](https://github.com/awslabs/aws-cdk/issues/1146)) ([e9d3d93](https://github.com/awslabs/aws-cdk/commit/e9d3d93)), closes [#1139](https://github.com/awslabs/aws-cdk/issues/1139)
* **aws-elasticloadbalancingv2:** unhealthy threshold ([#1145](https://github.com/awslabs/aws-cdk/issues/1145)) ([a70a50d](https://github.com/awslabs/aws-cdk/commit/a70a50d))


### Features

* **aws-codedeploy:** CodeDeploy Pipeline Action using the L2 DeploymentGroup Construct. ([#1085](https://github.com/awslabs/aws-cdk/issues/1085)) ([ce999b6](https://github.com/awslabs/aws-cdk/commit/ce999b6))
* **aws-route53:** route53 Alias record support ([#1131](https://github.com/awslabs/aws-cdk/issues/1131)) ([72f0124](https://github.com/awslabs/aws-cdk/commit/72f0124))
* **cdk:** allow Tokens to be encoded as lists ([#1144](https://github.com/awslabs/aws-cdk/issues/1144)) ([cd7947c](https://github.com/awslabs/aws-cdk/commit/cd7947c)), closes [#744](https://github.com/awslabs/aws-cdk/issues/744)


### BREAKING CHANGES

* **aws-codedeploy:** this changes the API of the CodeDeploy Pipeline Action
to take the DeploymentGroup AWS Construct as an argument instead of the names
of the Application and Deployment Group.



<a name="0.15.2"></a>
## [0.15.2](https://github.com/awslabs/aws-cdk/compare/v0.15.1...v0.15.2) (2018-11-08)

Expand Down
5 changes: 5 additions & 0 deletions bump.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@ fi

/bin/bash ./install.sh


lerna publish --force-publish=* --skip-npm --skip-git --repo-version ${ver}

# align "peerDependencies" to actual dependencies after bump
# this is technically only required for major version bumps, but in the meantime we shall do it in every bump
/bin/bash scripts/fix-peer-deps.sh

# Update CHANGELOG.md only at the root
cat > /tmp/context.json <<HERE
{
Expand Down
6 changes: 3 additions & 3 deletions examples/cdk-examples-java/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cdk-examples-java",
"version": "0.15.2",
"version": "0.16.0",
"description": "CDK examples in Java",
"private": true,
"repository": {
Expand All @@ -22,7 +22,7 @@
},
"license": "Apache-2.0",
"devDependencies": {
"aws-cdk": "^0.15.2",
"pkgtools": "^0.15.2"
"aws-cdk": "^0.16.0",
"pkgtools": "^0.16.0"
}
}
42 changes: 21 additions & 21 deletions examples/cdk-examples-typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cdk-examples-typescript",
"version": "0.15.2",
"version": "0.16.0",
"description": "A bunch of CDK examples",
"private": true,
"scripts": {
Expand All @@ -18,28 +18,28 @@
},
"license": "Apache-2.0",
"devDependencies": {
"aws-cdk": "^0.15.2",
"cdk-build-tools": "^0.15.2",
"pkglint": "^0.15.2"
"aws-cdk": "^0.16.0",
"cdk-build-tools": "^0.16.0",
"pkglint": "^0.16.0"
},
"dependencies": {
"@aws-cdk/aws-autoscaling": "^0.15.2",
"@aws-cdk/aws-cloudformation": "^0.15.2",
"@aws-cdk/aws-cognito": "^0.15.2",
"@aws-cdk/aws-dynamodb": "^0.15.2",
"@aws-cdk/aws-ec2": "^0.15.2",
"@aws-cdk/aws-ecs": "^0.15.2",
"@aws-cdk/aws-elasticloadbalancing": "^0.15.2",
"@aws-cdk/aws-elasticloadbalancingv2": "^0.15.2",
"@aws-cdk/aws-iam": "^0.15.2",
"@aws-cdk/aws-lambda": "^0.15.2",
"@aws-cdk/aws-neptune": "^0.15.2",
"@aws-cdk/aws-rds": "^0.15.2",
"@aws-cdk/aws-s3": "^0.15.2",
"@aws-cdk/aws-sns": "^0.15.2",
"@aws-cdk/aws-sqs": "^0.15.2",
"@aws-cdk/cdk": "^0.15.2",
"@aws-cdk/runtime-values": "^0.15.2"
"@aws-cdk/aws-autoscaling": "^0.16.0",
"@aws-cdk/aws-cloudformation": "^0.16.0",
"@aws-cdk/aws-cognito": "^0.16.0",
"@aws-cdk/aws-dynamodb": "^0.16.0",
"@aws-cdk/aws-ec2": "^0.16.0",
"@aws-cdk/aws-ecs": "^0.16.0",
"@aws-cdk/aws-elasticloadbalancing": "^0.16.0",
"@aws-cdk/aws-elasticloadbalancingv2": "^0.16.0",
"@aws-cdk/aws-iam": "^0.16.0",
"@aws-cdk/aws-lambda": "^0.16.0",
"@aws-cdk/aws-neptune": "^0.16.0",
"@aws-cdk/aws-rds": "^0.16.0",
"@aws-cdk/aws-s3": "^0.16.0",
"@aws-cdk/aws-sns": "^0.16.0",
"@aws-cdk/aws-sqs": "^0.16.0",
"@aws-cdk/cdk": "^0.16.0",
"@aws-cdk/runtime-values": "^0.16.0"
},
"repository": {
"url": "https://github.com/awslabs/aws-cdk.git",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
}
},
"rejectCycles": "true",
"version": "0.15.2"
"version": "0.16.0"
}
30 changes: 17 additions & 13 deletions packages/@aws-cdk/app-delivery/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-cdk/app-delivery",
"description": "Continuous Integration / Continuous Delivery for CDK Applications",
"version": "0.15.2",
"version": "0.16.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"jsii": {
Expand Down Expand Up @@ -32,19 +32,19 @@
"integ": "cdk-integ"
},
"dependencies": {
"@aws-cdk/aws-cloudformation": "^0.15.2",
"@aws-cdk/aws-codebuild": "^0.15.2",
"@aws-cdk/aws-codepipeline-api": "^0.15.2",
"@aws-cdk/cdk": "^0.15.2",
"@aws-cdk/cx-api": "^0.15.2"
"@aws-cdk/aws-cloudformation": "^0.16.0",
"@aws-cdk/aws-codebuild": "^0.16.0",
"@aws-cdk/aws-codepipeline-api": "^0.16.0",
"@aws-cdk/cdk": "^0.16.0",
"@aws-cdk/cx-api": "^0.16.0"
},
"devDependencies": {
"@aws-cdk/aws-codepipeline": "^0.15.2",
"@aws-cdk/aws-s3": "^0.15.2",
"cdk-build-tools": "^0.15.2",
"cdk-integ-tools": "^0.15.2",
"@aws-cdk/aws-codepipeline": "^0.16.0",
"@aws-cdk/aws-s3": "^0.16.0",
"cdk-build-tools": "^0.16.0",
"cdk-integ-tools": "^0.16.0",
"fast-check": "^1.7.0",
"pkglint": "^0.15.2"
"pkglint": "^0.16.0"
},
"repository": {
"type": "git",
Expand All @@ -60,5 +60,9 @@
"keywords": [
"aws",
"cdk"
]
}
],
"peerDependencies": {
"@aws-cdk/aws-codepipeline-api": "^0.16.0",
"@aws-cdk/cdk": "^0.16.0"
}
}
8 changes: 4 additions & 4 deletions packages/@aws-cdk/applet-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-cdk/applet-js",
"version": "0.15.2",
"version": "0.16.0",
"description": "Javascript CDK applet host program",
"main": "bin/cdk-applet-js.js",
"types": "bin/cdk-applet-js.d.ts",
Expand All @@ -24,11 +24,11 @@
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/yaml": "^1.0.0",
"cdk-build-tools": "^0.15.2",
"pkglint": "^0.15.2"
"cdk-build-tools": "^0.16.0",
"pkglint": "^0.16.0"
},
"dependencies": {
"@aws-cdk/cdk": "^0.15.2",
"@aws-cdk/cdk": "^0.16.0",
"fs-extra": "^7.0.0",
"source-map-support": "^0.5.6",
"yaml": "^1.0.1"
Expand Down
12 changes: 6 additions & 6 deletions packages/@aws-cdk/assert/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-cdk/assert",
"version": "0.15.2",
"version": "0.16.0",
"description": "An assertion library for use with CDK Apps",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -23,13 +23,13 @@
},
"license": "Apache-2.0",
"devDependencies": {
"cdk-build-tools": "^0.15.2",
"pkglint": "^0.15.2"
"cdk-build-tools": "^0.16.0",
"pkglint": "^0.16.0"
},
"dependencies": {
"@aws-cdk/cdk": "^0.15.2",
"@aws-cdk/cloudformation-diff": "^0.15.2",
"@aws-cdk/cx-api": "^0.15.2",
"@aws-cdk/cdk": "^0.16.0",
"@aws-cdk/cloudformation-diff": "^0.16.0",
"@aws-cdk/cx-api": "^0.16.0",
"source-map-support": "^0.5.6"
},
"repository": {
Expand Down
28 changes: 14 additions & 14 deletions packages/@aws-cdk/assets/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-cdk/assets",
"version": "0.15.2",
"version": "0.16.0",
"description": "Integration of CDK apps with local assets",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -49,22 +49,22 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^0.15.2",
"aws-cdk": "^0.15.2",
"cdk-build-tools": "^0.15.2",
"cdk-integ-tools": "^0.15.2",
"pkglint": "^0.15.2"
"@aws-cdk/assert": "^0.16.0",
"aws-cdk": "^0.16.0",
"cdk-build-tools": "^0.16.0",
"cdk-integ-tools": "^0.16.0",
"pkglint": "^0.16.0"
},
"dependencies": {
"@aws-cdk/aws-iam": "^0.15.2",
"@aws-cdk/aws-s3": "^0.15.2",
"@aws-cdk/cdk": "^0.15.2",
"@aws-cdk/cx-api": "^0.15.2"
"@aws-cdk/aws-iam": "^0.16.0",
"@aws-cdk/aws-s3": "^0.16.0",
"@aws-cdk/cdk": "^0.16.0",
"@aws-cdk/cx-api": "^0.16.0"
},
"homepage": "https://github.com/awslabs/aws-cdk",
"peerDependencies": {
"@aws-cdk/aws-iam": "^0.15.1",
"@aws-cdk/aws-s3": "^0.15.1",
"@aws-cdk/cdk": "^0.15.1"
"@aws-cdk/aws-iam": "^0.16.0",
"@aws-cdk/aws-s3": "^0.16.0",
"@aws-cdk/cdk": "^0.16.0"
}
}
}
16 changes: 8 additions & 8 deletions packages/@aws-cdk/aws-amazonmq/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-cdk/aws-amazonmq",
"version": "0.15.2",
"version": "0.16.0",
"description": "The CDK Construct Library for AWS::AmazonMQ",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -53,15 +53,15 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^0.15.2",
"cdk-build-tools": "^0.15.2",
"cfn2ts": "^0.15.2",
"pkglint": "^0.15.2"
"@aws-cdk/assert": "^0.16.0",
"cdk-build-tools": "^0.16.0",
"cfn2ts": "^0.16.0",
"pkglint": "^0.16.0"
},
"dependencies": {
"@aws-cdk/cdk": "^0.15.2"
"@aws-cdk/cdk": "^0.16.0"
},
"peerDependencies": {
"@aws-cdk/cdk": "^0.15.1"
"@aws-cdk/cdk": "^0.16.0"
}
}
}
26 changes: 13 additions & 13 deletions packages/@aws-cdk/aws-apigateway/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-cdk/aws-apigateway",
"version": "0.15.2",
"version": "0.16.0",
"description": "The CDK Construct Library for AWS::ApiGateway",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -52,21 +52,21 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^0.15.2",
"cdk-build-tools": "^0.15.2",
"cdk-integ-tools": "^0.15.2",
"cfn2ts": "^0.15.2",
"pkglint": "^0.15.2"
"@aws-cdk/assert": "^0.16.0",
"cdk-build-tools": "^0.16.0",
"cdk-integ-tools": "^0.16.0",
"cfn2ts": "^0.16.0",
"pkglint": "^0.16.0"
},
"dependencies": {
"@aws-cdk/aws-iam": "^0.15.2",
"@aws-cdk/aws-lambda": "^0.15.2",
"@aws-cdk/cdk": "^0.15.2"
"@aws-cdk/aws-iam": "^0.16.0",
"@aws-cdk/aws-lambda": "^0.16.0",
"@aws-cdk/cdk": "^0.16.0"
},
"homepage": "https://github.com/awslabs/aws-cdk",
"peerDependencies": {
"@aws-cdk/aws-iam": "^0.15.1",
"@aws-cdk/aws-lambda": "^0.15.1",
"@aws-cdk/cdk": "^0.15.1"
"@aws-cdk/aws-iam": "^0.16.0",
"@aws-cdk/aws-lambda": "^0.16.0",
"@aws-cdk/cdk": "^0.16.0"
}
}
}
24 changes: 12 additions & 12 deletions packages/@aws-cdk/aws-applicationautoscaling/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-cdk/aws-applicationautoscaling",
"version": "0.15.2",
"version": "0.16.0",
"description": "The CDK Construct Library for AWS::ApplicationAutoScaling",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -52,21 +52,21 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^0.15.2",
"cdk-build-tools": "^0.15.2",
"cfn2ts": "^0.15.2",
"@aws-cdk/assert": "^0.16.0",
"cdk-build-tools": "^0.16.0",
"cfn2ts": "^0.16.0",
"fast-check": "^1.6.1",
"pkglint": "^0.15.2"
"pkglint": "^0.16.0"
},
"dependencies": {
"@aws-cdk/aws-cloudwatch": "^0.15.2",
"@aws-cdk/aws-iam": "^0.15.2",
"@aws-cdk/cdk": "^0.15.2"
"@aws-cdk/aws-cloudwatch": "^0.16.0",
"@aws-cdk/aws-iam": "^0.16.0",
"@aws-cdk/cdk": "^0.16.0"
},
"homepage": "https://github.com/awslabs/aws-cdk",
"peerDependencies": {
"@aws-cdk/aws-cloudwatch": "^0.15.1",
"@aws-cdk/aws-iam": "^0.15.1",
"@aws-cdk/cdk": "^0.15.1"
"@aws-cdk/aws-cloudwatch": "^0.16.0",
"@aws-cdk/aws-iam": "^0.16.0",
"@aws-cdk/cdk": "^0.16.0"
}
}
}
Loading

0 comments on commit cd2ecf4

Please sign in to comment.