Skip to content

Commit 0da756d

Browse files
authored
2 parents 9395467 + d14692a commit 0da756d

File tree

5 files changed

+52
-3
lines changed

5 files changed

+52
-3
lines changed

CHANGELOG.v2.alpha.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
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.232.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.231.0-alpha.0...v2.232.0-alpha.0) (2025-12-04)
6+
7+
8+
### Bug Fixes
9+
10+
* **bedrock-agentcore-alpha:** use static construct ID for asset-based runtime artifacts ([#36241](https://github.com/aws/aws-cdk/issues/36241)) ([e2bdddd](https://github.com/aws/aws-cdk/commit/e2bdddd82f3e04f1cb2aebb187c580563bae453f)), closes [#35968](https://github.com/aws/aws-cdk/issues/35968)
11+
* **mixins-preview:** service exports are different then in `aws-cdk-lib` ([#36201](https://github.com/aws/aws-cdk/issues/36201)) ([5858006](https://github.com/aws/aws-cdk/commit/585800660b65a3a87d2b358054c7b5e162faabcf)), closes [#36210](https://github.com/aws/aws-cdk/issues/36210)
12+
* **mixins-preview:** strongly-typed ConstructSelector interface ([#36266](https://github.com/aws/aws-cdk/issues/36266)) ([1d2f473](https://github.com/aws/aws-cdk/commit/1d2f4730cc4358d35198980957e4fc01a21e9daf))
13+
514
## [2.231.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.230.0-alpha.0...v2.231.0-alpha.0) (2025-12-01)
615

716

CHANGELOG.v2.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
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.232.0](https://github.com/aws/aws-cdk/compare/v2.231.0...v2.232.0) (2025-12-04)
6+
7+
8+
### Features
9+
10+
* update L1 CloudFormation resource definitions ([#36299](https://github.com/aws/aws-cdk/issues/36299)) ([0945692](https://github.com/aws/aws-cdk/commit/0945692b91b01b6a8c69e844cffe7629cc52695a))
11+
* **bedrock-agentcore:** add fromImageUri method to AgentRuntimeArtifact ([#36263](https://github.com/aws/aws-cdk/issues/36263)) ([ad25aba](https://github.com/aws/aws-cdk/commit/ad25aba9785c6801085525da4d6adcc8c3204a70))
12+
* **lambda:** add support for durable functions ([#36282](https://github.com/aws/aws-cdk/issues/36282)) ([599a1d3](https://github.com/aws/aws-cdk/commit/599a1d3b26a1a9edf22f1cde41da323e560145fb))
13+
* update L1 CloudFormation resource definitions ([#36277](https://github.com/aws/aws-cdk/issues/36277)) ([c4fa99b](https://github.com/aws/aws-cdk/commit/c4fa99b9149b512494c9ae94b8d4aebba4436eb0))
14+
15+
16+
### Bug Fixes
17+
18+
* **core:** temp cleanup does not work with jest ([#36238](https://github.com/aws/aws-cdk/issues/36238)) ([1f4a224](https://github.com/aws/aws-cdk/commit/1f4a2249b2651115cf02a26fd4bba09b151f426e)), closes [#36226](https://github.com/aws/aws-cdk/issues/36226)
19+
520
## [2.231.0](https://github.com/aws/aws-cdk/compare/v2.230.0...v2.231.0) (2025-12-01)
621

722

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3144,6 +3144,9 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
31443144
'architecture': '*',
31453145
'runtimeManagementMode': '*',
31463146
'tenancyConfig': '*',
3147+
'durableConfig': {
3148+
'executionTimeout': '*'
3149+
},
31473150
'logGroup': {
31483151
'logGroupArn': '*',
31493152
'logGroupName': '*',
@@ -3404,6 +3407,9 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
34043407
'architecture': '*',
34053408
'runtimeManagementMode': '*',
34063409
'tenancyConfig': '*',
3410+
'durableConfig': {
3411+
'executionTimeout': '*'
3412+
},
34073413
'logGroup': {
34083414
'logGroupArn': '*',
34093415
'logGroupName': '*',
@@ -18128,6 +18134,9 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
1812818134
'architecture': '*',
1812918135
'runtimeManagementMode': '*',
1813018136
'tenancyConfig': '*',
18137+
'durableConfig': {
18138+
'executionTimeout': '*'
18139+
},
1813118140
'logGroup': {
1813218141
'logGroupArn': '*',
1813318142
'logGroupName': '*',
@@ -18438,6 +18447,9 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
1843818447
'architecture': '*',
1843918448
'runtimeManagementMode': '*',
1844018449
'tenancyConfig': '*',
18450+
'durableConfig': {
18451+
'executionTimeout': '*'
18452+
},
1844118453
'logGroup': {
1844218454
'logGroupArn': '*',
1844318455
'logGroupName': '*',
@@ -18791,6 +18803,9 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
1879118803
'architecture': '*',
1879218804
'runtimeManagementMode': '*',
1879318805
'tenancyConfig': '*',
18806+
'durableConfig': {
18807+
'executionTimeout': '*'
18808+
},
1879418809
'logGroup': {
1879518810
'logGroupArn': '*',
1879618811
'logGroupName': '*',
@@ -19127,6 +19142,9 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
1912719142
'architecture': '*',
1912819143
'runtimeManagementMode': '*',
1912919144
'tenancyConfig': '*',
19145+
'durableConfig': {
19146+
'executionTimeout': '*'
19147+
},
1913019148
'logGroup': {
1913119149
'logGroupArn': '*',
1913219150
'logGroupName': '*',
@@ -24365,6 +24383,9 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2436524383
'architecture': '*',
2436624384
'runtimeManagementMode': '*',
2436724385
'tenancyConfig': '*',
24386+
'durableConfig': {
24387+
'executionTimeout': '*'
24388+
},
2436824389
'logGroup': {
2436924390
'logGroupArn': '*',
2437024391
'logGroupName': '*',
@@ -26724,6 +26745,9 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2672426745
'architecture': '*',
2672526746
'runtimeManagementMode': '*',
2672626747
'tenancyConfig': '*',
26748+
'durableConfig': {
26749+
'executionTimeout': '*'
26750+
},
2672726751
'logGroup': {
2672826752
'logGroupArn': '*',
2672926753
'logGroupName': '*',

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2927,7 +2927,8 @@
29272927
"VER_11_4_7",
29282928
"VER_11_4_8",
29292929
"VER_11_4_9",
2930-
"VER_11_8_3"
2930+
"VER_11_8_3",
2931+
"VER_11_8_5"
29312932
],
29322933
"MysqlEngineVersion": [
29332934
"VER_5_5",

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.231.0",
3-
"alphaVersion": "2.231.0-alpha.0"
2+
"version": "2.232.0",
3+
"alphaVersion": "2.232.0-alpha.0"
44
}

0 commit comments

Comments
 (0)