Skip to content

Commit

Permalink
chore(release): 1.94.1 (#13625)
Browse files Browse the repository at this point in the history
See [CHANGELOG](https://github.com/aws/aws-cdk/blob/patch/v1.94.1/CHANGELOG.md)

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
mergify[bot] committed Mar 16, 2021
2 parents 2c1c0eb + 3d65124 commit 60d8f91
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 9 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.94.1](https://github.com/aws/aws-cdk/compare/v1.94.0...v1.94.1) (2021-03-16)


### Bug Fixes

* **s3:** Notifications fail to deploy due to incompatible node runtime ([#13624](https://github.com/aws/aws-cdk/issues/13624)) ([26bc3d4](https://github.com/aws/aws-cdk/commit/26bc3d4951a96a4bdf3e3e10464a4e3b80ed563f))

## [1.94.0](https://github.com/aws/aws-cdk/compare/v1.93.0...v1.94.0) (2021-03-16)


Expand Down Expand Up @@ -70,7 +77,7 @@ All notable changes to this project will be documented in this file. See [standa

## [1.92.0](https://github.com/aws/aws-cdk/compare/v1.91.0...v1.92.0) (2021-03-06)

* **ecs-patterns**: the `desiredCount` property stored on the above constructs will be optional, allowing them to be undefined. This is enabled through the `@aws-cdk/aws-ecs-patterns:removeDefaultDesiredCount` feature flag. We would recommend all CDK users to set the `@aws-cdk/aws-ecs-patterns:removeDefaultDesiredCount` flag to `true` for all of their existing applications.
* **ecs-patterns**: the `desiredCount` property stored on the above constructs will be optional, allowing them to be undefined. This is enabled through the `@aws-cdk/aws-ecs-patterns:removeDefaultDesiredCount` feature flag. We would recommend all CDK users to set the `@aws-cdk/aws-ecs-patterns:removeDefaultDesiredCount` flag to `true` for all of their existing applications.

### ⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@
"Arn"
]
},
"Runtime": "nodejs14.x",
"Runtime": "nodejs12.x",
"Timeout": 300
},
"DependsOn": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
"Arn"
]
},
"Runtime": "nodejs14.x",
"Runtime": "nodejs12.x",
"Timeout": 300
},
"DependsOn": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
"Arn"
]
},
"Runtime": "nodejs14.x",
"Runtime": "nodejs12.x",
"Timeout": 300
},
"DependsOn": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@
"Arn"
]
},
"Runtime": "nodejs14.x",
"Runtime": "nodejs12.x",
"Timeout": 300
},
"DependsOn": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@
"Arn"
]
},
"Runtime": "nodejs14.x",
"Runtime": "nodejs12.x",
"Timeout": 300
},
"DependsOn": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class NotificationsResourceHandler extends Construct {
Code: { ZipFile: `exports.handler = ${handler.toString()};` },
Handler: 'index.handler',
Role: role.roleArn,
Runtime: 'nodejs14.x',
Runtime: 'nodejs12.x',
Timeout: 300,
},
});
Expand Down
2 changes: 1 addition & 1 deletion scripts/bump.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const forTesting = process.env.BUMP_CANDIDATE || false;

async function main() {
if (releaseAs !== 'minor' && releaseAs !== 'patch') {
throw new error(`invalid bump type "${releaseAs}". only "minor" (the default) and "patch" are allowed. major version bumps require *slightly* more intention`);
throw new Error(`invalid bump type "${releaseAs}". only "minor" (the default) and "patch" are allowed. major version bumps require *slightly* more intention`);
}

console.error(`Starting ${releaseAs} version bump`);
Expand Down
2 changes: 1 addition & 1 deletion version.v1.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "1.94.0"
"version": "1.94.1"
}

0 comments on commit 60d8f91

Please sign in to comment.