Skip to content

Commit 1bc2d34

Browse files
authored
chore(release): 2.76.1 (#25243)
See [CHANGELOG.v2.md](https://github.com/aws/aws-cdk/blob/main/CHANGELOG.v2.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
2 parents 78c411b + e4c54d8 commit 1bc2d34

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.v2.alpha.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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+
## [2.76.1-alpha.0](https://github.com/aws/aws-cdk/compare/v2.76.0-alpha.0...v2.76.1-alpha.0) (2023-04-21)
6+
57
## [2.76.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.75.1-alpha.0...v2.76.0-alpha.0) (2023-04-19)
68

79
## [2.75.1-alpha.0](https://github.com/aws/aws-cdk/compare/v2.75.0-alpha.0...v2.75.1-alpha.0) (2023-04-18)

CHANGELOG.v2.md

+7
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+
## [2.76.1](https://github.com/aws/aws-cdk/compare/v2.76.0...v2.76.1) (2023-04-21)
6+
7+
8+
### Bug Fixes
9+
10+
* **custom-resources:** State functionActiveV2 not found ([#25228](https://github.com/aws/aws-cdk/issues/25228)) ([be8e8aa](https://github.com/aws/aws-cdk/commit/be8e8aa42443ea96071123c6277ce08222c62191)), closes [#24358](https://github.com/aws/aws-cdk/issues/24358)
11+
512
## [2.76.0](https://github.com/aws/aws-cdk/compare/v2.75.1...v2.76.0) (2023-04-19)
613

714

packages/aws-cdk-lib/custom-resources/lib/provider-framework/runtime/outbound.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,12 @@ async function defaultInvokeFunction(req: AWS.Lambda.InvocationRequest): Promise
6262
* Exits the loop on 'Active' state and throws an error on 'Inactive' or 'Failed'.
6363
*
6464
* And now we wait.
65+
*
66+
* Use functionActive instead of functionActiveV2, since functionActiveV2 is only
67+
* available on SDK 2.1080.0 and up, Lambda installs 2.1055.0 by default,
68+
* and we use the SDK version that Lambda includes by default.
6569
*/
66-
await lambda.waitFor('functionActiveV2', {
70+
await lambda.waitFor('functionActive', {
6771
FunctionName: req.FunctionName,
6872
}).promise();
6973
return await lambda.invoke(req).promise();

version.v2.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "2.76.0",
3-
"alphaVersion": "2.76.0-alpha.0"
2+
"version": "2.76.1",
3+
"alphaVersion": "2.76.1-alpha.0"
44
}

0 commit comments

Comments
 (0)