Hi,
First, i'm reporting typo on the documentation http://www.liquibase.org/documentation/changes/sql.html
The documantation YAML version does'nt display correctly tabulations and is missing character, i want to say on YAML it is pretty important.
changeSet: id: sql-example author: liquibase-docs changes: - sql: comment: What about Bob?
is in reality :
- changeSet: id: sql-example author: liquibase-docs changes: - sql: comment: What about Bob?
And second will be the extension yaml
When i execute
- "./liquibase --changeLogFile=db.changelog-1.1.yml --logLevel=debug update"
The system display :
- Liquibase update Failed: Cannot find parser that supports db.changelog-1.1.yml
- SEVERE 5/8/14 1:35 PM:liquibase: Cannot find parser that supports db.changelog-1.1.yml
Solution => replace yml by yaml (just in case people are looking for it)
It would be nice to handle both extension within liquibase:) and manage errors message too...
Thanks ;)