Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. The deployPackager.properties is configured with the sqlScmLastImportID from main branch.

  2. Branch_A is created from main branch.

  3. Branch_B is created from main branch.

  4. Branch_A packages successfully and the deployPackager.properties is updated by Liquibase Enterprise with a new sqlScmLastImportID located on Branch_A.

  5. 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

  1. Branch_A is created from main branch.

  2. Branch_B is created from main branch and is now ahead of main by 2 commits.

  3. The deployPackager.properties is configured with the sqlScmLastImportID from Branch_B.

  4. 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.

...