- Seeders can now call other seeders. More details in the Cookbook : http://book.cakephp.org/3.0/en/migrations.html#calling-a-seeder-from-another-seeder (Issue #212 - PR #236)
- When a migrations command errors, the exit code is now at least 1 (Issue #215 - PR #224)
- When the table name is fetched from the
Table
classes (when using therequire-table
option when baking snapshot for instance), before being instanciated, theTable
class is reflected to see if it instanciable. This prevents potential user-land abstract classes to be loaded and throwing exception (Issue #229 - PR #231) - Fix the diff baking template (Issue #233 - PR #234)
- Fix an issue where a property was missing for the
dump
command to properly work in some cases. (Issue #239 - PR #241).