Skip to content

Commit

Permalink
v0.11.0
Browse files Browse the repository at this point in the history
BREAKING CHANGES
================

* The `cdk.App` initializer doesn't accept any arguments and the `app.run()`
  method does not return a `string` anymore. All AWS CDK apps in all languages
  would need to be modified to adhere to the new API of the `cdk.App` construct.

    Instead of:

      const app = new App(process.argv); // ERROR
      // add stacks
      process.stdout.write(app.run());   // ERROR

    The new usage is:

      const app = new App();
      // add stacks
      app.run();

    In order to interact with applications written using this
    version, the CDK Toolkit must also be update using:

      $ npm i -g aws-cdk

* **aws-iam:** This change moves the `PolicyDocument`, `PolicyStatement` and
all `PolicyPrincipal` classes from the @aws-cdk/cdk module
and into the @aws-cdk/aws-iam module.
* **jsx:** The CDK is no longer shipped with built-in support for JSX.
You can still use JSX but you will have to manually configure it.

Features
========

* **aws-apigateway:** "LambdaRestApi" and "addProxy" routes ([#867](#867)) ([a733bd1](a733bd1))
* **aws-cdk:** add maven wrapper to java template ([#811](#811)) ([1ee729e](1ee729e))
* **aws-cloudfront:** Support Security Policy ([#804](#804)) ([d69b1d6](d69b1d6)), closes [#795](#795)
* **aws-codedeploy:** support setting a load balancer on a Deployment Group. ([#786](#786)) ([dc0af46](dc0af46))
* **aws-codepipeline:** allow specifying the runOrder property when creating Actions. ([#776](#776)) ([8302541](8302541))
* **aws-dynamodb:** IAM grants support ([#870](#870)) ([f6c7760](f6c7760))
* **aws-dynamodb:** support Global Secondary Indexes ([#760](#760)) ([737b481](737b481))
* **aws-dynamodb:** tags support ([#814](#814)) ([c76d8c1](c76d8c1))
* **aws-dynamodB:** support Local Secondary Indexes ([#825](#825)) ([fdb4974](fdb4974))
* Manage IAM permissions for (some) CFN CodePipeline actions ([#843](#843)) ([5f2cb9f](5f2cb9f))
* Resolve paths to nyc & nodeunit ([#887](#887)) ([6d71a87](6d71a87))
* upgrade to jsii v0.7.7 ([43d2d9e](43d2d9e))
* **aws-ec2:** allow configuring subnets for NAT gateway ([#874](#874)) ([958dce6](958dce6))
* **aws-ec2:** support UDP port ranges in SecurityGroups ([#835](#835)) ([6920b9c](6920b9c))
* **aws-s3:** support granting public access to objects ([#886](#886)) ([50e0c41](50e0c41)), closes [#877](#877)
* **cdk:** Add support for UseOnlineResharding with UpdatePolicies ([#881](#881)) ([a95f081](a95f081))

Bug Fixes
=========

* **aws-apigateway:** allow + in path parts ([#769](#769)) ([6905b7e](6905b7e)), closes [#768](#768)
* **aws-cdk:** continue after exceptions in stack monitor ([#791](#791)) ([b7c244f](b7c244f)), closes [#787](#787)
* **aws-cloudfront:** properly support loggingConfig ([#809](#809)) ([d279a1d](d279a1d)), closes [#721](#721)
* **aws-ec2:** Add Burstable Generation 3 Instances ([#812](#812)) ([cf62e9d](cf62e9d))
* **aws-s3:** properly export bucketDomainName ([#844](#844)) ([9a53069](9a53069))
* Emit valid YAML-1.1 ([#876](#876)) ([6c98b73](6c98b73)), closes [#875](#875)
* **aws-sqs:** Queue.import() doesn't return a value ([#885](#885)) ([c38c3e7](c38c3e7)), closes [#879](#879)
* **cdk:** fix TagManager to evaluate to undefined if no tags are included ([#882](#882)) ([be65a04](be65a04))
* **cdk:** jsx support conflicts with React usage ([#884](#884)) ([2a979cc](2a979cc)), closes [#830](#830)
* **docs:** update supported languages in README ([#819](#819), [#450](#450)) ([#820](#820)) ([1ec443e](1ec443e))


Code Refactoring
================

* **aws-iam:** move IAM classes cdk to aws-iam ([#866](#866)) ([6c58556](6c58556)), closes [#196](#196)
* remove app boilerplate and improvements to cx protocol ([#868](#868)) ([7bb5a60](7bb5a60)), closes [#216](#216)
  • Loading branch information
Elad Ben-Israel committed Oct 10, 2018
1 parent 4a76287 commit 3078753
Show file tree
Hide file tree
Showing 97 changed files with 5,294 additions and 935 deletions.
92 changes: 92 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,95 @@
# Change Log

<a name="0.11.0"></a>
## [0.11.0](https://github.com/awslabs/aws-cdk/compare/v0.10.0...v0.11.0) (2018-10-10)

This release includes a breaking change in the toolkit<=>app protocol. This means that
in order to synthesize CDK apps that use this version, the globally installed CDK toolkit
must also be updated:

```shell
$ npm i -g aws-cdk
$ cdk --version
0.11.0 (build ...)
```

You will also need to update your project's library versions:

|Language|Update?|
|--------|-------|
|JavaScript/TypeScript (npm)|[`npx npm-check-updates -u`](https://www.npmjs.com/package/npm-check-updates)|
|Java (maven)|[`mvn versions:use-latest-versions`](https://www.mojohaus.org/versions-maven-plugin/use-latest-versions-mojo.html)
|.NET (NuGet)|[`nuget update`](https://docs.microsoft.com/en-us/nuget/tools/cli-ref-update)


### BREAKING CHANGES

* The `cdk.App` initializer doesn't accept any arguments and the `app.run()`
method does not return a `string` anymore. All AWS CDK apps in all languages
would need to be modified to adhere to the new API of the `cdk.App` construct.

Instead of:

const app = new App(process.argv); // ERROR
// add stacks
process.stdout.write(app.run()); // ERROR

The new usage is:

const app = new App();
// add stacks
app.run();

In order to interact with applications written using this
version, the CDK Toolkit must also be update using:

$ npm i -g aws-cdk

* **aws-iam:** This change moves the `PolicyDocument`, `PolicyStatement` and
all `PolicyPrincipal` classes from the @aws-cdk/cdk module
and into the @aws-cdk/aws-iam module.
* **jsx:** The CDK is no longer shipped with built-in support for JSX.
You can still use JSX but you will have to manually configure it.

### Features

* **aws-apigateway:** "LambdaRestApi" and "addProxy" routes ([#867](https://github.com/awslabs/aws-cdk/issues/867)) ([a733bd1](https://github.com/awslabs/aws-cdk/commit/a733bd1))
* **aws-cdk:** add maven wrapper to java template ([#811](https://github.com/awslabs/aws-cdk/issues/811)) ([1ee729e](https://github.com/awslabs/aws-cdk/commit/1ee729e))
* **aws-cloudfront:** Support Security Policy ([#804](https://github.com/awslabs/aws-cdk/issues/804)) ([d69b1d6](https://github.com/awslabs/aws-cdk/commit/d69b1d6)), closes [#795](https://github.com/awslabs/aws-cdk/issues/795)
* **aws-codedeploy:** support setting a load balancer on a Deployment Group. ([#786](https://github.com/awslabs/aws-cdk/issues/786)) ([dc0af46](https://github.com/awslabs/aws-cdk/commit/dc0af46))
* **aws-codepipeline:** allow specifying the runOrder property when creating Actions. ([#776](https://github.com/awslabs/aws-cdk/issues/776)) ([8302541](https://github.com/awslabs/aws-cdk/commit/8302541))
* **aws-dynamodb:** IAM grants support ([#870](https://github.com/awslabs/aws-cdk/issues/870)) ([f6c7760](https://github.com/awslabs/aws-cdk/commit/f6c7760))
* **aws-dynamodb:** support Global Secondary Indexes ([#760](https://github.com/awslabs/aws-cdk/issues/760)) ([737b481](https://github.com/awslabs/aws-cdk/commit/737b481))
* **aws-dynamodb:** tags support ([#814](https://github.com/awslabs/aws-cdk/issues/814)) ([c76d8c1](https://github.com/awslabs/aws-cdk/commit/c76d8c1))
* **aws-dynamodB:** support Local Secondary Indexes ([#825](https://github.com/awslabs/aws-cdk/issues/825)) ([fdb4974](https://github.com/awslabs/aws-cdk/commit/fdb4974))
* Manage IAM permissions for (some) CFN CodePipeline actions ([#843](https://github.com/awslabs/aws-cdk/issues/843)) ([5f2cb9f](https://github.com/awslabs/aws-cdk/commit/5f2cb9f))
* Resolve paths to nyc & nodeunit ([#887](https://github.com/awslabs/aws-cdk/issues/887)) ([6d71a87](https://github.com/awslabs/aws-cdk/commit/6d71a87))
* upgrade to jsii v0.7.7 ([43d2d9e](https://github.com/awslabs/aws-cdk/commit/43d2d9e))
* **aws-ec2:** allow configuring subnets for NAT gateway ([#874](https://github.com/awslabs/aws-cdk/issues/874)) ([958dce6](https://github.com/awslabs/aws-cdk/commit/958dce6))
* **aws-ec2:** support UDP port ranges in SecurityGroups ([#835](https://github.com/awslabs/aws-cdk/issues/835)) ([6920b9c](https://github.com/awslabs/aws-cdk/commit/6920b9c))
* **aws-s3:** support granting public access to objects ([#886](https://github.com/awslabs/aws-cdk/issues/886)) ([50e0c41](https://github.com/awslabs/aws-cdk/commit/50e0c41)), closes [#877](https://github.com/awslabs/aws-cdk/issues/877)
* **cdk:** Add support for UseOnlineResharding with UpdatePolicies ([#881](https://github.com/awslabs/aws-cdk/issues/881)) ([a95f081](https://github.com/awslabs/aws-cdk/commit/a95f081))

### Bug Fixes

* **aws-apigateway:** allow + in path parts ([#769](https://github.com/awslabs/aws-cdk/issues/769)) ([6905b7e](https://github.com/awslabs/aws-cdk/commit/6905b7e)), closes [#768](https://github.com/awslabs/aws-cdk/issues/768)
* **aws-cdk:** continue after exceptions in stack monitor ([#791](https://github.com/awslabs/aws-cdk/issues/791)) ([b7c244f](https://github.com/awslabs/aws-cdk/commit/b7c244f)), closes [#787](https://github.com/awslabs/aws-cdk/issues/787)
* **aws-cloudfront:** properly support loggingConfig ([#809](https://github.com/awslabs/aws-cdk/issues/809)) ([d279a1d](https://github.com/awslabs/aws-cdk/commit/d279a1d)), closes [#721](https://github.com/awslabs/aws-cdk/issues/721)
* **aws-ec2:** Add Burstable Generation 3 Instances ([#812](https://github.com/awslabs/aws-cdk/issues/812)) ([cf62e9d](https://github.com/awslabs/aws-cdk/commit/cf62e9d))
* **aws-s3:** properly export bucketDomainName ([#844](https://github.com/awslabs/aws-cdk/issues/844)) ([9a53069](https://github.com/awslabs/aws-cdk/commit/9a53069))
* Emit valid YAML-1.1 ([#876](https://github.com/awslabs/aws-cdk/issues/876)) ([6c98b73](https://github.com/awslabs/aws-cdk/commit/6c98b73)), closes [#875](https://github.com/awslabs/aws-cdk/issues/875)
* **aws-sqs:** Queue.import() doesn't return a value ([#885](https://github.com/awslabs/aws-cdk/issues/885)) ([c38c3e7](https://github.com/awslabs/aws-cdk/commit/c38c3e7)), closes [#879](https://github.com/awslabs/aws-cdk/issues/879)
* **cdk:** fix TagManager to evaluate to undefined if no tags are included ([#882](https://github.com/awslabs/aws-cdk/issues/882)) ([be65a04](https://github.com/awslabs/aws-cdk/commit/be65a04))
* **cdk:** jsx support conflicts with React usage ([#884](https://github.com/awslabs/aws-cdk/issues/884)) ([2a979cc](https://github.com/awslabs/aws-cdk/commit/2a979cc)), closes [#830](https://github.com/awslabs/aws-cdk/issues/830)
* **docs:** update supported languages in README ([#819](https://github.com/awslabs/aws-cdk/issues/819), [#450](https://github.com/awslabs/aws-cdk/issues/450)) ([#820](https://github.com/awslabs/aws-cdk/issues/820)) ([1ec443e](https://github.com/awslabs/aws-cdk/commit/1ec443e))


### Code Refactoring

* **aws-iam:** move IAM classes cdk to aws-iam ([#866](https://github.com/awslabs/aws-cdk/issues/866)) ([6c58556](https://github.com/awslabs/aws-cdk/commit/6c58556)), closes [#196](https://github.com/awslabs/aws-cdk/issues/196)
* remove app boilerplate and improvements to cx protocol ([#868](https://github.com/awslabs/aws-cdk/issues/868)) ([7bb5a60](https://github.com/awslabs/aws-cdk/commit/7bb5a60)), closes [#216](https://github.com/awslabs/aws-cdk/issues/216)


<a name="0.10.0"></a>
## [0.10.0](https://github.com/awslabs/aws-cdk/compare/v0.9.2...v0.10.0) (2018-09-27)

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.10.0",
"version": "0.11.0",
"description": "CDK examples in Java",
"private": true,
"repository": {
Expand All @@ -22,7 +22,7 @@
},
"license": "Apache-2.0",
"devDependencies": {
"aws-cdk": "^0.10.0",
"pkgtools": "^0.10.0"
"aws-cdk": "^0.11.0",
"pkgtools": "^0.11.0"
}
}
38 changes: 19 additions & 19 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.10.0",
"version": "0.11.0",
"description": "A bunch of CDK examples",
"private": true,
"scripts": {
Expand All @@ -18,26 +18,26 @@
},
"license": "Apache-2.0",
"devDependencies": {
"aws-cdk": "^0.10.0",
"cdk-build-tools": "^0.10.0",
"pkglint": "^0.10.0"
"aws-cdk": "^0.11.0",
"cdk-build-tools": "^0.11.0",
"pkglint": "^0.11.0"
},
"dependencies": {
"@aws-cdk/aws-autoscaling": "^0.10.0",
"@aws-cdk/aws-cloudformation": "^0.10.0",
"@aws-cdk/aws-cognito": "^0.10.0",
"@aws-cdk/aws-dynamodb": "^0.10.0",
"@aws-cdk/aws-ec2": "^0.10.0",
"@aws-cdk/aws-elasticloadbalancing": "^0.10.0",
"@aws-cdk/aws-iam": "^0.10.0",
"@aws-cdk/aws-lambda": "^0.10.0",
"@aws-cdk/aws-neptune": "^0.10.0",
"@aws-cdk/aws-rds": "^0.10.0",
"@aws-cdk/aws-s3": "^0.10.0",
"@aws-cdk/aws-sns": "^0.10.0",
"@aws-cdk/aws-sqs": "^0.10.0",
"@aws-cdk/cdk": "^0.10.0",
"@aws-cdk/runtime-values": "^0.10.0"
"@aws-cdk/aws-autoscaling": "^0.11.0",
"@aws-cdk/aws-cloudformation": "^0.11.0",
"@aws-cdk/aws-cognito": "^0.11.0",
"@aws-cdk/aws-dynamodb": "^0.11.0",
"@aws-cdk/aws-ec2": "^0.11.0",
"@aws-cdk/aws-elasticloadbalancing": "^0.11.0",
"@aws-cdk/aws-iam": "^0.11.0",
"@aws-cdk/aws-lambda": "^0.11.0",
"@aws-cdk/aws-neptune": "^0.11.0",
"@aws-cdk/aws-rds": "^0.11.0",
"@aws-cdk/aws-s3": "^0.11.0",
"@aws-cdk/aws-sns": "^0.11.0",
"@aws-cdk/aws-sqs": "^0.11.0",
"@aws-cdk/cdk": "^0.11.0",
"@aws-cdk/runtime-values": "^0.11.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 @@ -7,5 +7,5 @@
"tools/*"
],
"rejectCycles": "true",
"version": "0.10.0"
"version": "0.11.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.10.0",
"version": "0.11.0",
"description": "Javascript CDK applet host program",
"main": "bin/cdk-applet-js.js",
"types": "bin/cdk-applet-js.d.ts",
Expand All @@ -23,11 +23,11 @@
"license": "Apache-2.0",
"devDependencies": {
"@types/yamljs": "^0.2.0",
"cdk-build-tools": "^0.10.0",
"pkglint": "^0.10.0"
"cdk-build-tools": "^0.11.0",
"pkglint": "^0.11.0"
},
"dependencies": {
"@aws-cdk/cdk": "^0.10.0",
"@aws-cdk/cdk": "^0.11.0",
"source-map-support": "^0.5.6",
"yamljs": "^0.2.0"
},
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.10.0",
"version": "0.11.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.10.0",
"pkglint": "^0.10.0"
"cdk-build-tools": "^0.11.0",
"pkglint": "^0.11.0"
},
"dependencies": {
"@aws-cdk/cdk": "^0.10.0",
"@aws-cdk/cloudformation-diff": "^0.10.0",
"@aws-cdk/cx-api": "^0.10.0",
"@aws-cdk/cdk": "^0.11.0",
"@aws-cdk/cloudformation-diff": "^0.11.0",
"@aws-cdk/cx-api": "^0.11.0",
"source-map-support": "^0.5.6"
},
"repository": {
Expand Down
20 changes: 10 additions & 10 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.10.0",
"version": "0.11.0",
"description": "Integration of CDK apps with local assets",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -49,17 +49,17 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^0.10.0",
"aws-cdk": "^0.10.0",
"cdk-build-tools": "^0.10.0",
"cdk-integ-tools": "^0.10.0",
"pkglint": "^0.10.0"
"@aws-cdk/assert": "^0.11.0",
"aws-cdk": "^0.11.0",
"cdk-build-tools": "^0.11.0",
"cdk-integ-tools": "^0.11.0",
"pkglint": "^0.11.0"
},
"dependencies": {
"@aws-cdk/aws-iam": "^0.10.0",
"@aws-cdk/aws-s3": "^0.10.0",
"@aws-cdk/cdk": "^0.10.0",
"@aws-cdk/cx-api": "^0.10.0"
"@aws-cdk/aws-iam": "^0.11.0",
"@aws-cdk/aws-s3": "^0.11.0",
"@aws-cdk/cdk": "^0.11.0",
"@aws-cdk/cx-api": "^0.11.0"
},
"homepage": "https://github.com/awslabs/aws-cdk"
}
12 changes: 6 additions & 6 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.10.0",
"version": "0.11.0",
"description": "The CDK Construct Library for AWS::AmazonMQ",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -53,12 +53,12 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^0.10.0",
"cdk-build-tools": "^0.10.0",
"cfn2ts": "^0.10.0",
"pkglint": "^0.10.0"
"@aws-cdk/assert": "^0.11.0",
"cdk-build-tools": "^0.11.0",
"cfn2ts": "^0.11.0",
"pkglint": "^0.11.0"
},
"dependencies": {
"@aws-cdk/cdk": "^0.10.0"
"@aws-cdk/cdk": "^0.11.0"
}
}
18 changes: 9 additions & 9 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.10.0",
"version": "0.11.0",
"description": "The CDK Construct Library for AWS::ApiGateway",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -52,16 +52,16 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^0.10.0",
"cdk-build-tools": "^0.10.0",
"cdk-integ-tools": "^0.10.0",
"cfn2ts": "^0.10.0",
"pkglint": "^0.10.0"
"@aws-cdk/assert": "^0.11.0",
"cdk-build-tools": "^0.11.0",
"cdk-integ-tools": "^0.11.0",
"cfn2ts": "^0.11.0",
"pkglint": "^0.11.0"
},
"dependencies": {
"@aws-cdk/aws-iam": "^0.10.0",
"@aws-cdk/aws-lambda": "^0.10.0",
"@aws-cdk/cdk": "^0.10.0"
"@aws-cdk/aws-iam": "^0.11.0",
"@aws-cdk/aws-lambda": "^0.11.0",
"@aws-cdk/cdk": "^0.11.0"
},
"homepage": "https://github.com/awslabs/aws-cdk"
}
12 changes: 6 additions & 6 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.10.0",
"version": "0.11.0",
"description": "The CDK Construct Library for AWS::ApplicationAutoScaling",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -52,13 +52,13 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^0.10.0",
"cdk-build-tools": "^0.10.0",
"cfn2ts": "^0.10.0",
"pkglint": "^0.10.0"
"@aws-cdk/assert": "^0.11.0",
"cdk-build-tools": "^0.11.0",
"cfn2ts": "^0.11.0",
"pkglint": "^0.11.0"
},
"dependencies": {
"@aws-cdk/cdk": "^0.10.0"
"@aws-cdk/cdk": "^0.11.0"
},
"homepage": "https://github.com/awslabs/aws-cdk"
}
12 changes: 6 additions & 6 deletions packages/@aws-cdk/aws-appsync/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-cdk/aws-appsync",
"version": "0.10.0",
"version": "0.11.0",
"description": "The CDK Construct Library for AWS::AppSync",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -52,13 +52,13 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^0.10.0",
"cdk-build-tools": "^0.10.0",
"cfn2ts": "^0.10.0",
"pkglint": "^0.10.0"
"@aws-cdk/assert": "^0.11.0",
"cdk-build-tools": "^0.11.0",
"cfn2ts": "^0.11.0",
"pkglint": "^0.11.0"
},
"dependencies": {
"@aws-cdk/cdk": "^0.10.0"
"@aws-cdk/cdk": "^0.11.0"
},
"homepage": "https://github.com/awslabs/aws-cdk"
}
12 changes: 6 additions & 6 deletions packages/@aws-cdk/aws-athena/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-cdk/aws-athena",
"version": "0.10.0",
"version": "0.11.0",
"description": "The CDK Construct Library for AWS::Athena",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -52,13 +52,13 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^0.10.0",
"cdk-build-tools": "^0.10.0",
"cfn2ts": "^0.10.0",
"pkglint": "^0.10.0"
"@aws-cdk/assert": "^0.11.0",
"cdk-build-tools": "^0.11.0",
"cfn2ts": "^0.11.0",
"pkglint": "^0.11.0"
},
"dependencies": {
"@aws-cdk/cdk": "^0.10.0"
"@aws-cdk/cdk": "^0.11.0"
},
"homepage": "https://github.com/awslabs/aws-cdk"
}
Loading

0 comments on commit 3078753

Please sign in to comment.