Skip to content

Latest commit

 

History

History
25 lines (24 loc) · 1.96 KB

UPGRADE.md

File metadata and controls

25 lines (24 loc) · 1.96 KB

0.8.0

  • Dependency to zendframework has been bumped from 2.* to ~2.1
  • Dependency to doctrine/common has been bumped from >=2.3-dev,<2.5-dev to >=2.3,<2.5-dev
  • It is now possible to define a callable for option label_generator in DoctrineModule\Form\Element\Proxy as of #219
  • DoctrineModule\Authentication\Adapter\ObjectRepository now inherits logic from Zend\Authentication\Adapter\AbstractAdapter as of #156. Methods setIdentityValue, getIdentityValue, setCredentialValue, getCredentialValue are now deprecated.
  • It is now possible to set the cache namespace in the cache configuration as of #164
  • All services named with the doctrine.<something>.<name> pattern are now handled by DoctrineModule\ServiceFactory\AbstractDoctrineServiceFactory, which simplifies the instantiation logic for different occurrences of <name> as of #226 and #76
  • The CLI tools are now also available as a standard ZF2 console as of #226, #200 and #137. From now on, you can simply run php ./public/index.php in a standard zf2 skeleton application and the tools will be available in there. The console in ./vendor/bin/doctrine-module is deprecated.
  • The module does not implement Zend\ModuleManager\Feature\AutoloaderProviderInterface anymore. Please use composer autoloading or setup autoloading yourself.
  • Service doctrine.cache.zendcachestorage was removed from the pre-configured services as of #226.