Skip to content

Commit f4ab336

Browse files
authored
2 parents 28ad706 + 6885ab5 commit f4ab336

File tree

6 files changed

+87
-5
lines changed

6 files changed

+87
-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.211.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.210.0-alpha.0...v2.211.0-alpha.0) (2025-08-12)
6+
57
## [2.210.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.209.1-alpha.0...v2.210.0-alpha.0) (2025-08-06)
68

79

CHANGELOG.v2.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,36 @@
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.211.0](https://github.com/aws/aws-cdk/compare/v2.210.0...v2.211.0) (2025-08-12)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
**cloudformation:** L1 resources are automatically generated from
11+
public CloudFormation Resource Schemas. They are build to closely
12+
reflect the real state of CloudFormation. Sometimes these updates can
13+
contain changes that are incompatible with previous types, but more
14+
accurately reflect reality. In this release we have changed:
15+
* **aws-opsworkscm**: CfnServer resource is no longer provisionable
16+
(AWS::OpsWorksCM::Server). Service is on deprecation path
17+
* **aws-iotfleetwise**: Properties `DataDestinationConfigs`,
18+
`SignalsToCollect` and `SignalsToFetch` in resource `CfnCampaign` are
19+
now marked as immutable (they will cause a replacement of the resource
20+
if updated)
21+
22+
23+
### Features
24+
25+
* **cloudformation:** update L1 CloudFormation resource definitions ([#35138](https://github.com/aws/aws-cdk/issues/35138)) ([3eb8ec0](https://github.com/aws/aws-cdk/commit/3eb8ec05b23555c4d9a202dad5a64ec62bf61af1))
26+
* **dynamodb:** tableV2 MRSC feature addition ([#34909](https://github.com/aws/aws-cdk/issues/34909)) ([6b318f5](https://github.com/aws/aws-cdk/commit/6b318f53bbaa1d79ffa8fcdfc3b321d49c8fdd43)), closes [#34883](https://github.com/aws/aws-cdk/issues/34883)
27+
* **ec2:** support the new `ServiceRegion` property for `AWS::EC2::VPCEndpoint` ([#35025](https://github.com/aws/aws-cdk/issues/35025)) ([fee0638](https://github.com/aws/aws-cdk/commit/fee06382e0f36f7f241196b67a23a760eb9da099)), closes [#32785](https://github.com/aws/aws-cdk/issues/32785) [#33959](https://github.com/aws/aws-cdk/issues/33959)
28+
* **ecs:** add L2 support for native ECS blue/green deployments ([#35179](https://github.com/aws/aws-cdk/issues/35179)) ([4d2f463](https://github.com/aws/aws-cdk/commit/4d2f4636ebef20d7d3588d17c02ef2db8b5f17b3)), closes [#35061](https://github.com/aws/aws-cdk/issues/35061) [#35170](https://github.com/aws/aws-cdk/issues/35170) [#35167](https://github.com/aws/aws-cdk/issues/35167)
29+
30+
31+
### Bug Fixes
32+
33+
* **dynamodb:** use keyId instead of keyArn for TableV2 replica encryption ([#35144](https://github.com/aws/aws-cdk/issues/35144)) ([787b8ed](https://github.com/aws/aws-cdk/commit/787b8ed4a3f0aedf5b339048ee868f8ea700c4cd)), closes [#35136](https://github.com/aws/aws-cdk/issues/35136)
34+
535
## [2.210.0](https://github.com/aws/aws-cdk/compare/v2.209.1...v2.210.0) (2025-08-06)
636

737

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

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12945,6 +12945,8 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
1294512945
},
1294612946
'resourcePolicy': '*'
1294712947
},
12948+
'witnessRegion': '*',
12949+
'multiRegionConsistency': 'MultiRegionConsistency',
1294812950
'globalSecondaryIndexes': {
1294912951
'partitionKey': {
1295012952
'name': '*',
@@ -14124,7 +14126,8 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
1412414126
'lookupSupportedAzs': 'boolean',
1412514127
'ipAddressType': 'VpcEndpointIpAddressType',
1412614128
'dnsRecordIpType': 'VpcEndpointDnsRecordIpType',
14127-
'privateDnsOnlyForInboundResolverEndpoint': 'VpcEndpointPrivateDnsOnlyForInboundResolverEndpoint'
14129+
'privateDnsOnlyForInboundResolverEndpoint': 'VpcEndpointPrivateDnsOnlyForInboundResolverEndpoint',
14130+
'serviceRegion': '*'
1412814131
},
1412914132
'FlowLog': {
1413014133
'flowLogName': '*',
@@ -27531,7 +27534,8 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2753127534
{
2753227535
'containerName': '*',
2753327536
'containerPort': '*',
27534-
'protocol': 'Protocol'
27537+
'protocol': 'Protocol',
27538+
'alternateTarget': '*'
2753527539
}
2753627540
],
2753727541
'_portRangeFromPortMapping': [
@@ -27945,6 +27949,9 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2794527949
},
2794627950
'taskDefinitionRevision': '*',
2794727951
'volumeConfigurations': '*',
27952+
'deploymentStrategy': 'DeploymentStrategy',
27953+
'bakeTime': '*',
27954+
'lifecycleHooks': '*',
2794827955
'addPlacementStrategies': [
2794927956
'*'
2795027957
],
@@ -28197,6 +28204,9 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2819728204
},
2819828205
'taskDefinitionRevision': '*',
2819928206
'volumeConfigurations': '*',
28207+
'deploymentStrategy': 'DeploymentStrategy',
28208+
'bakeTime': '*',
28209+
'lifecycleHooks': '*',
2820028210
'attachToApplicationTargetGroup': [
2820128211
{
2820228212
'metrics': '*',
@@ -28211,7 +28221,8 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2821128221
{
2821228222
'containerName': '*',
2821328223
'containerPort': '*',
28214-
'protocol': 'Protocol'
28224+
'protocol': 'Protocol',
28225+
'alternateTarget': '*'
2821528226
}
2821628227
],
2821728228
'registerLoadBalancerTargets': [
@@ -28557,6 +28568,9 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2855728568
},
2855828569
'taskDefinitionRevision': '*',
2855928570
'volumeConfigurations': '*',
28571+
'deploymentStrategy': 'DeploymentStrategy',
28572+
'bakeTime': '*',
28573+
'lifecycleHooks': '*',
2856028574
'attachToClassicLB': [
2856128575
'*'
2856228576
]

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

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -994,6 +994,19 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
994994
"CODE_DEPLOY",
995995
"EXTERNAL"
996996
],
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+
],
9971010
"DesiredState": [
9981011
"RUNNING",
9991012
"STOPPED"
@@ -2418,6 +2431,10 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
24182431
0,
24192432
1
24202433
],
2434+
"MultiRegionConsistency": [
2435+
"EVENTUAL",
2436+
"STRONG"
2437+
],
24212438
"MutualAuthenticationMode": [
24222439
"off",
24232440
"passthrough",

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

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2418,6 +2418,10 @@
24182418
"STANDARD",
24192419
"STANDARD_INFREQUENT_ACCESS"
24202420
],
2421+
"MultiRegionConsistency": [
2422+
"EVENTUAL",
2423+
"STRONG"
2424+
],
24212425
"TableEncryption": [
24222426
"AWS_OWNED",
24232427
"CUSTOMER_MANAGED",
@@ -3636,6 +3640,10 @@
36363640
"CODE_DEPLOY",
36373641
"EXTERNAL"
36383642
],
3643+
"DeploymentStrategy": [
3644+
"ROLLING",
3645+
"BLUE_GREEN"
3646+
],
36393647
"PropagatedTagSource": [
36403648
"SERVICE",
36413649
"TASK_DEFINITION",
@@ -3731,6 +3739,17 @@
37313739
"disabled"
37323740
]
37333741
},
3742+
"aws-cdk/packages/aws-cdk-lib/aws-ecs/lib/deployment-lifecycle-hook-target.ts": {
3743+
"DeploymentLifecycleStage": [
3744+
"RECONCILE_SERVICE",
3745+
"PRE_SCALE_UP",
3746+
"POST_SCALE_UP",
3747+
"TEST_TRAFFIC_SHIFT",
3748+
"POST_TEST_TRAFFIC_SHIFT",
3749+
"PRODUCTION_TRAFFIC_SHIFT",
3750+
"POST_PRODUCTION_TRAFFIC_SHIFT"
3751+
]
3752+
},
37343753
"aws-cdk/packages/aws-cdk-lib/aws-ecs/lib/environment-file.ts": {
37353754
"EnvironmentFileType": [
37363755
"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.210.0",
3-
"alphaVersion": "2.210.0-alpha.0"
2+
"version": "2.211.0",
3+
"alphaVersion": "2.211.0-alpha.0"
44
}

0 commit comments

Comments
 (0)