Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
aijunpeng authored Oct 26, 2020
2 parents e544a87 + ea473e6 commit d374ed1
Show file tree
Hide file tree
Showing 120 changed files with 7,560 additions and 1,814 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,26 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.69.0] - 2020-10-21

### Changed
- Upgraded all patterns to CDK v1.69.0
- BREAKING CHANGE: Updated `aws-events-rule-sns` and `aws-events-rule-sqs` patterns to use pascal case for class and interface names

## [1.68.0] - 2020-10-16

### Added
- aws-kinesisstreams-kinesisfirehose-s3 pattern added ([#74](https://github.com/awslabs/aws-solutions-constructs/issues/74))
- aws-apigateway-sagemakerendpoint pattern added ([#75](https://github.com/awslabs/aws-solutions-constructs/issues/75))

### Changed
- Upgraded all patterns to CDK v1.68.0
- BREAKING CHANGE: For All `aws-cloudfront-*` patterns, changed the underlying CloudFront L2 construct from `CloudFrontWebDistribution` to `Distribution`

## [1.67.0] - 2020-10-09

### Changed
- Upgraded all patterns to CDK v1.66.0
- Upgraded all patterns to CDK v1.67.0
- Make CloudWatch alarm creation optional ([#85](https://github.com/awslabs/aws-solutions-constructs/issues/85))

## [1.66.0] - 2020-10-06
Expand Down
2 changes: 1 addition & 1 deletion source/lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"./patterns/@aws-solutions-constructs/*"
],
"rejectCycles": "true",
"version": "1.67.0"
"version": "1.69.0"
}
2 changes: 1 addition & 1 deletion source/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aws-solutions-constructs",
"version": "1.67.0",
"version": "1.69.0",
"description": "AWS Solutions Constructs Library",
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-solutions-constructs/aws-apigateway-dynamodb",
"version": "1.67.0",
"version": "1.69.0",
"description": "CDK Constructs for AWS API Gateway and Amazon DynamoDB integration.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -53,16 +53,16 @@
}
},
"dependencies": {
"@aws-cdk/core": "~1.67.0",
"@aws-cdk/aws-apigateway": "~1.67.0",
"@aws-cdk/aws-iam": "~1.67.0",
"@aws-cdk/aws-dynamodb": "~1.67.0",
"@aws-cdk/aws-logs": "~1.67.0",
"@aws-solutions-constructs/core": "~1.67.0",
"@aws-cdk/core": "~1.69.0",
"@aws-cdk/aws-apigateway": "~1.69.0",
"@aws-cdk/aws-iam": "~1.69.0",
"@aws-cdk/aws-dynamodb": "~1.69.0",
"@aws-cdk/aws-logs": "~1.69.0",
"@aws-solutions-constructs/core": "~1.69.0",
"constructs": "^3.0.4"
},
"devDependencies": {
"@aws-cdk/assert": "~1.67.0",
"@aws-cdk/assert": "~1.69.0",
"@types/jest": "^24.0.23",
"@types/node": "^10.3.0"
},
Expand All @@ -72,12 +72,12 @@
]
},
"peerDependencies": {
"@aws-cdk/core": "~1.67.0",
"@aws-cdk/aws-apigateway": "~1.67.0",
"@aws-cdk/aws-iam": "~1.67.0",
"@aws-cdk/aws-dynamodb": "~1.67.0",
"@aws-solutions-constructs/core": "~1.67.0",
"@aws-cdk/core": "~1.69.0",
"@aws-cdk/aws-apigateway": "~1.69.0",
"@aws-cdk/aws-iam": "~1.69.0",
"@aws-cdk/aws-dynamodb": "~1.69.0",
"@aws-solutions-constructs/core": "~1.69.0",
"constructs": "^3.0.4",
"@aws-cdk/aws-logs": "~1.67.0"
"@aws-cdk/aws-logs": "~1.69.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,11 @@ This implementation enables write-only messages to be published on given MQTT to

Here is a minimal deployable pattern definition in Typescript:

``` javascript
const { ApiGatewayToIot } from '@aws-solutions-constructs/aws-apigateway-iot';
``` typescript
import { ApiGatewayToIot } from '@aws-solutions-constructs/aws-apigateway-iot';

new ApiGatewayToIot(this, 'ApiGatewayToIotPattern', {
apiGatewayToIotProps: {
iotEndpoint: 'a1234567890123-ats'
}
iotEndpoint: 'a1234567890123-ats'
});

```
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-solutions-constructs/aws-apigateway-iot",
"version": "1.67.0",
"version": "1.69.0",
"description": "CDK constructs to proxy communication to IotCore using a APIGateway(REST).",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -53,15 +53,15 @@
}
},
"dependencies": {
"@aws-cdk/aws-apigateway": "~1.67.0",
"@aws-cdk/aws-logs": "~1.67.0",
"@aws-cdk/core": "~1.67.0",
"@aws-cdk/aws-iam": "~1.67.0",
"@aws-solutions-constructs/core": "~1.67.0",
"@aws-cdk/aws-apigateway": "~1.69.0",
"@aws-cdk/aws-logs": "~1.69.0",
"@aws-cdk/core": "~1.69.0",
"@aws-cdk/aws-iam": "~1.69.0",
"@aws-solutions-constructs/core": "~1.69.0",
"constructs": "^3.0.4"
},
"devDependencies": {
"@aws-cdk/assert": "~1.67.0",
"@aws-cdk/assert": "~1.69.0",
"@types/jest": "^24.0.23",
"@types/node": "^10.3.0"
},
Expand All @@ -71,11 +71,11 @@
]
},
"peerDependencies": {
"@aws-cdk/aws-apigateway": "~1.67.0",
"@aws-cdk/aws-logs": "~1.67.0",
"@aws-cdk/core": "~1.67.0",
"@aws-solutions-constructs/core": "~1.67.0",
"@aws-cdk/aws-apigateway": "~1.69.0",
"@aws-cdk/aws-logs": "~1.69.0",
"@aws-cdk/core": "~1.69.0",
"@aws-solutions-constructs/core": "~1.69.0",
"constructs": "^3.0.4",
"@aws-cdk/aws-iam": "~1.67.0"
"@aws-cdk/aws-iam": "~1.69.0"
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-solutions-constructs/aws-apigateway-kinesisstreams",
"version": "1.67.0",
"version": "1.69.0",
"description": "CDK Constructs for AWS API Gateway and Amazon Kinesis Data Streams integration.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -53,16 +53,16 @@
}
},
"dependencies": {
"@aws-cdk/core": "~1.67.0",
"@aws-cdk/aws-apigateway": "~1.67.0",
"@aws-cdk/aws-iam": "~1.67.0",
"@aws-cdk/aws-kinesis": "~1.67.0",
"@aws-cdk/aws-logs": "~1.67.0",
"@aws-solutions-constructs/core": "~1.67.0",
"@aws-cdk/core": "~1.69.0",
"@aws-cdk/aws-apigateway": "~1.69.0",
"@aws-cdk/aws-iam": "~1.69.0",
"@aws-cdk/aws-kinesis": "~1.69.0",
"@aws-cdk/aws-logs": "~1.69.0",
"@aws-solutions-constructs/core": "~1.69.0",
"constructs": "^3.0.4"
},
"devDependencies": {
"@aws-cdk/assert": "~1.67.0",
"@aws-cdk/assert": "~1.69.0",
"@types/jest": "^24.0.23",
"@types/node": "^10.3.0"
},
Expand All @@ -72,12 +72,12 @@
]
},
"peerDependencies": {
"@aws-cdk/core": "~1.67.0",
"@aws-cdk/aws-apigateway": "~1.67.0",
"@aws-cdk/aws-iam": "~1.67.0",
"@aws-cdk/aws-kinesis": "~1.67.0",
"@aws-solutions-constructs/core": "~1.67.0",
"@aws-cdk/core": "~1.69.0",
"@aws-cdk/aws-apigateway": "~1.69.0",
"@aws-cdk/aws-iam": "~1.69.0",
"@aws-cdk/aws-kinesis": "~1.69.0",
"@aws-solutions-constructs/core": "~1.69.0",
"constructs": "^3.0.4",
"@aws-cdk/aws-logs": "~1.67.0"
"@aws-cdk/aws-logs": "~1.69.0"
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-solutions-constructs/aws-apigateway-lambda",
"version": "1.67.0",
"version": "1.69.0",
"description": "CDK constructs for defining an interaction between an API Gateway and a Lambda function.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -53,16 +53,16 @@
}
},
"dependencies": {
"@aws-cdk/aws-apigateway": "~1.67.0",
"@aws-cdk/aws-lambda": "~1.67.0",
"@aws-cdk/aws-logs": "~1.67.0",
"@aws-cdk/core": "~1.67.0",
"@aws-cdk/aws-iam": "~1.67.0",
"@aws-solutions-constructs/core": "~1.67.0",
"@aws-cdk/aws-apigateway": "~1.69.0",
"@aws-cdk/aws-lambda": "~1.69.0",
"@aws-cdk/aws-logs": "~1.69.0",
"@aws-cdk/core": "~1.69.0",
"@aws-cdk/aws-iam": "~1.69.0",
"@aws-solutions-constructs/core": "~1.69.0",
"constructs": "^3.0.4"
},
"devDependencies": {
"@aws-cdk/assert": "~1.67.0",
"@aws-cdk/assert": "~1.69.0",
"@types/jest": "^24.0.23",
"@types/node": "^10.3.0"
},
Expand All @@ -72,12 +72,12 @@
]
},
"peerDependencies": {
"@aws-cdk/aws-apigateway": "~1.67.0",
"@aws-cdk/aws-lambda": "~1.67.0",
"@aws-cdk/aws-logs": "~1.67.0",
"@aws-cdk/core": "~1.67.0",
"@aws-solutions-constructs/core": "~1.67.0",
"@aws-cdk/aws-apigateway": "~1.69.0",
"@aws-cdk/aws-lambda": "~1.69.0",
"@aws-cdk/aws-logs": "~1.69.0",
"@aws-cdk/core": "~1.69.0",
"@aws-solutions-constructs/core": "~1.69.0",
"constructs": "^3.0.4",
"@aws-cdk/aws-iam": "~1.67.0"
"@aws-cdk/aws-iam": "~1.69.0"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
lib/*.js
test/*.js
*.d.ts
coverage
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
lib/*.js
test/*.js
*.js.map
*.d.ts
node_modules
*.generated.ts
dist
.jsii

.LAST_BUILD
.nyc_output
coverage
.nycrc
.LAST_PACKAGE
*.snk
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Exclude typescript source and config
*.ts
tsconfig.json
coverage
.nyc_output
*.tgz
*.snk
*.tsbuildinfo

# Include javascript files and typescript declarations
!*.js
!*.d.ts

# Exclude jsii outdir
dist

# Include .jsii
!.jsii
Loading

0 comments on commit d374ed1

Please sign in to comment.