This repository has been archived by the owner on Jan 21, 2020. It is now read-only.
Releases: zfcampus/zf-versioning
Releases · zfcampus/zf-versioning
zf-versioning 1.3.0
zf-versioning 1.2.1
Added
-
#19 adds the ability to override the
default_version
setting to specify default versions by route name. As such, thedefault_version
value may be one of the following:- An integer value, indicating the default version for all APIs.
- An associative array of route name keys pointing to their specific default version.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #19 fixes a problem with how the
PrototypeRouteListener
handles thedefault_version
setting; the value was overriding route-specific defaults.
zf-versioning 1.2.0
Added
- #14 adds support for v3 releases of Zend Framework components, while retaining compatibility with v2 releases.
- #14 adds
ZF\Versioning\Factory\AcceptListenerFactory
andZF\Versioning\Factory\ContentTypeListenerFactory
, instead of creating the factories inline in theModule
class.
Deprecated
- Nothing.
Removed
- #14 removes support for PHP 5.5.
Fixed
- #15 fixes the
VersionListener
to no longer ignore OPTIONS requests when determining versioning information provided by the client. Previously, such requests were ignored, effectively locking OPTIONS requests to v1 of an API.