From 53b51d7e11ce38e52fb684a9024e0021fe224cc1 Mon Sep 17 00:00:00 2001 From: Leonardo Gama Date: Tue, 25 Feb 2025 15:18:51 -0800 Subject: [PATCH 1/7] Add notice about Cognito Identity Pools soon to be GA --- data/notices.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/data/notices.json b/data/notices.json index 31c7a89d..23eebf1d 100644 --- a/data/notices.json +++ b/data/notices.json @@ -1,5 +1,17 @@ { "notices": [ + { + "title": "cognito-identitypool-alpha: Stabilizing to GA soon.", + "issueNumber": 27483, + "overview": "We will be moving the Cognito Identity Pools module out of developer preview and into GA some time soon. Before we do, please upgrade to the latest version of CDK to ensure you are using the most stable version of the construct library.", + "components": [ + { + "name": "@aws-cdk.aws_cognito_identitypool_alpha.IdentityPool", + "version": ">=2.164.0 <=2.179.0" + } + ], + "schemaVersion": "1" + }, { "title": "ECR: Cannot use Fn::ImportValue to create repository URI.", "issueNumber": 32238, From 52e7a6e67bdf68489c822c6883ee1c42209d3a82 Mon Sep 17 00:00:00 2001 From: Leonardo Gama Date: Tue, 25 Feb 2025 15:23:59 -0800 Subject: [PATCH 2/7] Remove floor version --- data/notices.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/notices.json b/data/notices.json index 23eebf1d..3d239281 100644 --- a/data/notices.json +++ b/data/notices.json @@ -7,7 +7,7 @@ "components": [ { "name": "@aws-cdk.aws_cognito_identitypool_alpha.IdentityPool", - "version": ">=2.164.0 <=2.179.0" + "version": "<=2.179.0" } ], "schemaVersion": "1" From 43967f6c19dd6ffc9d668f685ebdac97822f25d1 Mon Sep 17 00:00:00 2001 From: Leonardo Gama Date: Tue, 25 Feb 2025 15:26:13 -0800 Subject: [PATCH 3/7] Add floor version --- data/notices.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/notices.json b/data/notices.json index 3d239281..61816ea7 100644 --- a/data/notices.json +++ b/data/notices.json @@ -7,7 +7,7 @@ "components": [ { "name": "@aws-cdk.aws_cognito_identitypool_alpha.IdentityPool", - "version": "<=2.179.0" + "version": ">2.74.0 <=2.179.0" } ], "schemaVersion": "1" From 47ce5ae30a8f09c3cdcb29c3e6b5e4f00904df7b Mon Sep 17 00:00:00 2001 From: Leonardo Gama Date: Tue, 25 Feb 2025 15:30:23 -0800 Subject: [PATCH 4/7] Get checks to pass --- data/notices.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/notices.json b/data/notices.json index 61816ea7..5f00e6fe 100644 --- a/data/notices.json +++ b/data/notices.json @@ -6,8 +6,8 @@ "overview": "We will be moving the Cognito Identity Pools module out of developer preview and into GA some time soon. Before we do, please upgrade to the latest version of CDK to ensure you are using the most stable version of the construct library.", "components": [ { - "name": "@aws-cdk.aws_cognito_identitypool_alpha.IdentityPool", - "version": ">2.74.0 <=2.179.0" + "name": "@aws-cdk/aws-cognito-identitypool-alpha.IdentityPool", + "version": ">=2.74.0 <=2.179.0" } ], "schemaVersion": "1" From a836dc94be3d8d35cbdb219296dc6702ff5ef45e Mon Sep 17 00:00:00 2001 From: Leonardo Gama Date: Tue, 25 Feb 2025 15:39:12 -0800 Subject: [PATCH 5/7] nit: phrasing --- data/notices.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/notices.json b/data/notices.json index 5f00e6fe..0408657f 100644 --- a/data/notices.json +++ b/data/notices.json @@ -3,7 +3,7 @@ { "title": "cognito-identitypool-alpha: Stabilizing to GA soon.", "issueNumber": 27483, - "overview": "We will be moving the Cognito Identity Pools module out of developer preview and into GA some time soon. Before we do, please upgrade to the latest version of CDK to ensure you are using the most stable version of the construct library.", + "overview": "We will be moving the Cognito Identity Pools module out of developer preview and into GA some time soon. Please be advised that we have made some breaking changes to the library, such as the removal of the IdentityPoolRoleAttachment L2 construct. Please upgrade to the latest version of CDK and provide feedback if you encounter any issues.", "components": [ { "name": "@aws-cdk/aws-cognito-identitypool-alpha.IdentityPool", From fa71803caef7bd20be5f1a3342726bc394d78c7e Mon Sep 17 00:00:00 2001 From: Leonardo Gama Date: Tue, 25 Feb 2025 16:09:03 -0800 Subject: [PATCH 6/7] nit: phrasing: --- data/notices.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/notices.json b/data/notices.json index 0408657f..d077990f 100644 --- a/data/notices.json +++ b/data/notices.json @@ -3,7 +3,7 @@ { "title": "cognito-identitypool-alpha: Stabilizing to GA soon.", "issueNumber": 27483, - "overview": "We will be moving the Cognito Identity Pools module out of developer preview and into GA some time soon. Please be advised that we have made some breaking changes to the library, such as the removal of the IdentityPoolRoleAttachment L2 construct. Please upgrade to the latest version of CDK and provide feedback if you encounter any issues.", + "overview": "The AWS CDK team is preparing to graduate the Cognito Identity Pools module from Developer Preview to General Availability (GA). To ensure uninterrupted functionality of your applications during this transition, we strongly recommend upgrading to the latest version of AWS CDK before this change takes effect.", "components": [ { "name": "@aws-cdk/aws-cognito-identitypool-alpha.IdentityPool", From 98c98be017b77ccc7c5b5c045f88974777503201 Mon Sep 17 00:00:00 2001 From: Leonardo Gama Date: Wed, 26 Feb 2025 14:41:53 -0800 Subject: [PATCH 7/7] Fix versioning --- data/notices.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/notices.json b/data/notices.json index d077990f..b84a0234 100644 --- a/data/notices.json +++ b/data/notices.json @@ -7,7 +7,7 @@ "components": [ { "name": "@aws-cdk/aws-cognito-identitypool-alpha.IdentityPool", - "version": ">=2.74.0 <=2.179.0" + "version": ">=2.74.0-alpha.0 <2.179.0-alpha.0" } ], "schemaVersion": "1"