Skip to content
This repository has been archived by the owner on May 11, 2018. It is now read-only.

2.0

Compare
Choose a tag to compare
@jeromegamez jeromegamez released this 02 Aug 23:21
· 32 commits to master since this release

How to update

The previously required explicit "doctrine/migrations": "1.0.0-alpha3" dependency is gone.

So, to update the eZ Publish Migrations Bundle in your project, just remove the following line from your composer.json

"doctrine/migrations": "1.0.0-alpha3"

and then execute

composer update kreait/ezpublish-migrations-bundle

Required changes to your code

Version 1.x of this bundle recommended to add a dummy SQL statement to avoid Migration was executed but did not result in any SQL statements. messages.

Version 2.0.2 mutes those messages, so you don't need those dummy messages anymore.

Unfortunately you even must remove the dummy messages, because they will cause the migrations to fail with an Cannot execute queries while other unbuffered queries are active. error.

Changes

  • Updated doctrine/migrations to Version 1.0 (stable)
  • Bumped minimum version requirement for the Symfony Components to 2.4
    • The previous minimum requirement of 2.3 was an error in the first place, because some used components
      were not available until 2.4
  • Test library with --prefer-stable --prefer-lowest
  • Ensure PHP 7.0 and HHVM support in Travis CI tests
  • Removed Mockery as a dependency