Skip to content

Commit 294262d

Browse files
authored
2 parents 6e24133 + b9c1705 commit 294262d

File tree

7 files changed

+197
-5
lines changed

7 files changed

+197
-5
lines changed

CHANGELOG.v2.alpha.md

Lines changed: 2 additions & 0 deletions
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.209.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.208.0-alpha.0...v2.209.0-alpha.0) (2025-08-05)
6+
57
## [2.208.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.207.0-alpha.0...v2.208.0-alpha.0) (2025-07-29)
68

79

CHANGELOG.v2.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
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.209.0](https://github.com/aws/aws-cdk/compare/v2.208.0...v2.209.0) (2025-08-05)
6+
7+
8+
### Features
9+
10+
* **ecs:** add support for native blue/green deployments in ECS L2 ([#35061](https://github.com/aws/aws-cdk/issues/35061)) ([3723aca](https://github.com/aws/aws-cdk/commit/3723acab5e97b92a8be5cbeb1bc950469d614050)), closes [#35010](https://github.com/aws/aws-cdk/issues/35010)
11+
* add new field to feature flag report ([#35108](https://github.com/aws/aws-cdk/issues/35108)) ([8bff8f9](https://github.com/aws/aws-cdk/commit/8bff8f9ba540a28596fe150cef83b5da6f501c2e))
12+
* **inferenceprofiles:** add inference and cross-region inference pro… ([#35048](https://github.com/aws/aws-cdk/issues/35048)) ([87770ef](https://github.com/aws/aws-cdk/commit/87770efbe2edc7b923c0a63e7c78fe6fe030f0b8))
13+
* deprecating delete existing field in ARecord ([#35039](https://github.com/aws/aws-cdk/issues/35039)) ([49b2627](https://github.com/aws/aws-cdk/commit/49b26273a3c549ba56b22a3c0d86fa95c06d909b)), closes [#34230](https://github.com/aws/aws-cdk/issues/34230)
14+
* **s3-tables:** add L2 construct support for Table and Namespace resources ([#35023](https://github.com/aws/aws-cdk/issues/35023)) ([576c9ec](https://github.com/aws/aws-cdk/commit/576c9ecb6dd618f0cba497306e29fb44a0ce33a8)), closes [#33054](https://github.com/aws/aws-cdk/issues/33054)
15+
16+
17+
### Bug Fixes
18+
19+
* **app-staging-synthesizer:** custom bootstrap qualifier is not passed through to deployment role name ([#35118](https://github.com/aws/aws-cdk/issues/35118)) ([6525d51](https://github.com/aws/aws-cdk/commit/6525d5116052553b693abf0aa6611b129240fbd2)), closes [#28195](https://github.com/aws/aws-cdk/issues/28195) [#28195](https://github.com/aws/aws-cdk/issues/28195)
20+
* **codebuild:** support Windows Server Core 2022 image with on-demand capacity ([#35152](https://github.com/aws/aws-cdk/issues/35152)) ([a595884](https://github.com/aws/aws-cdk/commit/a59588468277179c7ba0e75d3a97fbb84498f4aa)), closes [#29754](https://github.com/aws/aws-cdk/issues/29754)
21+
* **eks:** remove usage of shell=True in helm commands ([#35148](https://github.com/aws/aws-cdk/issues/35148)) ([918593d](https://github.com/aws/aws-cdk/commit/918593d9a1b0bbf2068d2f160579f8d361712338))
22+
* **eks-v2:** remove usage of shell=True in helm commands ([#35141](https://github.com/aws/aws-cdk/issues/35141)) ([cd9d69c](https://github.com/aws/aws-cdk/commit/cd9d69c1069a8b366797c19ad6989206e3f4205e))
23+
* **rds:** can not lookup VPC Security Groups with fromLookup method ([#34906](https://github.com/aws/aws-cdk/issues/34906)) ([ae87e26](https://github.com/aws/aws-cdk/commit/ae87e2610cf82f88ed84a7bac774447a10b9667f))
24+
525
## [2.208.0](https://github.com/aws/aws-cdk/compare/v2.207.0...v2.208.0) (2025-07-29)
626

727

packages/aws-cdk-lib/core/lib/analytics-data-source/classes.ts

Lines changed: 100 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3838,6 +3838,26 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
38383838
}
38393839
},
38403840
'@aws-cdk.aws-s3tables-alpha': {
3841+
'Namespace': {
3842+
'namespaceName': '*',
3843+
'tableBucket': {
3844+
'tableBucketArn': '*',
3845+
'tableBucketName': '*',
3846+
'account': '*',
3847+
'region': '*',
3848+
'encryptionKey': {
3849+
'keyArn': '*',
3850+
'keyId': '*',
3851+
'stack': '*',
3852+
'env': {
3853+
'account': '*',
3854+
'region': '*'
3855+
},
3856+
'node': '*'
3857+
}
3858+
},
3859+
'removalPolicy': 'RemovalPolicy'
3860+
},
38413861
'TableBucketPolicy': {
38423862
'tableBucket': {
38433863
'tableBucketArn': '*',
@@ -3879,6 +3899,49 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
38793899
'node': '*'
38803900
},
38813901
'removalPolicy': 'RemovalPolicy'
3902+
},
3903+
'Table': {
3904+
'tableName': '*',
3905+
'namespace': {
3906+
'namespaceName': '*',
3907+
'tableBucket': {
3908+
'tableBucketArn': '*',
3909+
'tableBucketName': '*',
3910+
'account': '*',
3911+
'region': '*',
3912+
'encryptionKey': {
3913+
'keyArn': '*',
3914+
'keyId': '*',
3915+
'stack': '*',
3916+
'env': {
3917+
'account': '*',
3918+
'region': '*'
3919+
},
3920+
'node': '*'
3921+
}
3922+
}
3923+
},
3924+
'openTableFormat': 'OpenTableFormat',
3925+
'compaction': {
3926+
'status': 'Status',
3927+
'targetFileSizeMb': '*'
3928+
},
3929+
'icebergMetadata': {
3930+
'icebergSchema': {
3931+
'schemaFieldList': {
3932+
'name': '*',
3933+
'required': 'boolean',
3934+
'type': '*'
3935+
}
3936+
}
3937+
},
3938+
'snapshotManagement': {
3939+
'maxSnapshotAgeHours': '*',
3940+
'minSnapshotsToKeep': '*',
3941+
'status': 'Status'
3942+
},
3943+
'removalPolicy': 'RemovalPolicy',
3944+
'withoutMetadata': 'boolean'
38823945
}
38833946
},
38843947
'@aws-cdk.aws-sagemaker-alpha': {
@@ -24562,6 +24625,32 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2456224625
'*'
2456324626
]
2456424627
},
24628+
'ApplicationInferenceProfile': {
24629+
'applicationInferenceProfileName': '*',
24630+
'description': '*',
24631+
'modelSource': {
24632+
'invokableArn': '*'
24633+
},
24634+
'tags': '*',
24635+
'grantInvoke': [
24636+
{
24637+
'grantPrincipal': {
24638+
'assumeRoleAction': '*',
24639+
'policyFragment': '*',
24640+
'principalAccount': '*'
24641+
}
24642+
}
24643+
],
24644+
'grantProfileUsage': [
24645+
{
24646+
'grantPrincipal': {
24647+
'assumeRoleAction': '*',
24648+
'policyFragment': '*',
24649+
'principalAccount': '*'
24650+
}
24651+
}
24652+
]
24653+
},
2456524654
'Prompt': {
2456624655
'promptName': '*',
2456724656
'description': '*',
@@ -27842,6 +27931,9 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2784227931
},
2784327932
'taskDefinitionRevision': '*',
2784427933
'volumeConfigurations': '*',
27934+
'deploymentStrategy': 'DeploymentStrategy',
27935+
'bakeTime': '*',
27936+
'lifecycleHooks': '*',
2784527937
'addPlacementStrategies': [
2784627938
'*'
2784727939
],
@@ -28094,6 +28186,9 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2809428186
},
2809528187
'taskDefinitionRevision': '*',
2809628188
'volumeConfigurations': '*',
28189+
'deploymentStrategy': 'DeploymentStrategy',
28190+
'bakeTime': '*',
28191+
'lifecycleHooks': '*',
2809728192
'attachToApplicationTargetGroup': [
2809828193
{
2809928194
'metrics': '*',
@@ -28109,7 +28204,8 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2810928204
'containerName': '*',
2811028205
'containerPort': '*',
2811128206
'protocol': 'Protocol'
28112-
}
28207+
},
28208+
'*'
2811328209
],
2811428210
'registerLoadBalancerTargets': [
2811528211
{
@@ -28454,6 +28550,9 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2845428550
},
2845528551
'taskDefinitionRevision': '*',
2845628552
'volumeConfigurations': '*',
28553+
'deploymentStrategy': 'DeploymentStrategy',
28554+
'bakeTime': '*',
28555+
'lifecycleHooks': '*',
2845728556
'attachToClassicLB': [
2845828557
'*'
2845928558
]

packages/aws-cdk-lib/core/lib/analytics-data-source/enums.ts

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -864,6 +864,11 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
864864
"FAILED",
865865
"ERROR"
866866
],
867+
"CrossRegionInferenceProfileRegion": [
868+
"eu",
869+
"us",
870+
"apac"
871+
],
867872
"CsvDelimiter": [
868873
"COMMA",
869874
"PIPE",
@@ -989,6 +994,19 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
989994
"CODE_DEPLOY",
990995
"EXTERNAL"
991996
],
997+
"DeploymentLifecycleStage": [
998+
"RECONCILE_SERVICE",
999+
"PRE_SCALE_UP",
1000+
"POST_SCALE_UP",
1001+
"TEST_TRAFFIC_SHIFT",
1002+
"POST_TEST_TRAFFIC_SHIFT",
1003+
"PRODUCTION_TRAFFIC_SHIFT",
1004+
"POST_PRODUCTION_TRAFFIC_SHIFT"
1005+
],
1006+
"DeploymentStrategy": [
1007+
"ROLLING",
1008+
"BLUE_GREEN"
1009+
],
9921010
"DesiredState": [
9931011
"RUNNING",
9941012
"STOPPED"
@@ -1571,6 +1589,10 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
15711589
"IncludeExecutionData": [
15721590
"ALL"
15731591
],
1592+
"InferenceProfileType": [
1593+
"SYSTEM_DEFINED",
1594+
"APPLICATION"
1595+
],
15741596
"InitElementType": [
15751597
"PACKAGE",
15761598
"GROUP",
@@ -2499,6 +2521,9 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
24992521
"OnPartialBatchItemFailure": [
25002522
"AUTOMATIC_BISECT"
25012523
],
2524+
"OpenTableFormat": [
2525+
"ICEBERG"
2526+
],
25022527
"OperatingSystem": [
25032528
"AMAZON_LINUX",
25042529
"AMAZON_LINUX_2",

packages/aws-cdk-lib/core/lib/analytics-data-source/enums/module-enumlikes.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,12 @@
7878
"SESSION_SUMMARY"
7979
]
8080
},
81+
"aws-cdk/packages/@aws-cdk/aws-bedrock-alpha/bedrock/inference-profiles/prompt-router.ts": {
82+
"DefaultPromptRouterIdentifier": [
83+
"ANTHROPIC_CLAUDE_V1",
84+
"META_LLAMA_3_1"
85+
]
86+
},
8187
"aws-cdk/packages/@aws-cdk/aws-bedrock-alpha/bedrock/models.ts": {
8288
"BedrockFoundationModel": [
8389
"AI21_JAMBA_1_5_LARGE_V1",
@@ -2185,7 +2191,9 @@
21852191
"VERSION_1_0_275_0",
21862192
"VERSION_1_0_295_0",
21872193
"VERSION_1_0_317_0",
2188-
"VERSION_1_0_333_0"
2194+
"VERSION_1_0_333_0",
2195+
"VERSION_1_0_391_0",
2196+
"VERSION_1_0_404_0"
21892197
]
21902198
},
21912199
"aws-cdk/packages/aws-cdk-lib/aws-lambda/lib/runtime-management.ts": {
@@ -2517,7 +2525,8 @@
25172525
"VER_3_08_0",
25182526
"VER_3_08_1",
25192527
"VER_3_08_2",
2520-
"VER_3_09_0"
2528+
"VER_3_09_0",
2529+
"VER_3_10_0"
25212530
],
25222531
"AuroraPostgresEngineVersion": [
25232532
"VER_9_6_8",

packages/aws-cdk-lib/core/lib/analytics-data-source/enums/module-enums.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,19 @@
9191
"KNOWLEDGE_BASE_RESPONSE_GENERATION"
9292
]
9393
},
94+
"aws-cdk/packages/@aws-cdk/aws-bedrock-alpha/bedrock/inference-profiles/cross-region-inference-profile.ts": {
95+
"CrossRegionInferenceProfileRegion": [
96+
"eu",
97+
"us",
98+
"apac"
99+
]
100+
},
101+
"aws-cdk/packages/@aws-cdk/aws-bedrock-alpha/bedrock/inference-profiles/inference-profile.ts": {
102+
"InferenceProfileType": [
103+
"SYSTEM_DEFINED",
104+
"APPLICATION"
105+
]
106+
},
94107
"aws-cdk/packages/@aws-cdk/aws-bedrock-alpha/bedrock/models.ts": {
95108
"VectorType": [
96109
"FLOAT32",
@@ -844,6 +857,15 @@
844857
"AES256"
845858
]
846859
},
860+
"aws-cdk/packages/@aws-cdk/aws-s3tables-alpha/lib/table.ts": {
861+
"OpenTableFormat": [
862+
"ICEBERG"
863+
],
864+
"Status": [
865+
"enabled",
866+
"disabled"
867+
]
868+
},
847869
"aws-cdk/packages/@aws-cdk/aws-sagemaker-alpha/lib/endpoint.ts": {
848870
"InvocationHttpResponseCode": [
849871
"Invocation4XXErrors",
@@ -3614,6 +3636,10 @@
36143636
"CODE_DEPLOY",
36153637
"EXTERNAL"
36163638
],
3639+
"DeploymentStrategy": [
3640+
"ROLLING",
3641+
"BLUE_GREEN"
3642+
],
36173643
"PropagatedTagSource": [
36183644
"SERVICE",
36193645
"TASK_DEFINITION",
@@ -3709,6 +3735,17 @@
37093735
"disabled"
37103736
]
37113737
},
3738+
"aws-cdk/packages/aws-cdk-lib/aws-ecs/lib/deployment-lifecycle-hook-target.ts": {
3739+
"DeploymentLifecycleStage": [
3740+
"RECONCILE_SERVICE",
3741+
"PRE_SCALE_UP",
3742+
"POST_SCALE_UP",
3743+
"TEST_TRAFFIC_SHIFT",
3744+
"POST_TEST_TRAFFIC_SHIFT",
3745+
"PRODUCTION_TRAFFIC_SHIFT",
3746+
"POST_PRODUCTION_TRAFFIC_SHIFT"
3747+
]
3748+
},
37123749
"aws-cdk/packages/aws-cdk-lib/aws-ecs/lib/environment-file.ts": {
37133750
"EnvironmentFileType": [
37143751
"s3"

version.v2.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "2.208.0",
3-
"alphaVersion": "2.208.0-alpha.0"
2+
"version": "2.209.0",
3+
"alphaVersion": "2.209.0-alpha.0"
44
}

0 commit comments

Comments
 (0)