You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.v2.alpha.md
+2
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,8 @@
2
2
3
3
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.
Copy file name to clipboardExpand all lines: CHANGELOG.v2.md
+25
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,31 @@
2
2
3
3
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.
* **eks:** support for Kubernetes version 1.30 ([#30454](https://github.com/aws/aws-cdk/issues/30454)) ([d2ea280](https://github.com/aws/aws-cdk/commit/d2ea2809cd3024052b8cfa76a990cbc9e9224688))
* **codepipeline:** `GitPushFilter` with branches and file paths for trigger ([#29127](https://github.com/aws/aws-cdk/issues/29127)) ([ddbbd00](https://github.com/aws/aws-cdk/commit/ddbbd002da6298679500d4dd6b6c5b1487bd5f5d)), closes [#29124](https://github.com/aws/aws-cdk/issues/29124)
16
+
* **logs:** add distribution property to the Subscription class ([#30423](https://github.com/aws/aws-cdk/issues/30423)) ([0e95bf0](https://github.com/aws/aws-cdk/commit/0e95bf0032f1beada8a1806724ef241613c3b41d)), closes [#30422](https://github.com/aws/aws-cdk/issues/30422)
17
+
18
+
19
+
### Bug Fixes
20
+
21
+
* **custom-resources:** `logApiResponseData` is added to custom resource event properties by default ([#30418](https://github.com/aws/aws-cdk/issues/30418)) ([a899ac6](https://github.com/aws/aws-cdk/commit/a899ac6692b1f36b4fe2cefb3268c4be10313ffa)), closes [#30121](https://github.com/aws/aws-cdk/issues/30121) [#29949](https://github.com/aws/aws-cdk/issues/29949) [#29648](https://github.com/aws/aws-cdk/issues/29648)
22
+
* route53 CrossAccountZoneDelegationRecord fails at deployment time with imported `delegatedZone` ([#30440](https://github.com/aws/aws-cdk/issues/30440)) ([a3d9b10](https://github.com/aws/aws-cdk/commit/a3d9b10ad9036486961f74e852493aa9684cfdb4)), closes [#28581](https://github.com/aws/aws-cdk/issues/28581)
* "feat(codepipeline): `GitPushFilter` with branches and file paths for trigger" ([#30462](https://github.com/aws/aws-cdk/issues/30462)) ([0fa3b1e](https://github.com/aws/aws-cdk/commit/0fa3b1efe94692859de9e7dff63a14edaa415fd0)), closes [aws/aws-cdk#29127](https://github.com/aws/aws-cdk/issues/29127)
Copy file name to clipboardExpand all lines: packages/aws-cdk-lib/cx-api/FEATURE_FLAGS.md
+11-7
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ Flags come in three types:
71
71
|[@aws-cdk/aws-ec2:ebsDefaultGp3Volume](#aws-cdkaws-ec2ebsdefaultgp3volume)| When enabled, the default volume type of the EBS volume will be GP3 | 2.140.0 | (default) |
72
72
|[@aws-cdk/pipelines:reduceAssetRoleTrustScope](#aws-cdkpipelinesreduceassetroletrustscope)| Remove the root account principal from PipelineAssetsFileRole trust policy | 2.141.0 | (default) |
|[@aws-cdk/custom-resources:logApiResponseDataPropertyTrueDefault](#aws-cdkcustom-resourceslogapiresponsedatapropertytruedefault)| When enabled, the custom resource used for AwsCustomResource will configure the logApiResponseData property as true by default |V2NEXT| (fix) |
74
+
|[@aws-cdk/custom-resources:logApiResponseDataPropertyTrueDefault](#aws-cdkcustom-resourceslogapiresponsedatapropertytruedefault)| When enabled, the custom resource used for `AwsCustomResource` will configure the `logApiResponseData` property as true by default |2.145.0| (fix) |
75
75
76
76
<!-- END table -->
77
77
@@ -1338,18 +1338,22 @@ When this featuer flag is enabled, remove the default deployment alarm settings
*When enabled, the custom resource used for AwsCustomResource will configure the logApiResponseData property as true by default* (fix)
1341
+
*When enabled, the custom resource used for `AwsCustomResource` will configure the `logApiResponseData` property as true by default* (fix)
1342
1342
1343
-
When this feature flag is enabled, the custom resource used for AwsCustomResource will configure the logApiResponseData property as true by default. This
1344
-
results in logApiResponseData being passed as true to the custom resource provider. Unlike most feature flags, we don't recommend setting this feature flag
1345
-
to true unless you're using the AwsCustomResource construct with logApiResponseData set to true as a custom resource event property by default and do not
1346
-
want to trigger an update by letting the default logApiResponseData value go back to undefined.
1343
+
This results in 'logApiResponseData' being passed as true to the custom resource provider. This will cause the custom resource handler to receive an 'Update' event. If you don't
1344
+
have an SDK call configured for the 'Update' event and you're dependent on specific SDK call response data, you will see this error from CFN:
1345
+
1346
+
CustomResource attribute error: Vendor response doesn't contain <attribute-name> attribute in object. See https://github.com/aws/aws-cdk/issues/29949) for more details.
1347
+
1348
+
Unlike most feature flags, we don't recommend setting this feature flag to true. However, if you're using the 'AwsCustomResource' construct with 'logApiResponseData' as true in
1349
+
the event object, then setting this feature flag will keep this behavior. Otherwise, setting this feature flag to false will trigger an 'Update' event by removing the 'logApiResponseData'
the event object, then setting this feature flag will keep this behavior. Otherwise, setting this feature flag to false will trigger an 'Update' event by removing the 'logApiResponseData'
0 commit comments