Skip to content
Merged
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
29 changes: 25 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,31 @@
[@moofish32]: https://github.com/moofish32
[@mpiroc]: https://github.com/mpiroc
[@Doug-AWS]: https://github.com/Doug-AWS

## UNRELEASED

* _**BREAKING**_: renamed `@aws-cdk/rtv` to `@aws-cdk/runtime-values`.
[@mindstorms6]: https://github.com/mindstorms6
[@Mortifera]: https://github.com/Mortifera

## 0.8.1 - 2018-08-08

### Features

* __aws-cdk__: Support `--profile` in command-line toolkit ([@rix0rrr] in [#517](https://github.com/awslabs/aws-cdk/issues/517))
* __@aws-cdk/cdk__: Introduce `Default` construct id ([@rix0rrr] in [#496](https://github.com/awslabs/aws-cdk/issues/496))
* __@aws-cdk/aws-lambda__: Add `LambdaRuntime.DotNetCore21` ([@Mortifera] in [#507](https://github.com/awslabs/aws-cdk/issues/507))
* __@aws-cdk/runtime-values__ (_**BREAKING**_): rename 'rtv' to 'runtime-values' ([@rix0rrr] in [#494](https://github.com/awslabs/aws-cdk/issues/494))
* __@aws-cdk/aws-ec2__: Combine `Connections` and `DefaultConnections` classes ([@rix0rrr] in [#453](https://github.com/awslabs/aws-cdk/issues/453))
* __@aws-cdk/aws-codebuild__: allow `buildSpec` parameter to take a filename ([@rix0rrr] in [#470](https://github.com/awslabs/aws-cdk/issues/470))
* __@aws-cdk/aws-cloudformation-codepipeline__: add support for CloudFormation CodePipeline actions ([@mindstorms6] and [@rix0rrr] in [#525](https://github.com/awslabs/aws-cdk/pull/525)).
* __docs__: Improvements to Getting Started ([@eladb] in [#462](https://github.com/awslabs/aws-cdk/issues/462))
* __docs__: Updates to README ([@Doug-AWS] in [#456](https://github.com/awslabs/aws-cdk/issues/456))
* __docs__: Upgraded `jsii-pacmak` to `0.6.4`, which includes "language-native" type names and package coordinates ([@RomainMuller] in [awslabs/jsii#130](https://github.com/awslabs/jsii/pull/130))

### Bug fixes

* __aws-cdk__ (toolkit): Fix java `cdk init` template ([@RomainMuller] in [#490](https://github.com/awslabs/aws-cdk/issues/490))
* __@aws-cdk/cdk__ (_**BREAKING**_): Align `FnJoin` signature to CloudFormation ([@RomainMuller] in [#516](https://github.com/awslabs/aws-cdk/issues/516))
* __@aws-cdk/aws-cloudfront__: Fix origin error ([@mindstorms6] in [#514](https://github.com/awslabs/aws-cdk/issues/514))
* __@aws-cdk/aws-lambda__: Invalid cast for inline LambdaRuntime members in Java ([@eladb] in [#505](https://github.com/awslabs/aws-cdk/issues/505))
* __examples__: Fixed java examples ([@RomainMuller] in [#498](https://github.com/awslabs/aws-cdk/issues/498))

## 0.8.0 - 2018-07-31

Expand Down
14 changes: 14 additions & 0 deletions bump.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash
set -euo pipefail
ver=${1:-}
if [ -z "${ver}" ]; then
echo "usage: ./bump.sh <version>"
exit 1
fi

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

# update test expectations
UPDATE_DIFF=1 lerna run test

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.8.0",
"version": "0.8.1",
"description": "CDK examples in Java",
"private": true,
"repository": {
Expand All @@ -22,7 +22,7 @@
},
"license": "Apache-2.0",
"devDependencies": {
"aws-cdk": "^0.8.0",
"pkgtools": "^0.8.0"
"aws-cdk": "^0.8.1",
"pkgtools": "^0.8.1"
}
}
34 changes: 17 additions & 17 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.8.0",
"version": "0.8.1",
"description": "A bunch of CDK examples",
"private": true,
"scripts": {
Expand All @@ -18,24 +18,24 @@
},
"license": "Apache-2.0",
"devDependencies": {
"aws-cdk": "^0.8.0",
"cdk-build-tools": "^0.8.0",
"pkglint": "^0.8.0"
"aws-cdk": "^0.8.1",
"cdk-build-tools": "^0.8.1",
"pkglint": "^0.8.1"
},
"dependencies": {
"@aws-cdk/aws-cloudformation": "^0.8.0",
"@aws-cdk/aws-cognito": "^0.8.0",
"@aws-cdk/aws-dynamodb": "^0.8.0",
"@aws-cdk/aws-ec2": "^0.8.0",
"@aws-cdk/aws-iam": "^0.8.0",
"@aws-cdk/aws-lambda": "^0.8.0",
"@aws-cdk/aws-neptune": "^0.8.0",
"@aws-cdk/aws-rds": "^0.8.0",
"@aws-cdk/aws-s3": "^0.8.0",
"@aws-cdk/aws-sns": "^0.8.0",
"@aws-cdk/aws-sqs": "^0.8.0",
"@aws-cdk/cdk": "^0.8.0",
"@aws-cdk/runtime-values": "^0.8.0"
"@aws-cdk/aws-cloudformation": "^0.8.1",
"@aws-cdk/aws-cognito": "^0.8.1",
"@aws-cdk/aws-dynamodb": "^0.8.1",
"@aws-cdk/aws-ec2": "^0.8.1",
"@aws-cdk/aws-iam": "^0.8.1",
"@aws-cdk/aws-lambda": "^0.8.1",
"@aws-cdk/aws-neptune": "^0.8.1",
"@aws-cdk/aws-rds": "^0.8.1",
"@aws-cdk/aws-s3": "^0.8.1",
"@aws-cdk/aws-sns": "^0.8.1",
"@aws-cdk/aws-sqs": "^0.8.1",
"@aws-cdk/cdk": "^0.8.1",
"@aws-cdk/runtime-values": "^0.8.1"
},
"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 @@
"examples/*"
],
"rejectCycles": "true",
"version": "0.8.0"
"version": "0.8.1"
}
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.8.0",
"version": "0.8.1",
"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.8.0",
"pkglint": "^0.8.0"
"cdk-build-tools": "^0.8.1",
"pkglint": "^0.8.1"
},
"dependencies": {
"@aws-cdk/cdk": "^0.8.0",
"@aws-cdk/cdk": "^0.8.1",
"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.8.0",
"version": "0.8.1",
"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.8.0",
"pkglint": "^0.8.0"
"cdk-build-tools": "^0.8.1",
"pkglint": "^0.8.1"
},
"dependencies": {
"@aws-cdk/cdk": "^0.8.0",
"@aws-cdk/cloudformation-diff": "^0.8.0",
"@aws-cdk/cx-api": "^0.8.0",
"@aws-cdk/cdk": "^0.8.1",
"@aws-cdk/cloudformation-diff": "^0.8.1",
"@aws-cdk/cx-api": "^0.8.1",
"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.8.0",
"version": "0.8.1",
"description": "Integration of CDK apps with local assets",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -43,17 +43,17 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^0.8.0",
"aws-cdk": "^0.8.0",
"cdk-build-tools": "^0.8.0",
"cdk-integ-tools": "^0.8.0",
"pkglint": "^0.8.0"
"@aws-cdk/assert": "^0.8.1",
"aws-cdk": "^0.8.1",
"cdk-build-tools": "^0.8.1",
"cdk-integ-tools": "^0.8.1",
"pkglint": "^0.8.1"
},
"dependencies": {
"@aws-cdk/aws-iam": "^0.8.0",
"@aws-cdk/aws-s3": "^0.8.0",
"@aws-cdk/cdk": "^0.8.0",
"@aws-cdk/cx-api": "^0.8.0"
"@aws-cdk/aws-iam": "^0.8.1",
"@aws-cdk/aws-s3": "^0.8.1",
"@aws-cdk/cdk": "^0.8.1",
"@aws-cdk/cx-api": "^0.8.1"
},
"homepage": "https://github.com/awslabs/aws-cdk"
}
12 changes: 6 additions & 6 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.8.0",
"version": "0.8.1",
"description": "The CDK Construct Library for AWS::ApiGateway",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -46,13 +46,13 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^0.8.0",
"cdk-build-tools": "^0.8.0",
"cfn2ts": "^0.8.0",
"pkglint": "^0.8.0"
"@aws-cdk/assert": "^0.8.1",
"cdk-build-tools": "^0.8.1",
"cfn2ts": "^0.8.1",
"pkglint": "^0.8.1"
},
"dependencies": {
"@aws-cdk/cdk": "^0.8.0"
"@aws-cdk/cdk": "^0.8.1"
},
"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.8.0",
"version": "0.8.1",
"description": "The CDK Construct Library for AWS::ApplicationAutoScaling",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -46,13 +46,13 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^0.8.0",
"cdk-build-tools": "^0.8.0",
"cfn2ts": "^0.8.0",
"pkglint": "^0.8.0"
"@aws-cdk/assert": "^0.8.1",
"cdk-build-tools": "^0.8.1",
"cfn2ts": "^0.8.1",
"pkglint": "^0.8.1"
},
"dependencies": {
"@aws-cdk/cdk": "^0.8.0"
"@aws-cdk/cdk": "^0.8.1"
},
"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.8.0",
"version": "0.8.1",
"description": "The CDK Construct Library for AWS::AppSync",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -46,13 +46,13 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^0.8.0",
"cdk-build-tools": "^0.8.0",
"cfn2ts": "^0.8.0",
"pkglint": "^0.8.0"
"@aws-cdk/assert": "^0.8.1",
"cdk-build-tools": "^0.8.1",
"cfn2ts": "^0.8.1",
"pkglint": "^0.8.1"
},
"dependencies": {
"@aws-cdk/cdk": "^0.8.0"
"@aws-cdk/cdk": "^0.8.1"
},
"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.8.0",
"version": "0.8.1",
"description": "The CDK Construct Library for AWS::Athena",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -46,13 +46,13 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^0.8.0",
"cdk-build-tools": "^0.8.0",
"cfn2ts": "^0.8.0",
"pkglint": "^0.8.0"
"@aws-cdk/assert": "^0.8.1",
"cdk-build-tools": "^0.8.1",
"cfn2ts": "^0.8.1",
"pkglint": "^0.8.1"
},
"dependencies": {
"@aws-cdk/cdk": "^0.8.0"
"@aws-cdk/cdk": "^0.8.1"
},
"homepage": "https://github.com/awslabs/aws-cdk"
}
12 changes: 6 additions & 6 deletions packages/@aws-cdk/aws-autoscaling/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-cdk/aws-autoscaling",
"version": "0.8.0",
"version": "0.8.1",
"description": "The CDK Construct Library for AWS::AutoScaling",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -46,13 +46,13 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^0.8.0",
"cdk-build-tools": "^0.8.0",
"cfn2ts": "^0.8.0",
"pkglint": "^0.8.0"
"@aws-cdk/assert": "^0.8.1",
"cdk-build-tools": "^0.8.1",
"cfn2ts": "^0.8.1",
"pkglint": "^0.8.1"
},
"dependencies": {
"@aws-cdk/cdk": "^0.8.0"
"@aws-cdk/cdk": "^0.8.1"
},
"homepage": "https://github.com/awslabs/aws-cdk"
}
12 changes: 6 additions & 6 deletions packages/@aws-cdk/aws-autoscalingplans/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-cdk/aws-autoscalingplans",
"version": "0.8.0",
"version": "0.8.1",
"description": "The CDK Construct Library for AWS::AutoScalingPlans",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -46,13 +46,13 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^0.8.0",
"cdk-build-tools": "^0.8.0",
"cfn2ts": "^0.8.0",
"pkglint": "^0.8.0"
"@aws-cdk/assert": "^0.8.1",
"cdk-build-tools": "^0.8.1",
"cfn2ts": "^0.8.1",
"pkglint": "^0.8.1"
},
"dependencies": {
"@aws-cdk/cdk": "^0.8.0"
"@aws-cdk/cdk": "^0.8.1"
},
"homepage": "https://github.com/awslabs/aws-cdk"
}
12 changes: 6 additions & 6 deletions packages/@aws-cdk/aws-batch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-cdk/aws-batch",
"version": "0.8.0",
"version": "0.8.1",
"description": "The CDK Construct Library for AWS::Batch",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -46,13 +46,13 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/assert": "^0.8.0",
"cdk-build-tools": "^0.8.0",
"cfn2ts": "^0.8.0",
"pkglint": "^0.8.0"
"@aws-cdk/assert": "^0.8.1",
"cdk-build-tools": "^0.8.1",
"cfn2ts": "^0.8.1",
"pkglint": "^0.8.1"
},
"dependencies": {
"@aws-cdk/cdk": "^0.8.0"
"@aws-cdk/cdk": "^0.8.1"
},
"homepage": "https://github.com/awslabs/aws-cdk"
}
Loading