Skip to content

Commit 2d6a3bc

Browse files
authored
2 parents 64662b2 + e4fc2ac commit 2d6a3bc

File tree

7 files changed

+46
-4
lines changed

7 files changed

+46
-4
lines changed

CHANGELOG.v2.alpha.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
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.199.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.198.0-alpha.0...v2.199.0-alpha.0) (2025-05-27)
6+
7+
58
## [2.198.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.197.0-alpha.0...v2.198.0-alpha.0) (2025-05-22)
69

710

CHANGELOG.v2.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
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.199.0](https://github.com/aws/aws-cdk/compare/v2.198.0...v2.199.0) (2025-05-27)
6+
7+
8+
### ⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES
9+
10+
* **cloudformation:** Some L1 resources experienced breaking changes due to updated CloudFormation resources. Please check the notes for each specific module for more information.
11+
* **vpc-lattice**: the `name` and `resourceConfigurationType` property in `CfnResourceConfigurationProps` has changed from optional to required. Also, the `name`, `subnetIds` and `vpcIdentifier` properties in `CfnResourceGatewayProps` have changed from optional to mandatory.
12+
13+
### Features
14+
15+
* **appconfig:** deletion protection check for configuration profile ([#34418](https://github.com/aws/aws-cdk/issues/34418)) ([ce88c76](https://github.com/aws/aws-cdk/commit/ce88c7616188183059640f9e16fedc2e256e0b40))
16+
* **cloudformation:** update L1 CloudFormation resource definitions ([#34555](https://github.com/aws/aws-cdk/issues/34555)) ([64662b2](https://github.com/aws/aws-cdk/commit/64662b2225dce18ee2da0eb46331a3a0155ecfb5))
17+
* **ecs-patterns:** add minHealthyPercent and maxHealthyPercent props to NetworkMultipleTargetGroupsFargateService ([#34516](https://github.com/aws/aws-cdk/issues/34516)) ([a434aed](https://github.com/aws/aws-cdk/commit/a434aed1c9edc1b427a891cf70cc26f1657600d6)), closes [#34368](https://github.com/aws/aws-cdk/issues/34368)
18+
* **eks:** `Addon` support configurationValues ([#34061](https://github.com/aws/aws-cdk/issues/34061)) ([b420033](https://github.com/aws/aws-cdk/commit/b42003344d75bbdb2df71e7da52f9af5e956f64b)), closes [#34001](https://github.com/aws/aws-cdk/issues/34001)
19+
* **events-targets:** enable opt-in to use an IAM role for SnsTopic target ([#34259](https://github.com/aws/aws-cdk/issues/34259)) ([a3a0cf0](https://github.com/aws/aws-cdk/commit/a3a0cf0dc2ea2ecfc077af3f1939117623baa559))
20+
* **stepfunctions-tasks:** bedrock createModelCustomizationJob integration ([#31913](https://github.com/aws/aws-cdk/issues/31913)) ([0c653d3](https://github.com/aws/aws-cdk/commit/0c653d3a1d29324025a0ab451e72e4ca3f048ca3)), closes [#29042](https://github.com/aws/aws-cdk/issues/29042)
21+
22+
23+
### Bug Fixes
24+
25+
* **elasticloadbalancingv2:** add validation on application listeners for certificates on HTTP protocol ([#34233](https://github.com/aws/aws-cdk/issues/34233)) ([ca065bb](https://github.com/aws/aws-cdk/commit/ca065bbd936372098e7d76e4cf8f890f20d4c085))
26+
* **rds:** fix incorrect import/export combination check in AuroraMysqlEngineVersion.of() ([#33564](https://github.com/aws/aws-cdk/issues/33564)) ([9e41154](https://github.com/aws/aws-cdk/commit/9e41154c31253932520887748307405a3f38d0e7)), closes [#33562](https://github.com/aws/aws-cdk/issues/33562) [#33562](https://github.com/aws/aws-cdk/issues/33562)
27+
528
## [2.198.0](https://github.com/aws/aws-cdk/compare/v2.197.0...v2.198.0) (2025-05-22)
629

730

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4307,7 +4307,8 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
43074307
},
43084308
'prune': 'boolean'
43094309
},
4310-
'preserveOnDelete': 'boolean'
4310+
'preserveOnDelete': 'boolean',
4311+
'configurationValues': '*'
43114312
},
43124313
'Cluster': {
43134314
'compute': {
@@ -15187,7 +15188,8 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
1518715188
'prune': 'boolean',
1518815189
'authenticationMode': 'AuthenticationMode'
1518915190
},
15190-
'preserveOnDelete': 'boolean'
15191+
'preserveOnDelete': 'boolean',
15192+
'configurationValues': '*'
1519115193
},
1519215194
'Cluster': {
1519315195
'defaultCapacity': '*',

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -877,6 +877,11 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
877877
'ENFORCED',
878878
'AUDIT'
879879
],
880+
'CustomizationType': [
881+
'FINE_TUNING',
882+
'CONTINUED_PRE_TRAINING',
883+
'DISTILLATION'
884+
],
880885
'DBClusterStorageType': [
881886
'aurora',
882887
'aurora-iopt1'

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -621,6 +621,7 @@
621621
"ANTHROPIC_CLAUDE_3_5_SONNET_20241022_V2_0_51K",
622622
"ANTHROPIC_CLAUDE_3_5_SONNET_20241022_V2_0_200K",
623623
"ANTHROPIC_CLAUDE_3_7_SONNET_20250219_V1_0",
624+
"ANTHROPIC_CLAUDE_SONNET_4_20250514_V1_0",
624625
"ANTHROPIC_CLAUDE_3_HAIKU_20240307_V1_0",
625626
"ANTHROPIC_CLAUDE_3_HAIKU_20240307_V1_0_48K",
626627
"ANTHROPIC_CLAUDE_3_5_HAIKU_20241022_V1_0",
@@ -629,6 +630,7 @@
629630
"ANTHROPIC_CLAUDE_3_OPUS_20240229_V1_0_12K",
630631
"ANTHROPIC_CLAUDE_3_OPUS_20240229_V1_0_28K",
631632
"ANTHROPIC_CLAUDE_3_OPUS_20240229_V1_0_200K",
633+
"ANTHROPIC_CLAUDE_OPUS_4_20250514_V1_0",
632634
"ANTHROPIC_CLAUDE_INSTANT_V1",
633635
"ANTHROPIC_CLAUDE_INSTANT_V1_2_100K",
634636
"COHERE_COMMAND_V14",

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4929,6 +4929,13 @@
49294929
"CSE_KMS"
49304930
]
49314931
},
4932+
"aws-cdk/packages/aws-cdk-lib/aws-stepfunctions-tasks/lib/bedrock/create-model-customization-job.ts": {
4933+
"CustomizationType": [
4934+
"FINE_TUNING",
4935+
"CONTINUED_PRE_TRAINING",
4936+
"DISTILLATION"
4937+
]
4938+
},
49324939
"aws-cdk/packages/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/private/utils.ts": {
49334940
"DynamoMethod": [
49344941
"Get",

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.198.0",
3-
"alphaVersion": "2.198.0-alpha.0"
2+
"version": "2.199.0",
3+
"alphaVersion": "2.199.0-alpha.0"
44
}

0 commit comments

Comments
 (0)