[18.0] [MIG] ai_automation -> ai_server_action#81
Conversation
6cfe6d3 to
622b6a2
Compare
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
|
Additionally, regarding the commit order, it might be better to split it. We could first do the migration and adaptation work to version 18 relying on the connection, and then handle the name change in a separate, subsequent commit. This way, the actual changes between versions would be much easier to track and review. |
29ffca5 to
f5876eb
Compare
|
@etobella @pedrobaeza I have updated the PR and split the work into three clean commits: migration, refactoring, and module renaming. If we decide not to rename the module, I can easily revert to the previous commit. Ready for review. |
931c718 to
523e637
Compare
|
@angelmoya Rename is not handled this way. I requires to modify previous commits because, otherwise, on the next migration everything will be lost... |
etobella
left a comment
There was a problem hiding this comment.
Please, remake history and just leave a migration commit.
The code is something like:
git filter-branch -f --index-filter '
git ls-files --stage | \
sed "s:ai_automation/:ai_server_action/:" | \
GIT_INDEX_FILE=$GIT_INDEX_FILE.new \
git update-index --index-info && \
mv "$GIT_INDEX_FILE.new" "$GIT_INDEX_FILE"
' HEADAlso, there is some comments to be attended
89dbc9e to
2012e85
Compare
2012e85 to
71660cb
Compare
71660cb to
69bcfb1
Compare
[MIG] ai_automation -> ai_server_action: migration to 18.0
Depends on #77