All notable changes to this project will be documented in this file, in reverse chronological order by release.
- #44, #45, #46, #47, #48, and #49 prepare the documentation for publication at https://zendframework.github.io/zend-http/
- Nothing.
- Nothing.
- Nothing.
- Nothing.
- Nothing.
- Nothing.
- #42 updates dependencies to ensure it can work with PHP 5.5+ and 7.0+, as well as zend-stdlib 2.5+/3.0+.
- Nothing.
- Nothing.
- Nothing.
- #23 fixes a BC break
introduced with fixes for ZF2015-04,
pertaining specifically to the
SetCookie
header. The fix backs out a check for message splitting syntax, as that particular class already encodes the value in a manner that prevents the attack. It also adds tests to ensure the security vulnerability remains patched.
- Nothing.
- Nothing.
- Nothing.
- #7 fixes a call in the
proxy adapter to
Response::extractCode()
, which does not exist, toResponse::fromString()->getStatusCode()
, which does. - #8 ensures that the Curl
client adapter enables the
CURLINFO_HEADER_OUT
, which is required to ensure we can fetch the raw request after it is sent. - #14 fixes
Zend\Http\PhpEnvironment\Request
to ensure that emptySCRIPT_FILENAME
andSCRIPT_NAME
values which result in an empty$baseUrl
will not raise anE_WARNING
when used to do astrpos()
check during base URI detection.