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

zf-apigility-doctrine 2.2.0

Compare
Choose a tag to compare
@michalbundyra michalbundyra released this 18 Jan 18:19
· 52 commits to master since this release
2.2.0

Added

  • #291 adds ability to use factory (doctrine instantiator instance) to create new entities. To configure factory for a specific resource use:

    'zf-apigility' => [
        'doctrine-connected' => [
            'Api\\V1\\Rest\\...Resource' => [
                'entity_factory' => 'key_in_service_manager',
                ...
            ],
        ],
    ],
    
  • #304 adds support for PHP 7.2.

Changed

  • Nothing.

Deprecated

  • Nothing.

Removed

  • #304 removes support for HHVM.

Fixed

  • #289 fixes configuration keys, which resolves issue with Apigility Admin and populating forms from config file and writing duplicated values into config file.

  • #290 fixes Doctrine Resource listener attached via config. These are now correctly dispatched.

  • #298 fixes data passed to listener on patch method.

  • #293 fixes binding parameters with type. In case of custom field type php value was not converted to database value.

  • #303 fixes version query parameter as it is restricted by apigility to indicate version of the api.