This repository has been archived by the owner on Jan 21, 2020. It is now read-only.
Releases: zfcampus/zf-apigility-documentation
Releases · zfcampus/zf-apigility-documentation
zf-apigility-documentation 1.3.0
Added
Changed
- #62 updates the
ZF\Apigility\Documentation\Controller
to accept aBasePath
view helper as a construction aregument; this is then used to prefix any generated links with
the currently detected/configured base path to the application.
Deprecated
- Nothing.
Removed
- #69 removes support for HHVM.
Fixed
zf-apigility-documentation 1.2.3
Added
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #49 fixes representation of nested collections.
- #50 fixes escaping of field decriptions; previously, the template was improperly using
escapeTransformDescription()
instead ofagTransformDescription()
. - #52 fixes output of fields when the
allows_only_fields_in_filter
parameter is present for an input filter.
zf-apigility-documentation 1.2.2
Added
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #53 fixes an import statement in the configuration file.
zf-apigility-documentation 1.2.1
Added
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #48 updates the
ControllerFactory
implementation to be forwards compatible with zend-servicemanager v3.
zf-apigility-documentation 1.2.0
Added
- #43 adds support for v3 releases of Zend Framework components, while retaining support for v2 releases.
- #43 extracts the
ApiFactory
factory inlined in theModule
class to a first-class factory,ZF\Apigility\Documentation\Factory\ApiFactoryFactory
. - #19 adds support for displaying documentation of APIs with nested namespaces (e.g.,
Company\ApiName
vs justApiName
). Such services are now denoted with dot-notation:Company.ApiName
. - #35 adds a new view helper,
agTransformDescription()
, which will transform markdown descriptions to HTML. This is now used by default in the supplied view scripts. This means you can now use markdown in your API descriptions! - #38 updates the
Field
class to allow setting the field type, and updates the operation view script to now display field types for given operations.
Deprecated
- Nothing.
Removed
- #43 removes support for PHP 5.5.
Fixed
- Nothing.
zf-apigility-documentation 1.1.1
Added
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #39 updates the component to properly display information about zend-inputfilter Collections when displaying operation validation information.
- #40 updates the Operations view script to:
- display HTTP method-specific fields first, if present.
- display general fields only if they exist (the fix prevents an empty row displaying).
- insert a closing
</span>
tag within the table data cell containing the required flag.
- #41 updates the
ApiFactory
to ensure that if an entity has no collection associated with it, documentation will not attempt to retrieve the fields.