Skip to content

Commit 2ee5c25

Browse files
authored
2 parents 4ada313 + 1cf94ed commit 2ee5c25

File tree

5 files changed

+90
-2
lines changed

5 files changed

+90
-2
lines changed

CHANGELOG.v2.alpha.md

+11
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
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.181.1-alpha.0](https://github.com/aws/aws-cdk/compare/v2.181.0-alpha.0...v2.181.1-alpha.0) (2025-02-27)
6+
7+
8+
### ⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES
9+
10+
* **cognito-identitypool-alpha:** Any `IdentityPool` resources deployed in versions `>=2.179.0` will now fail to deploy. You will need to delete the `IdentityPoolRoleAttachment` from your stack via the console before redeploying.
11+
12+
### Bug Fixes
13+
14+
* **cognito-identitypool-alpha:** prevent stacks from not deploying correctly ([#33609](https://github.com/aws/aws-cdk/issues/33609)) ([a1e2afe](https://github.com/aws/aws-cdk/commit/a1e2afe67cc907fa278503ebc886aa3b5bf97887)), closes [#33510](https://github.com/aws/aws-cdk/issues/33510)
15+
516
## [2.181.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.180.0-alpha.0...v2.181.0-alpha.0) (2025-02-25)
617

718

CHANGELOG.v2.md

+2
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.181.1](https://github.com/aws/aws-cdk/compare/v2.181.0...v2.181.1) (2025-02-27)
6+
57
## [2.181.0](https://github.com/aws/aws-cdk/compare/v2.180.0...v2.181.0) (2025-02-25)
68

79

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

+75
Original file line numberDiff line numberDiff line change
@@ -617,6 +617,81 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
617617
'addUserPoolAuthentication': [
618618
'*'
619619
]
620+
},
621+
'IdentityPoolRoleAttachment': {
622+
'identityPool': {
623+
'identityPoolId': '*',
624+
'identityPoolArn': '*',
625+
'identityPoolName': '*',
626+
'stack': '*',
627+
'env': {
628+
'account': '*',
629+
'region': '*'
630+
},
631+
'node': '*'
632+
},
633+
'authenticatedRole': {
634+
'roleArn': '*',
635+
'roleName': '*',
636+
'assumeRoleAction': '*',
637+
'policyFragment': '*',
638+
'principalAccount': '*',
639+
'grantPrincipal': {
640+
'assumeRoleAction': '*',
641+
'principalAccount': '*'
642+
},
643+
'stack': '*',
644+
'env': {
645+
'account': '*',
646+
'region': '*'
647+
},
648+
'node': '*'
649+
},
650+
'unauthenticatedRole': {
651+
'roleArn': '*',
652+
'roleName': '*',
653+
'assumeRoleAction': '*',
654+
'policyFragment': '*',
655+
'principalAccount': '*',
656+
'grantPrincipal': {
657+
'assumeRoleAction': '*',
658+
'principalAccount': '*'
659+
},
660+
'stack': '*',
661+
'env': {
662+
'account': '*',
663+
'region': '*'
664+
},
665+
'node': '*'
666+
},
667+
'roleMappings': {
668+
'providerUrl': '*',
669+
'mappingKey': '*',
670+
'useToken': 'boolean',
671+
'resolveAmbiguousRoles': 'boolean',
672+
'rules': {
673+
'claim': '*',
674+
'mappedRole': {
675+
'roleArn': '*',
676+
'roleName': '*',
677+
'assumeRoleAction': '*',
678+
'policyFragment': '*',
679+
'principalAccount': '*',
680+
'grantPrincipal': {
681+
'assumeRoleAction': '*',
682+
'principalAccount': '*'
683+
},
684+
'stack': '*',
685+
'env': {
686+
'account': '*',
687+
'region': '*'
688+
},
689+
'node': '*'
690+
},
691+
'claimValue': '*',
692+
'matchType': 'RoleMappingMatchType'
693+
}
694+
}
620695
}
621696
},
622697
'@aws-cdk.aws-ec2-alpha': {

version.v2.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "2.181.0",
3-
"alphaVersion": "2.181.0-alpha.0"
2+
"version": "2.181.1",
3+
"alphaVersion": "2.181.1-alpha.0"
44
}

0 commit comments

Comments
 (0)