-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Fix macro modified from previous state #4820
Conversation
Previously, if the first node selected by state:modified had multiple dependencies, the first of which had not been changed, the rest of the macro dependencies of the node would not be checked for changes. This commit fixes this behavior, so the remainder of the macro dependencies of the node will be checked as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Newly added test would fail without the fix added so we know this fixed the issue.
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-1.0.latest 1.0.latest
# Navigate to the new working tree
cd .worktrees/backport-1.0.latest
# Create a new branch
git switch --create backport-4820-to-1.0.latest
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick --mainline 1 c45147fe6d31a2cd8e4d6f06f313053cb27883f1
# Push it to GitHub
git push --set-upstream origin backport-4820-to-1.0.latest
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-1.0.latest Then, create a pull request where the |
* Fix macro modified from previous state Previously, if the first node selected by state:modified had multiple dependencies, the first of which had not been changed, the rest of the macro dependencies of the node would not be checked for changes. This commit fixes this behavior, so the remainder of the macro dependencies of the node will be checked as well.
* Fix macro modified from previous state Previously, if the first node selected by state:modified had multiple dependencies, the first of which had not been changed, the rest of the macro dependencies of the node would not be checked for changes. This commit fixes this behavior, so the remainder of the macro dependencies of the node will be checked as well.
* Fix macro modified from previous state Previously, if the first node selected by state:modified had multiple macro dependencies, the first of which had not been changed, the rest of the macro dependencies of the node would not be checked for changes. This commit fixes this behavior, so the remainder of the macro dependencies of the node will be checked as well.
resolves #4678
Description
Previously, if the first node selected by state:modified had multiple dependencies, the first of which had not been changed, the rest of the macro dependencies of the node would not be checked for changes. This commit fixes this behavior, so the remainder of the macro dependencies of the node will be checked as well.
Checklist
CHANGELOG.md
and added information about my change