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

Releases: kreait/ezpublish-migrations-bundle

1.1

25 Mar 19:10
Compare
Choose a tag to compare
1.1

What's new

  • The default migration user is now configurable by setting the ez_user parameter. If not set, it falls back to admin (User ID 14), which is the standard admin user in eZ Publish
  • It is now possible to change the migration user during a migration by using the following methods:
public function up(Schema $schema)
{
    $this->changeMigrationUser('another_ez_username');
    // ...
    $this->restoreDefaultMigrationUser();
}

1.0.3

17 Dec 15:44
Compare
Choose a tag to compare

Changes

  • We now don't add the complete eZ Publish kernel as a dev dependency, but only the API/SPI libraries
  • Use retina ready badges for the README

Bugfixes

  • Fixed the VersionCommand unit test, which wasn't configured with the --no-interaction flag

1.0.2

22 May 21:40
Compare
Choose a tag to compare

What's new

  • PHPUnit Tests with full code coverage
  • As this is a bundle for eZ Publish 5, it now follows the eZ Publish Coding Standards
  • Integrated Travis-CI and Scrutinizer-CI
  • Added .gitattributes file for smaller release packages

Changes

  • The class alias in generated migrations has been changed from AbstractEzPublishMigration to EzPublishMigration - you don't need to change your already existing migrations

1.0.1

08 May 16:18
Compare
Choose a tag to compare

What's new

  • Shortcut for the eZ Publish API Repository, you can now directly access it through $this->repository
  • The default admin user is set as current by default
  • Fixed typos
  • Fixed version numbers in composer.json
  • Moved documentation to Resources/doc/examples
  • Added ezsystems/ezpublish-kernel as a dev requirement

Deprecated

  • The method $this->getContainer() is deprecated, use $this->container instead

1.0.0

08 May 00:58
Compare
Choose a tag to compare

Initial release