-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
CFn: WIP POC v2 executor #12396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
CFn: WIP POC v2 executor #12396
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Base automatically changed from
MEP-CFN-POC-describe_change_set_intrinsic_functions_resolution
to
master
March 18, 2025 10:34
47a5831
to
ad8eaba
Compare
LocalStack Community integration with Pro 2 files ± 0 2 suites ±0 20m 26s ⏱️ - 1h 31m 13s Results for commit ae5add4. ± Comparison against base commit 9383d50. This pull request removes 3852 and adds 4 tests. Note that renamed tests count towards both.
This pull request removes 208 skipped tests and adds 1 skipped test. Note that renamed tests count towards both.
♻️ This comment has been updated with latest results. |
0dbcc06
to
f941b33
Compare
We don't care about the original resources at all
Otherwise the original resources (used to perform deletions) includes resources which were in the original template, but have since been deleted
Co-authored-by: Marco Edoardo Palma <64580864+MEPalma@users.noreply.github.com>
f941b33
to
54d6f69
Compare
This breaks the old provider
MEPalma
approved these changes
Apr 2, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
aws:cloudformation
AWS CloudFormation
semver: minor
Non-breaking changes which can be included in minor releases, but not in patch releases
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Motivation
We are rebuilding the core engine of CFn. This change introduces executing changes to the engine based on the update graph concept.
The engine is based on the recent update graph implementation currently being developed. It aims to be a more accurate representation of the state of the update process, and will support both describing change sets and executing change sets.
Changes
This PR adds an initial implementation of dispatching changes to the resource provider executor. We create a new visitor for the update graph and when visiting a resource we invoke the resource provider executor deployment loop.