Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…nstructs into 632
  • Loading branch information
mickychetta committed Apr 7, 2022
2 parents ef39952 + ac5aed7 commit c5085aa
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

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.149.0](https://github.com/awslabs/aws-solutions-constructs/compare/v2.5.0...v1.149.0) (2022-04-07)

* Upgraded all patterns to CDK v1.149.0

### Features

* **README.md:** add python and java minimal deployment ([#582](https://github.com/awslabs/aws-solutions-constructs/issues/582)) ([2ecd9dd](https://github.com/awslabs/aws-solutions-constructs/commit/2ecd9dd935b731d2e4705ed9c146efcad0961fd8))


### Bug Fixes

* **Remove debug statement:** Remove extra debug statement in kinesisfirehose-s3 ([#649](https://github.com/awslabs/aws-solutions-constructs/issues/649)) ([26e9ec0](https://github.com/awslabs/aws-solutions-constructs/commit/26e9ec08257a90034b76a91ea4a3d703d13eb0a2))
* **Sonarqube configuration:** Replace comma between constructs ([#646](https://github.com/awslabs/aws-solutions-constructs/issues/646)) ([79e1b09](https://github.com/awslabs/aws-solutions-constructs/commit/79e1b09544c2d029fb73a2b500dde5e35edbf63a))

## [1.148.0](https://github.com/awslabs/aws-solutions-constructs/compare/v1.147.0...v1.148.0) (2022-03-30)

* Upgraded all patterns to CDK v1.148.0
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.148.0"
"version": "1.149.0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { Construct } from "@aws-cdk/core";
import * as s3 from "@aws-cdk/aws-s3";
import * as defaults from "@aws-solutions-constructs/core";
import * as iam from "@aws-cdk/aws-iam";
import { overrideProps, printWarning, consolidateProps } from "@aws-solutions-constructs/core";
import { overrideProps, consolidateProps } from "@aws-solutions-constructs/core";
import * as logs from "@aws-cdk/aws-logs";
import * as cdk from "@aws-cdk/core";
import * as kms from "@aws-cdk/aws-kms";
Expand Down Expand Up @@ -170,7 +170,6 @@ export class KinesisFirehoseToS3 extends Construct {
awsManagedKey
);

printWarning(`kinesisFirehoseProps: ${JSON.stringify(props.kinesisFirehoseProps, null, 2)}`);
// if the client didn't explicity say it was a Kinesis client, then turn on encryption
if (!props.kinesisFirehoseProps ||
!props.kinesisFirehoseProps.deliveryStreamType ||
Expand All @@ -194,4 +193,4 @@ export class KinesisFirehoseToS3 extends Construct {
kinesisFirehoseProps
);
}
}
}

0 comments on commit c5085aa

Please sign in to comment.