Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.8.0 #4016

Merged
merged 2 commits into from
Sep 10, 2019
Merged

v1.8.0 #4016

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
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,44 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.8.0](https://github.com/aws/aws-cdk/compare/v1.7.0...v1.8.0) (2019-09-10)


### Bug Fixes

* **app-delivery:** action template filename incorrect ([#3986](https://github.com/aws/aws-cdk/issues/3986)) ([f6ef79d](https://github.com/aws/aws-cdk/commit/f6ef79d)), closes [#3595](https://github.com/aws/aws-cdk/issues/3595)
* **certificatemanager:** increase minimum validation total timeout ([#3914](https://github.com/aws/aws-cdk/issues/3914)) ([4973a8c](https://github.com/aws/aws-cdk/commit/4973a8c))
* **custom-resources:** correctly handle booleans conversion ([#4000](https://github.com/aws/aws-cdk/issues/4000)) ([77105ab](https://github.com/aws/aws-cdk/commit/77105ab)), closes [#3933](https://github.com/aws/aws-cdk/issues/3933)
* **dynamodb:** prevent "StreamARN not found for resource" errors ([#3935](https://github.com/aws/aws-cdk/issues/3935)) ([617ef82](https://github.com/aws/aws-cdk/commit/617ef82))
* **ecs:** separate application and network load balanced services ([#3719](https://github.com/aws/aws-cdk/issues/3719)) ([21eb835](https://github.com/aws/aws-cdk/commit/21eb835))
* **events:** `fromObject` handles regular and field tokens together ([#3916](https://github.com/aws/aws-cdk/issues/3916)) ([b01f62d](https://github.com/aws/aws-cdk/commit/b01f62d)), closes [#3915](https://github.com/aws/aws-cdk/issues/3915)
* **iam:** only attach policies to imported roles if the accounts match ([#3716](https://github.com/aws/aws-cdk/issues/3716)) ([87db7aa](https://github.com/aws/aws-cdk/commit/87db7aa)), closes [#2985](https://github.com/aws/aws-cdk/issues/2985) [#3025](https://github.com/aws/aws-cdk/issues/3025)


### Code Refactoring

* **assets:** remove content hash attribute ([#4003](https://github.com/aws/aws-cdk/issues/4003)) ([181b58b](https://github.com/aws/aws-cdk/commit/181b58b))


### Features

* **cli:** [#3971](https://github.com/aws/aws-cdk/issues/3971) changed cdk synth to rebuild app ([#3972](https://github.com/aws/aws-cdk/issues/3972)) ([198f45f](https://github.com/aws/aws-cdk/commit/198f45f))
* **ec2:** support configuring network ACLs ([#3699](https://github.com/aws/aws-cdk/issues/3699)) ([3f10543](https://github.com/aws/aws-cdk/commit/3f10543)), closes [#3621](https://github.com/aws/aws-cdk/issues/3621)
* **ecr-assets:** fail if tokens are used in buildArgs ([#3989](https://github.com/aws/aws-cdk/issues/3989)) ([56ce9ff](https://github.com/aws/aws-cdk/commit/56ce9ff)), closes [#3981](https://github.com/aws/aws-cdk/issues/3981)
* **eks:** add EKS AMis for 1.14 ([#3950](https://github.com/aws/aws-cdk/issues/3950)) ([741ef43](https://github.com/aws/aws-cdk/commit/741ef43))
* **eks:** spot capacity and bootstrap options ([#3937](https://github.com/aws/aws-cdk/issues/3937)) ([5da6b36](https://github.com/aws/aws-cdk/commit/5da6b36)), closes [#3523](https://github.com/aws/aws-cdk/issues/3523) [#3857](https://github.com/aws/aws-cdk/issues/3857) [#3929](https://github.com/aws/aws-cdk/issues/3929) [#3938](https://github.com/aws/aws-cdk/issues/3938) [#3939](https://github.com/aws/aws-cdk/issues/3939)
* **events:** allow passing a role to the CodePipeline target ([#4006](https://github.com/aws/aws-cdk/issues/4006)) ([c4054ce](https://github.com/aws/aws-cdk/commit/c4054ce)), closes [#3999](https://github.com/aws/aws-cdk/issues/3999)


### BREAKING CHANGES

* **assets:** assets no longer expose a property `contentHash`. Use `sourceHash`
as a good approximation. if you have a strong use case for content hashes, please
raise a github issue and we will figure out a solution.
* **dynamodb:** fix
* **ecs:** The LoadBalancedServiceBase, LoadBalancedEc2Service and LoadBalancedFargateService constructs have been separated out into Application and Network LoadBalancedService constructs for both Ec2 and Fargate Services.



## [1.7.0](https://github.com/aws/aws-cdk/compare/v1.6.1...v1.7.0) (2019-09-05)

Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"tools/*"
],
"rejectCycles": "true",
"version": "1.7.0"
"version": "1.8.0"
}
8 changes: 4 additions & 4 deletions packages/@aws-cdk/alexa-ask/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-cdk/alexa-ask",
"version": "1.7.0",
"version": "1.8.0",
"description": "The CDK Construct Library for Alexa::ASK",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -63,16 +63,16 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^1.7.0",
"@aws-cdk/assert": "^1.8.0",
"cdk-build-tools": "file:../../../tools/cdk-build-tools",
"cfn2ts": "file:../../../tools/cfn2ts",
"pkglint": "file:../../../tools/pkglint"
},
"dependencies": {
"@aws-cdk/core": "^1.7.0"
"@aws-cdk/core": "^1.8.0"
},
"peerDependencies": {
"@aws-cdk/core": "^1.7.0"
"@aws-cdk/core": "^1.8.0"
},
"engines": {
"node": ">= 8.10.0"
Expand Down
38 changes: 19 additions & 19 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": "1.7.0",
"version": "1.8.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"jsii": {
Expand Down Expand Up @@ -40,18 +40,18 @@
"build+test": "npm run build && npm test"
},
"dependencies": {
"@aws-cdk/aws-cloudformation": "^1.7.0",
"@aws-cdk/aws-codebuild": "^1.7.0",
"@aws-cdk/aws-codepipeline": "^1.7.0",
"@aws-cdk/aws-codepipeline-actions": "^1.7.0",
"@aws-cdk/aws-events": "^1.7.0",
"@aws-cdk/aws-iam": "^1.7.0",
"@aws-cdk/core": "^1.7.0",
"@aws-cdk/cx-api": "^1.7.0"
"@aws-cdk/aws-cloudformation": "^1.8.0",
"@aws-cdk/aws-codebuild": "^1.8.0",
"@aws-cdk/aws-codepipeline": "^1.8.0",
"@aws-cdk/aws-codepipeline-actions": "^1.8.0",
"@aws-cdk/aws-events": "^1.8.0",
"@aws-cdk/aws-iam": "^1.8.0",
"@aws-cdk/core": "^1.8.0",
"@aws-cdk/cx-api": "^1.8.0"
},
"devDependencies": {
"@aws-cdk/assert": "^1.7.0",
"@aws-cdk/aws-s3": "^1.7.0",
"@aws-cdk/assert": "^1.8.0",
"@aws-cdk/aws-s3": "^1.8.0",
"cdk-build-tools": "file:../../../tools/cdk-build-tools",
"cdk-integ-tools": "file:../../../tools/cdk-integ-tools",
"fast-check": "^1.16.2",
Expand All @@ -74,14 +74,14 @@
"cdk"
],
"peerDependencies": {
"@aws-cdk/aws-cloudformation": "^1.7.0",
"@aws-cdk/aws-codebuild": "^1.7.0",
"@aws-cdk/aws-codepipeline": "^1.7.0",
"@aws-cdk/aws-codepipeline-actions": "^1.7.0",
"@aws-cdk/aws-events": "^1.7.0",
"@aws-cdk/aws-iam": "^1.7.0",
"@aws-cdk/core": "^1.7.0",
"@aws-cdk/cx-api": "^1.7.0"
"@aws-cdk/aws-cloudformation": "^1.8.0",
"@aws-cdk/aws-codebuild": "^1.8.0",
"@aws-cdk/aws-codepipeline": "^1.8.0",
"@aws-cdk/aws-codepipeline-actions": "^1.8.0",
"@aws-cdk/aws-events": "^1.8.0",
"@aws-cdk/aws-iam": "^1.8.0",
"@aws-cdk/core": "^1.8.0",
"@aws-cdk/cx-api": "^1.8.0"
},
"engines": {
"node": ">= 8.10.0"
Expand Down
8 changes: 4 additions & 4 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": "1.7.0",
"version": "1.8.0",
"description": "An assertion library for use with CDK Apps",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -31,9 +31,9 @@
"pkglint": "file:../../../tools/pkglint"
},
"dependencies": {
"@aws-cdk/cloudformation-diff": "^1.7.0",
"@aws-cdk/core": "^1.7.0",
"@aws-cdk/cx-api": "^1.7.0",
"@aws-cdk/cloudformation-diff": "^1.8.0",
"@aws-cdk/core": "^1.8.0",
"@aws-cdk/cx-api": "^1.8.0",
"jest": "^24.9.0",
"source-map-support": "^0.5.13"
},
Expand Down
14 changes: 7 additions & 7 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": "1.7.0",
"version": "1.8.0",
"description": "Integration of CDK apps with local assets",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -63,25 +63,25 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^1.7.0",
"@aws-cdk/assert": "^1.8.0",
"@types/minimatch": "^3.0.3",
"@types/sinon": "^7.0.13",
"aws-cdk": "^1.7.0",
"aws-cdk": "^1.8.0",
"cdk-build-tools": "file:../../../tools/cdk-build-tools",
"cdk-integ-tools": "file:../../../tools/cdk-integ-tools",
"pkglint": "file:../../../tools/pkglint",
"sinon": "^7.4.2",
"ts-mock-imports": "^1.2.6"
},
"dependencies": {
"@aws-cdk/core": "^1.7.0",
"@aws-cdk/cx-api": "^1.7.0",
"@aws-cdk/core": "^1.8.0",
"@aws-cdk/cx-api": "^1.8.0",
"minimatch": "^3.0.4"
},
"homepage": "https://github.com/aws/aws-cdk",
"peerDependencies": {
"@aws-cdk/core": "^1.7.0",
"@aws-cdk/cx-api": "^1.7.0"
"@aws-cdk/core": "^1.8.0",
"@aws-cdk/cx-api": "^1.8.0"
},
"engines": {
"node": ">= 8.10.0"
Expand Down
8 changes: 4 additions & 4 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": "1.7.0",
"version": "1.8.0",
"description": "The CDK Construct Library for AWS::AmazonMQ",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -63,16 +63,16 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^1.7.0",
"@aws-cdk/assert": "^1.8.0",
"cdk-build-tools": "file:../../../tools/cdk-build-tools",
"cfn2ts": "file:../../../tools/cfn2ts",
"pkglint": "file:../../../tools/pkglint"
},
"dependencies": {
"@aws-cdk/core": "^1.7.0"
"@aws-cdk/core": "^1.8.0"
},
"peerDependencies": {
"@aws-cdk/core": "^1.7.0"
"@aws-cdk/core": "^1.8.0"
},
"engines": {
"node": ">= 8.10.0"
Expand Down
8 changes: 4 additions & 4 deletions packages/@aws-cdk/aws-amplify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-cdk/aws-amplify",
"version": "1.7.0",
"version": "1.8.0",
"description": "The CDK Construct Library for AWS::Amplify",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -64,16 +64,16 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^1.7.0",
"@aws-cdk/assert": "^1.8.0",
"cdk-build-tools": "file:../../../tools/cdk-build-tools",
"cfn2ts": "file:../../../tools/cfn2ts",
"pkglint": "file:../../../tools/pkglint"
},
"dependencies": {
"@aws-cdk/core": "^1.7.0"
"@aws-cdk/core": "^1.8.0"
},
"peerDependencies": {
"@aws-cdk/core": "^1.7.0"
"@aws-cdk/core": "^1.8.0"
},
"engines": {
"node": ">= 8.10.0"
Expand Down
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": "1.7.0",
"version": "1.8.0",
"description": "The CDK Construct Library for AWS::ApiGateway",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -65,27 +65,27 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^1.7.0",
"@aws-cdk/aws-ec2": "^1.7.0",
"@aws-cdk/assert": "^1.8.0",
"@aws-cdk/aws-ec2": "^1.8.0",
"cdk-build-tools": "file:../../../tools/cdk-build-tools",
"cdk-integ-tools": "file:../../../tools/cdk-integ-tools",
"cfn2ts": "file:../../../tools/cfn2ts",
"pkglint": "file:../../../tools/pkglint"
},
"dependencies": {
"@aws-cdk/aws-certificatemanager": "^1.7.0",
"@aws-cdk/aws-elasticloadbalancingv2": "^1.7.0",
"@aws-cdk/aws-iam": "^1.7.0",
"@aws-cdk/aws-lambda": "^1.7.0",
"@aws-cdk/core": "^1.7.0"
"@aws-cdk/aws-certificatemanager": "^1.8.0",
"@aws-cdk/aws-elasticloadbalancingv2": "^1.8.0",
"@aws-cdk/aws-iam": "^1.8.0",
"@aws-cdk/aws-lambda": "^1.8.0",
"@aws-cdk/core": "^1.8.0"
},
"homepage": "https://github.com/aws/aws-cdk",
"peerDependencies": {
"@aws-cdk/aws-certificatemanager": "^1.7.0",
"@aws-cdk/aws-elasticloadbalancingv2": "^1.7.0",
"@aws-cdk/aws-iam": "^1.7.0",
"@aws-cdk/aws-lambda": "^1.7.0",
"@aws-cdk/core": "^1.7.0"
"@aws-cdk/aws-certificatemanager": "^1.8.0",
"@aws-cdk/aws-elasticloadbalancingv2": "^1.8.0",
"@aws-cdk/aws-iam": "^1.8.0",
"@aws-cdk/aws-lambda": "^1.8.0",
"@aws-cdk/core": "^1.8.0"
},
"engines": {
"node": ">= 8.10.0"
Expand Down
20 changes: 10 additions & 10 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": "1.7.0",
"version": "1.8.0",
"description": "The CDK Construct Library for AWS::ApplicationAutoScaling",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -62,24 +62,24 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^1.7.0",
"@aws-cdk/assert": "^1.8.0",
"cdk-build-tools": "file:../../../tools/cdk-build-tools",
"cfn2ts": "file:../../../tools/cfn2ts",
"fast-check": "^1.16.2",
"pkglint": "file:../../../tools/pkglint"
},
"dependencies": {
"@aws-cdk/aws-autoscaling-common": "^1.7.0",
"@aws-cdk/aws-cloudwatch": "^1.7.0",
"@aws-cdk/aws-iam": "^1.7.0",
"@aws-cdk/core": "^1.7.0"
"@aws-cdk/aws-autoscaling-common": "^1.8.0",
"@aws-cdk/aws-cloudwatch": "^1.8.0",
"@aws-cdk/aws-iam": "^1.8.0",
"@aws-cdk/core": "^1.8.0"
},
"homepage": "https://github.com/aws/aws-cdk",
"peerDependencies": {
"@aws-cdk/aws-autoscaling-common": "^1.7.0",
"@aws-cdk/aws-cloudwatch": "^1.7.0",
"@aws-cdk/aws-iam": "^1.7.0",
"@aws-cdk/core": "^1.7.0"
"@aws-cdk/aws-autoscaling-common": "^1.8.0",
"@aws-cdk/aws-cloudwatch": "^1.8.0",
"@aws-cdk/aws-iam": "^1.8.0",
"@aws-cdk/core": "^1.8.0"
},
"engines": {
"node": ">= 8.10.0"
Expand Down
22 changes: 11 additions & 11 deletions packages/@aws-cdk/aws-appmesh/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-cdk/aws-appmesh",
"version": "1.7.0",
"version": "1.8.0",
"description": "The CDK Construct Library for AWS::AppMesh",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -64,23 +64,23 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^1.7.0",
"@aws-cdk/assert": "^1.8.0",
"cdk-build-tools": "file:../../../tools/cdk-build-tools",
"cdk-integ-tools": "file:../../../tools/cdk-integ-tools",
"cfn2ts": "^1.7.0",
"cfn2ts": "^1.8.0",
"pkglint": "file:../../../tools/pkglint"
},
"dependencies": {
"@aws-cdk/aws-ec2": "^1.7.0",
"@aws-cdk/aws-iam": "^1.7.0",
"@aws-cdk/aws-servicediscovery": "^1.7.0",
"@aws-cdk/core": "^1.7.0"
"@aws-cdk/aws-ec2": "^1.8.0",
"@aws-cdk/aws-iam": "^1.8.0",
"@aws-cdk/aws-servicediscovery": "^1.8.0",
"@aws-cdk/core": "^1.8.0"
},
"peerDependencies": {
"@aws-cdk/aws-ec2": "^1.7.0",
"@aws-cdk/aws-iam": "^1.7.0",
"@aws-cdk/aws-servicediscovery": "^1.7.0",
"@aws-cdk/core": "^1.7.0"
"@aws-cdk/aws-ec2": "^1.8.0",
"@aws-cdk/aws-iam": "^1.8.0",
"@aws-cdk/aws-servicediscovery": "^1.8.0",
"@aws-cdk/core": "^1.8.0"
},
"engines": {
"node": ">= 8.10.0"
Expand Down
Loading