Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

zend-mvc 2.7.9

Compare
Choose a tag to compare
@weierophinney weierophinney released this 11 Jun 18:47
· 427 commits to master since this release

Added

  • #149 and #158 add a dependency on zendframework/zend-servicemanager-di in order to provide both backwards and forwards compatibility for the DI/ServiceManager integration.

Deprecated

  • #158 deprecates each of the following classes, which now have equivalents in the zend-servicemanager-di package (which is required by zend-mvc v2, but optional starting with zend-mvc v3):
    • Zend\Mvc\Service\DiAbstractServiceFactoryFactory
    • Zend\Mvc\Service\DiFactory
    • Zend\Mvc\Service\DiServiceInitializerFactory
    • Zend\Mvc\Service\DiStrictAbstractServiceFactory
    • Zend\Mvc\Service\DiStrictAbstractServiceFactoryFactory
  • #152 formally marks the ControllerLoaderFactory as deprecated via annotation (though it has been noted as such in the documentation for several years). Use Zend\Mvc\Service\ControllerManagerFactory instead.

Removed

  • Nothing.

Fixed

  • #149 and #158 fix an "undefined variable" issue with Zend\Mvc\Service\DiAbstractServiceFactoryFactory.
  • #153 removes the typehint from the $exception argument of DispatchListener::marshalBadControllerEvent(), fixing an issue when PHP 7 Error types are caught and passed to the method.