Skip to content

Commit 4f54ff7

Browse files
author
Elad Ben-Israel
authored
chore(release): 1.30.0
See CHANGELOG
2 parents 0f42500 + ab6afe1 commit 4f54ff7

File tree

6 files changed

+19
-8
lines changed

6 files changed

+19
-8
lines changed

.yarnrc

-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
--install.check-files true # install will verify file tree of packages for consistency
2-
--install.audit true # Run vulnerability audit on installed packages

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
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.
44

5+
## [1.30.0](https://github.com/aws/aws-cdk/compare/v1.29.0...v1.30.0) (2020-03-18)
6+
7+
8+
### Features
9+
10+
* **cloudwatch:** standard set of graph colors ([#6747](https://github.com/aws/aws-cdk/issues/6747)) ([97ae931](https://github.com/aws/aws-cdk/commit/97ae931ea4d8333d1846fc3bc801430b000fa606))
11+
12+
13+
### Bug Fixes
14+
15+
* **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)
16+
517
## [1.29.0](https://github.com/aws/aws-cdk/compare/v1.28.0...v1.29.0) (2020-03-18)
618

719
: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`.

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
"tools/*"
1111
],
1212
"rejectCycles": "true",
13-
"version": "1.29.0"
13+
"version": "1.30.0"
1414
}

packages/@aws-cdk/core/lib/construct-compat.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const CONSTRUCT_SYMBOL = Symbol.for('@aws-cdk/core.Construct');
2121
/**
2222
* Represents a construct.
2323
*/
24-
export interface IConstruct extends constructs.IConstruct {
24+
export interface IConstruct extends constructs.IConstruct, IDependable {
2525
/**
2626
* The construct tree node for this construct.
2727
*/

packages/aws-cdk/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"@types/semver": "^7.1.0",
5454
"@types/sinon": "^7.5.2",
5555
"@types/table": "^4.0.7",
56-
"@types/uuid": "^7.0.1",
56+
"@types/uuid": "^7.0.2",
5757
"@types/yaml": "^1.2.0",
5858
"@types/yargs": "^15.0.4",
5959
"aws-sdk-mock": "^5.1.0",

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -2084,10 +2084,10 @@
20842084
resolved "https://registry.yarnpkg.com/@types/table/-/table-4.0.7.tgz#c21100d37d4924abbbde85414170260d4d7b0316"
20852085
integrity sha512-HKtXvBxU8U8evZCSlUi9HbfT/SFW7nSGCoiBEheB06jAhXeW6JbGh8biEAqIFG5rZo9f8xeJVdIn455sddmIcw==
20862086

2087-
"@types/uuid@^7.0.1":
2088-
version "7.0.1"
2089-
resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-7.0.1.tgz#6c7290f24c06dada2d3939bb16d65415588bafc8"
2090-
integrity sha512-nWG+LfyZLiaaOUxcqpvK4MDQNm5qaLM1LtwbGJ7MgoZ+twQHpQ9Bd46COkiJur75iXRqDFR26mPgWSJIrlemsg==
2087+
"@types/uuid@^7.0.2":
2088+
version "7.0.2"
2089+
resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-7.0.2.tgz#d680a9c596ef84abf5c4c07a32ffd66d582526f8"
2090+
integrity sha512-8Ly3zIPTnT0/8RCU6Kg/G3uTICf9sRwYOpUzSIM3503tLIKcnJPRuinHhXngJUy2MntrEf6dlpOHXJju90Qh5w==
20912091

20922092
"@types/yaml@1.2.0", "@types/yaml@^1.2.0":
20932093
version "1.2.0"

0 commit comments

Comments
 (0)