Based on https://github.com/zendframework/zend-soap/releases/tag/release-2.7.0 (commit b173ca9cd5c6a36cc48df68b08c01869f93e107d in this repo)
Added
-----
- [zendframework/zend-soap#42](https://github.com/zendframework/zend-soap/pull/42) adds support for PHP
versions 7.1 and 7.2.
- [zendframework/zend-soap#31](https://github.com/zendframework/zend-soap/pull/31) adds support for
`xsd:date` elements.
- [zendframework/zend-soap#36](https://github.com/zendframework/zend-soap/pull/36) adds support for
the libxml `LIBXML_PARSEHUGE` flag when creating a `Server` instance. When the
support is enabled, the `Server` instance will pass that flag to
`DOMDocument::loadXML()`. The flag may be set in one of two ways:
- By passing the option `parse_huge` within the configuration `$options`
passed to the constructor and/or `setOptions()` method.
- Via a new mutator method, `Server::setParseHuge()`.
Changed
-------
- [zendframework/zend-soap#38](https://github.com/zendframework/zend-soap/pull/38) adds `ext-soap` as
an explicit package dependency. While it was previously implied; installation
will now fail if that dependency is missing.
Deprecated
----------
- Nothing.
Removed
-------
- [zendframework/zend-soap#42](https://github.com/zendframework/zend-soap/pull/42) removes support for
PHP 5.5.
- [zendframework/zend-soap#42](https://github.com/zendframework/zend-soap/pull/42) removes support for
HHVM.
- [zendframework/zend-soap#49](https://github.com/zendframework/zend-soap/pull/49) removes all
arguments besides `$errno` and `$errstr` from the `Server::handlePhpError()`
method, as they were unused.
Fixed
-----
- Nothing.