Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.v2.alpha.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

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.

## [2.225.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.224.0-alpha.0...v2.225.0-alpha.0) (2025-11-17)

## [2.224.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.223.0-alpha.0...v2.224.0-alpha.0) (2025-11-13)

### Features
Expand Down
27 changes: 27 additions & 0 deletions CHANGELOG.v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,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.

## [2.225.0](https://github.com/aws/aws-cdk/compare/v2.224.0...v2.225.0) (2025-11-17)


### ⚠ BREAKING CHANGES

* ** L1 resources are automatically generated from public CloudFormation Resource Schemas. They are built to closely reflect the real state of CloudFormation. Sometimes these updates can contain changes that are incompatible with previous types, but more accurately reflect reality. In this release we have changed:

- **aws-dynamodb**: AWS::DynamoDB::GlobalTable: ResourcePolicy property is now required.

### Features

* update L1 CloudFormation resource definitions ([#36082](https://github.com/aws/aws-cdk/issues/36082)) ([3df1d81](https://github.com/aws/aws-cdk/commit/3df1d81014f305c21e33522aa7cd26a91a21371b))
* **custom-resource:** add External ID support for AwsCustomResource ([#35252](https://github.com/aws/aws-cdk/issues/35252)) ([9f6c02b](https://github.com/aws/aws-cdk/commit/9f6c02ba7a1c5369add94d0f2c3ffe4ecadd2761)), closes [#34018](https://github.com/aws/aws-cdk/issues/34018)
* **route53:** support restricting delegated zone names when using grantDelegation ([#35129](https://github.com/aws/aws-cdk/issues/35129)) ([d832aca](https://github.com/aws/aws-cdk/commit/d832aca6059a9737437d2fe9d349d79cddbb0605))


### Bug Fixes

* **aws-cdk-lib:** temporary Cloud Assemblies are not cleaned up ([#36043](https://github.com/aws/aws-cdk/issues/36043)) ([1ace1ef](https://github.com/aws/aws-cdk/commit/1ace1efdca879f3e871a7f32bababfe62d8b0afc)), closes [#802](https://github.com/aws/aws-cdk/issues/802)
* **cognito:** remove overly strict validation for threat protection on non-PLUS plans ([#36027](https://github.com/aws/aws-cdk/issues/36027)) ([172c65f](https://github.com/aws/aws-cdk/commit/172c65feb7f25060abf98fc704d815acfe4c9d6d)), closes [#36023](https://github.com/aws/aws-cdk/issues/36023)
* **s3-deployment:** `Source.jsonData()` fails with null JSON values ([#36054](https://github.com/aws/aws-cdk/issues/36054)) ([67b85f2](https://github.com/aws/aws-cdk/commit/67b85f2e71ca59bd7dd522bb5a63fef6401e51b0)), closes [#36052](https://github.com/aws/aws-cdk/issues/36052)


### Reverts

* (dynamodb) revert Table.table field to private to fix .NET naming ([#36029](https://github.com/aws/aws-cdk/issues/36029)) ([d84fce8](https://github.com/aws/aws-cdk/commit/d84fce84868157649f5a3cabbdbe06233317aacc)), closes [#36025](https://github.com/aws/aws-cdk/issues/36025) [#35554](https://github.com/aws/aws-cdk/issues/35554)

## [2.224.0](https://github.com/aws/aws-cdk/compare/v2.223.0...v2.224.0) (2025-11-13)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21206,6 +21206,9 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
'policyFragment': '*',
'principalAccount': '*'
}
},
{
'delegatedZoneNames': '*'
}
],
'enableDnssec': [
Expand Down Expand Up @@ -29528,6 +29531,7 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
'stack': '*',
'applyRemovalPolicy': '*',
'node': '*',
'with': '*',
'env': {
'account': '*',
'region': '*'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3072,6 +3072,10 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
"TASK_DEFINITION",
"NONE"
],
"PropertyMergeStrategy": [
"override",
"merge"
],
"Protocol": [
"HTTP",
"HTTPS",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1684,6 +1684,8 @@
"CODEPIPELINE",
"CODESTAR_CONNECTIONS",
"CODE_CONNECTIONS",
"COGNITO_IDP",
"COGNITO_IDP_FIPS",
"COMPREHEND",
"COMPREHEND_MEDICAL",
"COMPUTE_OPTIMIZER",
Expand Down Expand Up @@ -2635,7 +2637,8 @@
"VER_3_08_2",
"VER_3_09_0",
"VER_3_10_0",
"VER_3_10_1"
"VER_3_10_1",
"VER_3_11_0"
],
"AuroraPostgresEngineVersion": [
"VER_9_6_8",
Expand Down Expand Up @@ -2860,6 +2863,7 @@
"VER_10_6_20",
"VER_10_6_21",
"VER_10_6_22",
"VER_10_6_23",
"VER_10_11",
"VER_10_11_4",
"VER_10_11_5",
Expand All @@ -2870,10 +2874,12 @@
"VER_10_11_10",
"VER_10_11_11",
"VER_10_11_13",
"VER_10_11_14",
"VER_11_4_3",
"VER_11_4_4",
"VER_11_4_5",
"VER_11_4_7",
"VER_11_4_8",
"VER_11_8_3"
],
"MysqlEngineVersion": [
Expand Down Expand Up @@ -2960,7 +2966,8 @@
"VER_8_4_3",
"VER_8_4_4",
"VER_8_4_5",
"VER_8_4_6"
"VER_8_4_6",
"VER_8_4_7"
],
"PostgresEngineVersion": [
"VER_9_5",
Expand Down Expand Up @@ -3054,6 +3061,7 @@
"VER_11_22_RDS_20240808",
"VER_11_22_RDS_20241121",
"VER_11_22_RDS_20250508",
"VER_11_22_RDS_20250814",
"VER_12",
"VER_12_2",
"VER_12_3",
Expand All @@ -3076,7 +3084,9 @@
"VER_12_20",
"VER_12_21",
"VER_12_22",
"VER_12_22_RDS_20250220",
"VER_12_22_RDS_20250508",
"VER_12_22_RDS_20250814",
"VER_13",
"VER_13_1",
"VER_13_2",
Expand All @@ -3100,6 +3110,7 @@
"VER_13_20",
"VER_13_21",
"VER_13_22",
"VER_13_23",
"VER_14",
"VER_14_1",
"VER_14_2",
Expand All @@ -3120,6 +3131,7 @@
"VER_14_17",
"VER_14_18",
"VER_14_19",
"VER_14_20",
"VER_15",
"VER_15_2",
"VER_15_3",
Expand All @@ -3134,6 +3146,7 @@
"VER_15_12",
"VER_15_13",
"VER_15_14",
"VER_15_15",
"VER_16",
"VER_16_1",
"VER_16_2",
Expand All @@ -3145,13 +3158,17 @@
"VER_16_8",
"VER_16_9",
"VER_16_10",
"VER_16_11",
"VER_17",
"VER_17_1",
"VER_17_2",
"VER_17_3",
"VER_17_4",
"VER_17_5",
"VER_17_6"
"VER_17_6",
"VER_17_7",
"VER_18",
"VER_18_1"
],
"OracleLegacyEngineVersion": [
"VER_11_2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1021,6 +1021,12 @@
"DryRun"
]
},
"aws-cdk/packages/@aws-cdk/mixins-preview/lib/mixins/property-mixins.ts": {
"PropertyMergeStrategy": [
"override",
"merge"
]
},
"aws-cdk/packages/aws-cdk-lib/assets/lib/fs/follow-mode.ts": {
"FollowMode": [
"never",
Expand Down
4 changes: 2 additions & 2 deletions version.v2.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "2.224.0",
"alphaVersion": "2.224.0-alpha.0"
"version": "2.225.0",
"alphaVersion": "2.225.0-alpha.0"
}
Loading