You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As CDK evolves, new features, improvements, and fixes are introduced, sometimes requiring changes that are not backward-compatible. To manage these changes while minimizing disruptions, one of the method CDK uses is to introduce a new version of construct or a new module. Examples are:
New construct version – Provides a redesigned construct in the same module with improved behavior while coexisting with the previous version. i.e. aws-cdk-lib.aws-dynamodb.Table to aws-cdk-lib.aws-dynamodb.TableV2
New module version – Releases a new module version with significant changes without affecting the existing one. aws-cdk-lib.aws-ec2 to @aws-cdk.aws-ec2-alpha which rewrites VPC related constructs.
For CDK users, migrating to the new construct or module can be more complex and time-consuming, often necessitating resource replacements or removals that could result in production downtime or other complications.
The primary goal of this RFC is to outline a migration approach for new construct and new module version that aims to simplify the migration process for users, automating certain tasks where possible, and offering guidance and tools to support the transition. The migration approach must ensure a reliable and controlled process with zero downtime, avoiding unintended resource replacements, enabling safe rollbacks, and preserving configuration consistency.
API bar raiser assigned (ping us at #aws-cdk-rfcs if needed)
Kick off meeting
RFC pull request submitted (label: status/review)
Community reach out (via Slack and/or Twitter)
API signed-off (label status/api-approved applied to pull request)
Final comments period (label: status/final-comments-period)
Approved and merged (label: status/approved)
Execution plan submitted (label: status/planning)
Plan approved and merged (label: status/implementing)
Implementation complete (label: status/done)
Author is responsible to progress the RFC according to this checklist, and
apply the relevant labels to this issue so that the RFC table in README gets
updated.
The text was updated successfully, but these errors were encountered:
Description
As CDK evolves, new features, improvements, and fixes are introduced, sometimes requiring changes that are not backward-compatible. To manage these changes while minimizing disruptions, one of the method CDK uses is to introduce a new version of construct or a new module. Examples are:
aws-cdk-lib.aws-dynamodb.Table
toaws-cdk-lib.aws-dynamodb.TableV2
aws-cdk-lib.aws-ec2
to@aws-cdk.aws-ec2-alpha
which rewrites VPC related constructs.For CDK users, migrating to the new construct or module can be more complex and time-consuming, often necessitating resource replacements or removals that could result in production downtime or other complications.
The primary goal of this RFC is to outline a migration approach for new construct and new module version that aims to simplify the migration process for users, automating certain tasks where possible, and offering guidance and tools to support the transition. The migration approach must ensure a reliable and controlled process with zero downtime, avoiding unintended resource replacements, enabling safe rollbacks, and preserving configuration consistency.
Roles
Workflow
status/proposed
)status/review
)status/api-approved
applied to pull request)status/final-comments-period
)status/approved
)status/planning
)status/implementing
)status/done
)The text was updated successfully, but these errors were encountered: