Liquibase changelogs auto-generation

hello all,
i’m planning to use liquibase in an enterprise project where the database gets updated frequently with the code,
i want to use liquibase to keep the database updated, currently i can use the diff feature to generate a changelogs file for both structure and data and also using spring integration to import these changelogs to update the database, my question is: is there a way to configure liquibase to automatically record changes made to the database when the system starts up and generate the changelogs so i can grab these changelogs and execute them on the database to update?
thanks