Skip to content

Commit 42432c6

Browse files
authored
chore(release): 2.31.1 (#21067)
---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
2 parents b67950d + 6a86fd8 commit 42432c6

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
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.31.1-alpha.0](https://github.com/aws/aws-cdk/compare/v2.31.0-alpha.0...v2.31.1-alpha.0) (2022-07-08)
6+
57
## [2.31.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.30.0-alpha.0...v2.31.0-alpha.0) (2022-07-06)
68

79

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.31.1](https://github.com/aws/aws-cdk/compare/v2.31.0...v2.31.1) (2022-07-08)
6+
7+
8+
### Bug Fixes
9+
10+
* **custom-resources:** Custom resource provider framework not passing `ResponseURL` to user function ([#21065](https://github.com/aws/aws-cdk/issues/21065)) ([f7b25b6](https://github.com/aws/aws-cdk/commit/f7b25b671003b8d6c7400811484beb4284bebacb)), closes [#21058](https://github.com/aws/aws-cdk/issues/21058)
11+
512
## [2.31.0](https://github.com/aws/aws-cdk/compare/v2.30.0...v2.31.0) (2022-07-06)
613

714

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

+1-3
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,7 @@ async function invokeUserFunction<A extends { ResponseURL: '...' }>(functionArnE
105105
// automatically by the JavaScript SDK.
106106
const resp = await invokeFunction({
107107
FunctionName: functionArn,
108-
109-
// Strip 'ResponseURL' -- the downstream CR doesn't need it and can only log it by accident
110-
Payload: JSON.stringify({ ...sanitizedPayload, ResponseURL: undefined }),
108+
Payload: JSON.stringify(sanitizedPayload),
111109
});
112110

113111
log('user function response:', resp, typeof(resp));

version.v2.json

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

0 commit comments

Comments
 (0)