From fba2f61e249cd283b452db038c1a77458b9df963 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Wed, 18 Mar 2020 15:11:00 +0000 Subject: [PATCH 1/4] chore(deps-dev): bump @types/uuid from 7.0.1 to 7.0.2 (#6777) Bumps [@types/uuid](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/uuid) from 7.0.1 to 7.0.2. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/uuid) Signed-off-by: dependabot-preview[bot] Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> --- packages/aws-cdk/package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/aws-cdk/package.json b/packages/aws-cdk/package.json index d8a812e533144..f6cbbece6848e 100644 --- a/packages/aws-cdk/package.json +++ b/packages/aws-cdk/package.json @@ -53,7 +53,7 @@ "@types/semver": "^7.1.0", "@types/sinon": "^7.5.2", "@types/table": "^4.0.7", - "@types/uuid": "^7.0.1", + "@types/uuid": "^7.0.2", "@types/yaml": "^1.2.0", "@types/yargs": "^15.0.4", "aws-sdk-mock": "^5.1.0", diff --git a/yarn.lock b/yarn.lock index b95e04f496caf..4fa60964bf736 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2084,10 +2084,10 @@ resolved "https://registry.yarnpkg.com/@types/table/-/table-4.0.7.tgz#c21100d37d4924abbbde85414170260d4d7b0316" integrity sha512-HKtXvBxU8U8evZCSlUi9HbfT/SFW7nSGCoiBEheB06jAhXeW6JbGh8biEAqIFG5rZo9f8xeJVdIn455sddmIcw== -"@types/uuid@^7.0.1": - version "7.0.1" - resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-7.0.1.tgz#6c7290f24c06dada2d3939bb16d65415588bafc8" - integrity sha512-nWG+LfyZLiaaOUxcqpvK4MDQNm5qaLM1LtwbGJ7MgoZ+twQHpQ9Bd46COkiJur75iXRqDFR26mPgWSJIrlemsg== +"@types/uuid@^7.0.2": + version "7.0.2" + resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-7.0.2.tgz#d680a9c596ef84abf5c4c07a32ffd66d582526f8" + integrity sha512-8Ly3zIPTnT0/8RCU6Kg/G3uTICf9sRwYOpUzSIM3503tLIKcnJPRuinHhXngJUy2MntrEf6dlpOHXJju90Qh5w== "@types/yaml@1.2.0", "@types/yaml@^1.2.0": version "1.2.0" From e8d00765ce351b8462b535e0911aa0c64bad2332 Mon Sep 17 00:00:00 2001 From: Niranjan Jayakar Date: Wed, 18 Mar 2020 15:54:26 +0000 Subject: [PATCH 2/4] chore: stop auditing installed packages every time (#6790) Audit checks are increasing the chance of '503 Service Unavailable' during builds. Stop auditing so we have lower build failures. Github already provides this security audit and can be found at https://github.com/aws/aws-cdk/network/alerts Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> --- .yarnrc | 1 - 1 file changed, 1 deletion(-) diff --git a/.yarnrc b/.yarnrc index 4f9e871c7adc7..591e9c3d57b96 100644 --- a/.yarnrc +++ b/.yarnrc @@ -1,2 +1 @@ --install.check-files true # install will verify file tree of packages for consistency ---install.audit true # Run vulnerability audit on installed packages From 19bb16a0feb5b482223dd193354447065ac06f8f Mon Sep 17 00:00:00 2001 From: Elad Ben-Israel Date: Wed, 18 Mar 2020 18:08:41 +0200 Subject: [PATCH 3/4] fix(core): IConstruct no longer extends IDependable (#6794) The release of 1.28.0 broke the API of `IConstruct` as it no longer extends `IDependable`. This was not discovered by our API compatibility test and breaks typed languages like Java. Fixes #6792 --- packages/@aws-cdk/core/lib/construct-compat.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@aws-cdk/core/lib/construct-compat.ts b/packages/@aws-cdk/core/lib/construct-compat.ts index 4b64b1a6bcc15..6181aff6f5e84 100644 --- a/packages/@aws-cdk/core/lib/construct-compat.ts +++ b/packages/@aws-cdk/core/lib/construct-compat.ts @@ -21,7 +21,7 @@ const CONSTRUCT_SYMBOL = Symbol.for('@aws-cdk/core.Construct'); /** * Represents a construct. */ -export interface IConstruct extends constructs.IConstruct { +export interface IConstruct extends constructs.IConstruct, IDependable { /** * The construct tree node for this construct. */ From ab6afe1647fd7219716c19c61ce2cfbdbe8b15ad Mon Sep 17 00:00:00 2001 From: AWS CDK Team Date: Wed, 18 Mar 2020 16:16:29 +0000 Subject: [PATCH 4/4] chore(release): 1.30.0 --- CHANGELOG.md | 12 ++++++++++++ lerna.json | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aaff08db03054..7dbe2328e395c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ 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.30.0](https://github.com/aws/aws-cdk/compare/v1.29.0...v1.30.0) (2020-03-18) + + +### Features + +* **cloudwatch:** standard set of graph colors ([#6747](https://github.com/aws/aws-cdk/issues/6747)) ([97ae931](https://github.com/aws/aws-cdk/commit/97ae931ea4d8333d1846fc3bc801430b000fa606)) + + +### Bug Fixes + +* **core:** IConstruct no longer extends IDependable ([#6794](https://github.com/aws/aws-cdk/issues/6794)) ([19bb16a](https://github.com/aws/aws-cdk/commit/19bb16a0feb5b482223dd193354447065ac06f8f)), closes [#6792](https://github.com/aws/aws-cdk/issues/6792) + ## [1.29.0](https://github.com/aws/aws-cdk/compare/v1.28.0...v1.29.0) (2020-03-18) :rocket: To enable new CDK projects such as [CDK for Kubernetes](https://github.com/awslabs/cdk8s), we have released the **constructs programming model** as an independent library called [constructs](https://github.com/aws/constructs). The `@aws-cdk/core.Construct` class is now a subclass of the base `constructs.Construct`. diff --git a/lerna.json b/lerna.json index 4d3fd72dff8b4..64ed5058b057f 100644 --- a/lerna.json +++ b/lerna.json @@ -10,5 +10,5 @@ "tools/*" ], "rejectCycles": "true", - "version": "1.29.0" + "version": "1.30.0" }