...
The deployPackager.properties is configured with the sqlScmLastImportID from main branch.
Branch_A is created from main branch.
Branch_B is created from main branch.
Branch_A packages successfully and the deployPackager.properties is updated by Liquibase Enterprise with a new sqlScmLastImportID located on Branch_A.
Branch_B does not have the new sqlScmLastImportID directly in it’s git commit history, but this commit can be located by git log because it shares a common ancestor.
Unsupported Scenario
Branch_A is created from main branch.
Branch_B is created from main branch and is now ahead of main by 2 commits.
The deployPackager.properties is configured with the sqlScmLastImportID from Branch_B.
Branch_A will not be able to package successfully because the commit specified in the deployPackager.properties cannot be located by git log as it does not share a common ancestor.
\uD83D\uDCCB Related articles
...