Skip to content

Commit 60d8f91

Browse files
authored
chore(release): 1.94.1 (#13625)
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*
2 parents 2c1c0eb + 3d65124 commit 60d8f91

File tree

9 files changed

+16
-9
lines changed

9 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
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.
44

5+
## [1.94.1](https://github.com/aws/aws-cdk/compare/v1.94.0...v1.94.1) (2021-03-16)
6+
7+
8+
### Bug Fixes
9+
10+
* **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))
11+
512
## [1.94.0](https://github.com/aws/aws-cdk/compare/v1.93.0...v1.94.0) (2021-03-16)
613

714

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

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

73-
* **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.
80+
* **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.
7481

7582
### ⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES
7683

packages/@aws-cdk/aws-lambda-event-sources/test/integ.s3.expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
"Arn"
186186
]
187187
},
188-
"Runtime": "nodejs14.x",
188+
"Runtime": "nodejs12.x",
189189
"Timeout": 300
190190
},
191191
"DependsOn": [

packages/@aws-cdk/aws-s3-notifications/test/integ.notifications.expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
"Arn"
221221
]
222222
},
223-
"Runtime": "nodejs14.x",
223+
"Runtime": "nodejs12.x",
224224
"Timeout": 300
225225
},
226226
"DependsOn": [

packages/@aws-cdk/aws-s3-notifications/test/lambda/integ.bucket-notifications.expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@
244244
"Arn"
245245
]
246246
},
247-
"Runtime": "nodejs14.x",
247+
"Runtime": "nodejs12.x",
248248
"Timeout": 300
249249
},
250250
"DependsOn": [

packages/@aws-cdk/aws-s3-notifications/test/sns/integ.sns-bucket-notifications.expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@
203203
"Arn"
204204
]
205205
},
206-
"Runtime": "nodejs14.x",
206+
"Runtime": "nodejs12.x",
207207
"Timeout": 300
208208
},
209209
"DependsOn": [

packages/@aws-cdk/aws-s3-notifications/test/sqs/integ.bucket-notifications.expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@
192192
"Arn"
193193
]
194194
},
195-
"Runtime": "nodejs14.x",
195+
"Runtime": "nodejs12.x",
196196
"Timeout": 300
197197
},
198198
"DependsOn": [

packages/@aws-cdk/aws-s3/lib/notifications-resource/notifications-resource-handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export class NotificationsResourceHandler extends Construct {
8282
Code: { ZipFile: `exports.handler = ${handler.toString()};` },
8383
Handler: 'index.handler',
8484
Role: role.roleArn,
85-
Runtime: 'nodejs14.x',
85+
Runtime: 'nodejs12.x',
8686
Timeout: 300,
8787
},
8888
});

scripts/bump.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const forTesting = process.env.BUMP_CANDIDATE || false;
1111

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

1717
console.error(`Starting ${releaseAs} version bump`);

version.v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "1.94.0"
2+
"version": "1.94.1"
33
}

0 commit comments

Comments
 (0)