Releases: zf-fr/zfr-rest
Releases · zf-fr/zfr-rest
v0.5.0
- Support for
Zend\Stdlib 2.7
and Zend\Hydrator
v0.4.5
- Remove automatic 304 Etag as it causes a lot more problems as it solves
v0.4.4
ResourceResponseListener
only modifies response if it is a ResourceViewModel
v0.4.3
isRootTemplate
now work even if you have called the renderResource
helper inside a view
v0.4.2
- Does not modify status code response if an exception is contained into the MvcEvent
v0.4.1
- Make sure validation does not fail be setting an empty value if no body is present in the request
v0.4.0
- Complete rewrite of ZfrRest, please see the new documentation
v0.3.4
- ZfrRest now supports coalesce filtering for "hasMany" or "findMany" requests type through the new, optional
enable_coalesce_filtering
module option. If enabled, ZfrRest will be able to respond to queries like /customers?ids[]=5&ids[]=64, where ids is a configurable primary key name.
- Fix a bug with entry points. Previously, if you had an entry point configured as "/users", ZfrRest used to match URLs like "/userssssss"
v0.3.3
- Fix an issue with camelCased associations when rendering a resource
v0.3.2
- Added support for OneToOne association (assuming you have a "User" entity with a OneToOne association to a "Card" entity, you can now do a POST request like "/users/4/card")