Skip to content

3.0.0 RC1

Pre-release
Pre-release
Compare
Choose a tag to compare
@JanTvrdik JanTvrdik released this 07 Apr 12:44
· 202 commits to master since this release

New features

  • Written documentation
  • Added built-in Symfony Commands.
  • Added support for Nextras DBAL, Doctrine DBAL and dibi.
  • Added support for deep directory structure, i.e. the following paths are now considered equal
    • /migrations/structures**/**2015-03-16-170342-languages.sql
    • /migrations/structures**/2015/**03-16-170342-languages.sql
    • /migrations/structures**/2015/03/**16-170342-languages.sql
    • /migrations/structures**/2015/**2015-03-16-170342-languages.sql
    • /migrations/structures**/2015/03/**2015-03-16-170342-languages.sql

Changes

  • Minimum PHP version changed to 5.4
  • New migration in the middle of existing migrations will now result in error.
  • Deprecated the following classes:
    • Nextras\Migrations\Extensions\DbPhp,
      use Nextras\Migrations\Extensions\PhpHandler
    • Nextras\Migrations\Extensions\SimplePhp,
      use Nextras\Migrations\Extensions\PhpHandler
    • Nextras\Migrations\Extensions\NetteDbSql,
      use Nextras\Migrations\Extensions\SqlHandler
    • Nextras\Migrations\Drivers\MySqlNetteDbDriver,
      use Nextras\Migrations\Drivers\MySqlDriver with corresponding DBAL
    • Nextras\Migrations\Drivers\PgSqlNetteDbDriver,
      use Nextras\Migrations\Drivers\PgSqlDriver with corresponding DBAL